]> git.saurik.com Git - bison.git/blob - ChangeLog
Use b4_subtract where possible.
[bison.git] / ChangeLog
1 2008-11-18 Akim Demaille <demaille@gostai.com>
2
3 Use b4_subtract where possible.
4 * data/lalr1.cc (b4_subtract): Move to...
5 * data/bison.m4: here.
6 * data/glr.c (b4_rhs_data): Use it.
7 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
8
9 2008-11-18 Akim Demaille <demaille@gostai.com>
10
11 Remove incorrect mode specification.
12 * data/glr.cc: Don't pretend it's C code.
13
14 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
15
16 Simplify last patch slightly.
17 * src/getargs.c (getargs): Here.
18
19 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
20
21 Fix last warning from --enable-gcc-warnings.
22 * src/getargs.c (getargs): Don't assign const address to non-const
23 pointer.
24
25 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
26
27 Don't let maintainer-*-check targets force a version update.
28 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
29 handled.
30
31 2008-11-17 Di-an Jan <dianj@freeshell.org>
32
33 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
34 Align menus. Adjust word wrapping. Use node names for menu names.
35 (Examples): Don't abbreviate node names.
36 (LocalWords): Remove abbreviations.
37 (Copying): Make description a sentence.
38 (Java Action Features): Remove period to match the rest of menu.
39
40 2008-11-17 Di-an Jan <dianj@freeshell.org>
41
42 Handles several --enable-gcc-warnings.
43 * src/getargs.c (command_line_location): Set parameters to void.
44 * src/output.c (symbol_type_name_cmp): Make static.
45 (symbols_by_type_name): Set parameters to void.
46 (symbol_definitions_output): Remove unused parameter. Rename as...
47 (prepare_symbol_definitions): this.
48 (muscles_output): Move symbol_definitions_output to...
49 (output): here as prepare_symbol_definitions.
50 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
51 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
52
53 2008-11-17 Di-an Jan <dianj@freeshell.org>
54
55 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
56 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
57
58 2008-11-16 Akim Demaille <demaille@gostai.com>
59
60 Add missing $(EXEEXT).
61 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
62 "src/bison$(EXEEXT)".
63 Reported by Di-an Jan.
64
65 2008-11-15 Akim Demaille <demaille@gostai.com>
66
67 * TODO: Update.
68
69 2008-11-15 Akim Demaille <demaille@gostai.com>
70
71 Formatting changes.
72 * tests/input.at: here.
73
74 2008-11-15 Akim Demaille <demaille@gostai.com>
75
76 Remove duplicate header inclusion.
77 * src/LR0.c: here.
78
79 2008-11-15 Akim Demaille <demaille@gostai.com>
80
81 * src/parse-gram.h, src/parse-gram.c: Regen.
82
83 2008-11-15 Akim Demaille <demaille@gostai.com>
84
85 Support parametric types.
86
87 There are two issues to handle: first scanning nested angle
88 bracket pairs to support types such as std::pair< std::string,
89 std::list<std::string> > >.
90
91 Another issue is to address idiosyncracies of C++: do not glue two
92 closing angle brackets together (otherwise it's operator>>), and
93 avoid sticking blindly a TYPE to the opening <, as it can result
94 in '<:' which is a digraph for '['.
95
96 * src/scan-gram.l (brace_level): Rename as...
97 (nesting): this.
98 (SC_TAG): New.
99 Implement support for complex tags.
100 (tag): Accept
101 , but not <.
102 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
103 (b4_symbol_variant): Leave space around types as parameters.
104 * examples/variant.yy: Use nested template types and leading ::.
105 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
106 Rename as...
107 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
108 * tests/c++.at: Test parametric types.
109
110 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
111
112 Test token.prefix.
113 This is not sufficient, but we test at least that the make_SYMBOL
114 interface is not affected by token.prefix. A more general test
115 will be implemented when the support of token.prefix is generalized
116 to more skeletons.
117
118 * tests/c++.at: One more variant test, using token.prefix.
119
120 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
121
122 Test the make_TOKEN interface.
123 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
124 Factor the common code in yylex.
125 Use it to test "%define lex_symbol".
126
127 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
128
129 Formatting change.
130
131 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
132
133 Simplify code for variants bench marks.
134 * etc/bench.pl.in (&generate_grammar_list): Define and use
135 location_type.
136 Factor the common code in yylex.
137
138 2008-11-15 Akim Demaille <demaille@gostai.com>
139
140 Better error message.
141 * bootstrap (find_tool): Fix the error message.
142
143 2008-11-15 Akim Demaille <demaille@gostai.com>
144
145 Update variant.yy to newest interface.
146 * examples/variant.yy: Define lex_symbol.
147 Adjust.
148
149 2008-11-15 Akim Demaille <demaille@gostai.com>
150
151 Don't use locations in variant.yy.
152 * examples/variant.yy: Adjust to not using locations.
153
154 2008-11-15 Akim Demaille <demaille@gostai.com>
155
156 Comment changes.
157 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
158 comments for the license.
159
160 2008-11-15 Akim Demaille <demaille@gostai.com>
161
162 Remove tests/Makefile.am.
163 * tests/Makefile.am: Rename as...
164 * tests/local.mk: this.
165 * Makefile.am, configure.ac: Adjust.
166 * Makefile.am (DISTCLEANFILES): Define.
167 (maintainer-check, maintainer-xml-check, maintainer-push-check):
168 Remove, we no longer need to bounce to the real targets.
169
170 2008-11-15 Akim Demaille <demaille@gostai.com>
171
172 Comment changes.
173
174 2008-11-15 Akim Demaille <demaille@gostai.com>
175
176 djgpp/local.mk.
177 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
178 * djgpp/local.mk: this new file.
179
180 2008-11-15 Akim Demaille <demaille@gostai.com>
181
182 Remove doc/Makefile.am.
183 * doc/Makefile.am: Rename as...
184 * doc/local.mk: this.
185 Adjust paths
186 * Makefile.am, configure.ac: Adjust.
187 * Makefile.am (MOSTLYCLEANFILES): New.
188 * src/local.mk: Adjust.
189
190 2008-11-15 Akim Demaille <demaille@gostai.com>
191
192 Move sc_tight_scope into maint.mk.
193 It does not work, and I don't know how it was supposed to work: it
194 seems to be looking for sources in the build tree. I just moved
195 it at a better place, fixing it is still required.
196
197 * src/local.mk (echo): Remove.
198 (sc_tight_scope): Move to...
199 * maint.mk: here.
200
201 2008-11-15 Akim Demaille <demaille@gostai.com>
202
203 Regen.
204 * src/parse-gram.h, src/parse-gram.h: Regen.
205
206 2008-11-15 Akim Demaille <demaille@gostai.com>
207
208 Remove src/Makefile.am.
209 * src/Makefile.am: Rename as...
210 * src/local.mk: this.
211 Prefix all the paths with src/.
212 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
213 (AM_CPPFLAGS): Find find in builddir/src.
214 (YACC): Move the flags into...
215 (AM_YFLAGS): here.
216 * maint.mk (sc_tight_scope): Disable.
217 It used to bounce to the version in src/Makefile.am which is now
218 part of this very Makefile.
219 * Makefile.am, configure.ac: Adjust.
220 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
221 include "..." to find files "here": we are no longer in src/, so
222 qualify the includes with src/.
223 * doc/Makefile.am (PREPATH): No longer include the top_builddir
224 prefix.
225 (.x.1): Adjust to be able to create src/foo from the top level
226 Makefile, instead of going bounce to src/Makefile the creation of
227 foo.
228
229 2008-11-15 Akim Demaille <demaille@gostai.com>
230
231 Remove useless variable.
232 * doc/Makefile.am (srcsrcdir): Remove.
233
234 2008-11-15 Akim Demaille <demaille@gostai.com>
235
236 Remove data/Makefile.am.
237 * data/Makefile.am: Rename as...
238 * data/local.mk: this.
239 Adjust paths.
240 * Makefile.am, configure.ac: Adjust.
241
242 2008-11-15 Akim Demaille <demaille@gostai.com>
243
244 Remove etc/Makefile.am.
245 * etc/Makefile.am: Rename as...
246 * etc/local.mk: this.
247 Adjust.
248 * Makefile.am, configure.ac: Adjust.
249
250 2008-11-15 Akim Demaille <demaille@gostai.com>
251
252 Remove examples/local.mk.
253 examples/calc++/Makefile.am might be interesting to keep as is, since
254 it is an example in itself.
255
256 * examples/Makefile.am: Rename as...
257 * examples/local.mk: this.
258 Adjust.
259 * Makefile.am, configure.ac: Adjust.
260
261 2008-11-15 Akim Demaille <demaille@gostai.com>
262
263 Remove build-aux/Makefile.am.
264 Recursive Makefiles are really way too slow, let's get rid of some of
265 them.
266
267 * build-aux/Makefile.am: Rename as...
268 * build-aux/local.mk: this.
269 Adjust paths.
270 * Makefile.am, configure.ac: Adjust.
271
272 2008-11-15 Akim Demaille <demaille@gostai.com>
273
274 Provide convenience constructors for locations and positions.
275 * data/location.cc (position::position): Accept file, line and
276 column as arguments with default values.
277 Always qualify initial line and column literals as unsigned.
278 (location::location): Provide convenience constructors.
279
280 2008-11-15 Akim Demaille <demaille@gostai.com>
281
282 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
283 token type.
284 Using template buys us nothing, and makes it uselessly complex to
285 construct a symbol. Besides, it could not be generalized to other
286 languages, while make_FOO would work in C/Java etc.
287
288 * data/lalr1.cc (b4_symbol_): New.
289 (b4_symbol): Use it.
290 (b4_symbol_constructor_declaration_)
291 (b4_symbol_constructor_definition_): Instead of generating
292 specializations of an overloaded template function, just generate
293 several functions whose names are forged from the token names
294 without the token.prefix.
295 (b4_symbol_constructor_declarations): Generate them for all the
296 symbols, not just by class of symbol type, now that instead of
297 specializing a function template by the token, we generate a
298 function named after the token.
299 (b4_symbol_constructor_specialization_)
300 (b4_symbol_constructor_specializations): Remove.
301 * etc/bench.pl.in: Adjust to this new API.
302
303 2008-11-13 Akim Demaille <demaille@gostai.com>
304
305 %define token.prefix.
306 Provide a means to add a prefix to the name of the tokens as
307 output in the generated files. Because of name clashes, it is
308 good to have such a prefix such as TOK_ that protects from names
309 such as EOF, FILE etc. But it clutters the grammar itself.
310
311 * data/bison.m4 (token.prefix): Empty by default.
312 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
313 * data/lalr1.cc (b4_symbol): Ditto.
314
315 2008-11-13 Akim Demaille <demaille@gostai.com>
316
317 Compute at M4 time some of the subtractions.
318 * data/lalr1.cc (b4_subtract): New.
319 (b4_rhs_data): Use it.
320
321 2008-11-13 Akim Demaille <demaille@gostai.com>
322
323 symbol::token.
324 This allows the user to get the type of a token returned by yylex.
325
326 * data/lalr1.cc (symbol::token): New.
327 (yytoknum_): Define when %define lex_symbol, independently of
328 %debug.
329 (yytoken_number_): Move into...
330 (symbol::token): here, since that's the only use.
331 The other one is YYPRINT which was not officially supported
332 by lalr1.cc, and anyway it did not work since YYPRINT uses this
333 array under a different name (yytoknum).
334
335 2008-11-13 Akim Demaille <demaille@gostai.com>
336
337 YYERRCODE.
338 * TODO (YYERRCODE): Mention the case of $undef.
339
340 2008-11-13 Akim Demaille <demaille@gostai.com>
341
342 TODO: YYPRINT.
343 * TODO (YYPRINT): New.
344
345 2008-11-13 Akim Demaille <demaille@gostai.com>
346
347 Comment changes.
348 * data/lalr1.cc, data/yacc.c: Fix the description of the
349 yytranslate and yytoknum tables.
350
351 2008-11-13 Akim Demaille <demaille@gostai.com>
352
353 Define make_symbol in the header.
354 To reach good performances these functions should be inlined (yet
355 this is to measure precisely). To this end they must be available
356 to the caller.
357
358 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
359 location_type with the class name.
360 Since will now be output in the header, declare "inline".
361 No longer use b4_symbol_constructor_specializations, but
362 b4_symbol_constructor_definitions in the header.
363 Don't call it in the *.cc file.
364
365 2008-11-13 Akim Demaille <demaille@gostai.com>
366
367 Define yytranslate in the header for lex_symbol.
368 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
369 into the header file when using %define lex_symbol.
370 (yytranslate_): Declare inline.
371
372 2008-11-13 Akim Demaille <demaille@gostai.com>
373
374 Define the constructors of symbol_type in
375 b4_symbol_constructor_definitions.
376 The constructors are called by the make_symbol functions, which a
377 forthcoming patch will move elsewhere. Hence the interest of
378 putting them together.
379
380 The stack_symbol_type does not need to be moved, it is used only
381 by the parser.
382
383 * data/lalr1.cc: Move symbol_type and symbol_base_type
384 constructors into...
385 (b4_symbol_constructor_definitions): here.
386 Adjust.
387
388 2008-11-13 Akim Demaille <demaille@gostai.com>
389
390 Make it easier to move the definition of yytranslate_.
391 Forthcoming changes will make it possible to use yytranslate_
392 from outside the parser implementation file.
393
394 * data/lalr1.cc (b4_yytranslate_definition): New.
395 Use it.
396
397 2008-11-13 Akim Demaille <demaille@gostai.com>
398
399 Remove useless class specification.
400 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
401 to refer to the class name to use a type defined by the class for
402 arguments of member functions.
403
404 2008-11-13 Akim Demaille <demaille@gostai.com>
405
406 Finer input type for yytranslate.
407 This patch is debatable: the tradition expects yylex to return an int
408 which happens to correspond to token_number (which is an enum). This
409 allows for instance to return characters (such as '*' etc.). But this
410 goes against the stronger typing I am trying to have with the new
411 lex interface which return a symbol_type. So in this case, feed
412 yytranslate_ with a token_type.
413
414 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
415 expect a token_type.
416
417 2008-11-13 Akim Demaille <demaille@gostai.com>
418
419 Honor lex-params in %define lex_symbol mode.
420 * data/lalr1.cc: Use b4_lex_param.
421
422 2008-11-13 Akim Demaille <demaille@gostai.com>
423
424 Simplify names.
425 * src/output.c (symbol_definitions_output): Rename symbol
426 attributes type_name and has_type_name as type and has_type.
427 * data/lalr1.cc: Adjust uses.
428
429 2008-11-13 Akim Demaille <demaille@gostai.com>
430
431 Use b4_type_names for the union type.
432 The union used to compute the size of the variant used to iterate
433 over the type of all the symbols, with a lot of redundancy. Now
434 iterate over the lists of symbols having the same type-name.
435
436 * data/lalr1.cc (b4_char_sizeof_): New.
437 (b4_char_sizeof): Use it.
438 Adjust to be called with a list of numbers instead of a single
439 number.
440 Adjust its caller for new-line issues.
441
442 2008-11-13 Akim Demaille <demaille@gostai.com>
443
444 Define the "identifier" of a symbol.
445 Symbols may have several string representations, for instance if
446 they have an alias. What I call its "id" is a string that can be
447 used as an identifier. May not exist.
448
449 Currently the symbols which have the "tag_is_id" flag set are
450 those that don't have an alias. Look harder for the id.
451
452 * src/output.c (is_identifier): Move to...
453 * src/symtab.c (is_identifier): here.
454 * src/symtab.h, src/symtab.c (symbol_id_get): New.
455 * src/output.c (symbol_definitions_output): Use it to define "id"
456 and "has_id".
457 Remove the definition of "tag_is_id".
458 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
459 "tag_is_id" were used to produce code.
460 We still use "tag" for documentation.
461
462 2008-11-11 Akim Demaille <demaille@gostai.com>
463
464 Locations are no longer required by lalr1.cc.
465 * data/lalr1.cc (_b4_args, b4_args): New.
466 Adjust all uses of locations to make them optional.
467 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
468 (AT_CHECK_NAMESPACE): Check the use of locations.
469 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
470 without locations with lalr1.cc.
471 Test these cases.
472 * tests/output.at: Check lalr1.cc with and without location
473 support.
474 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
475 Don't use locations.
476
477 2008-11-11 Akim Demaille <demaille@gostai.com>
478
479 AT_FULL_COMPILE.
480 * tests/local.at (AT_FULL_COMPILE): New.
481 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
482
483 2008-11-11 Akim Demaille <demaille@gostai.com>
484
485 Support parens in calc++.
486 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
487 * examples/calc++/test (run): Check the expected output.
488 Adjust callers.
489 Check parens too.
490
491 2008-11-11 Akim Demaille <demaille@gostai.com>
492
493 Simplify lalr1.cc since %defines is mandatory.
494 * data/lalr1.cc: Remove useless calls to b4_defines_if.
495
496 2008-11-11 Akim Demaille <demaille@gostai.com>
497
498 TODO: yyfmt.
499 * TODO (yysyntax_error): New item.
500
501 2008-11-11 Akim Demaille <demaille@gostai.com>
502
503 Prefer M4 to CPP.
504 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
505 YYERROR_VERBOSE.
506
507 2008-11-11 Akim Demaille <demaille@gostai.com>
508
509 Support i18n of the parse error messages.
510 * TODO (lalr1.cc/I18n): Remove.
511 * data/lalr1.cc (yysyntax_error_): Support the translation of the
512 error messages, as done in yacc.c.
513 Stay within the yy* pseudo namespace.
514
515 2008-11-11 Akim Demaille <demaille@gostai.com>
516
517 More TODO.
518 * TODO (single stack, yysyntax_error): New.
519
520 2008-11-11 Akim Demaille <demaille@gostai.com>
521
522 Make it possible to return a symbol_type from yylex.
523 * data/lalr1.cc (b4_lex_symbol_if): New.
524 (parse): When lex_symbol is defined, expected yylex to return the
525 complete lookahead.
526 * etc/bench.pl.in (generate_grammar_list): Extend to support this
527 yylex interface.
528 (bench_variant_parser): Exercise it.
529
530 2008-11-11 Akim Demaille <demaille@gostai.com>
531
532 Remove useless bench case.
533 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
534 no longer used.
535
536 2008-11-11 Akim Demaille <demaille@gostai.com>
537
538 Improve display of directives.
539 * etc/bench.pl.in (parse_term): Don't add useless eol.
540
541 2008-11-11 Akim Demaille <demaille@gostai.com>
542
543 Use string_cast in the bench.
544 * etc/bench.pl.in (generate_grammar_list): Define and use
545 string_cast.
546
547 2008-11-11 Akim Demaille <demaille@gostai.com>
548
549 Replace yychar with a Boolean.
550 * data/lalr1.cc (parse::yychar): Replace by...
551 (parse::yyempty): this.
552
553 2008-11-11 Akim Demaille <demaille@gostai.com>
554
555 Factor the tables.
556 * TODO: New item.
557
558 2008-11-11 Akim Demaille <demaille@gostai.com>
559
560 Let yytranslate handle the eof case.
561 * data/lalr1.cc (yytranslate_): Handle the EOF case.
562 Adjust callers.
563 No longer expect yychar to be equal to yyeof_, rather, test the
564 lookahead's (translated) kind.
565
566 2008-11-11 Akim Demaille <demaille@gostai.com>
567
568 yychar cannot be empty in yyerrlab.
569 * TODO (yychar == yyempty_): New.
570 * data/lalr1.cc: Remove the handling of this case.
571 This eases forthcoming changes related to yychar and yytranslate.
572
573 2008-11-11 Akim Demaille <demaille@gostai.com>
574
575 Bench: syntactic sugar for %define/#define.
576 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
577 (&bench_push_parser, bench_variant_parser): Use this feature.
578 (&eat): New.
579 Use it.
580
581 2008-11-11 Akim Demaille <demaille@gostai.com>
582
583 Less memory pressure on the "list" bench.
584 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
585 the values, to limit memory pressure.
586
587 2008-11-11 Akim Demaille <demaille@gostai.com>
588
589 Introduce make_symbol.
590 make_symbol provides a means to construct a full symbol (kind,
591 value, location) in a single shot. It is meant to be a Symbol
592 constructor, parameterized by the symbol kind so that overloading
593 would prevent incorrect kind/value pairs. Unfortunately
594 parameterized constructors do not work well in C++ (unless the
595 parameter also appears as an argument, which is not acceptable),
596 hence the use of a function instead of a constructor.
597
598 * data/lalr1.cc (b4_symbol_constructor_declaration_)
599 (b4_symbol_constructor_declarations)
600 (b4_symbol_constructor_specialization_)
601 (b4_symbol_constructor_specializations)
602 (b4_symbol_constructor_definition_)
603 (b4_symbol_constructor_definitions): New.
604 Use them where appropriate to generate declaration, declaration of
605 the specializations, and implementations of the templated
606 overloaded function "make_symbol".
607 (variant::variant): Always define a default ctor.
608 Also provide a copy ctor.
609 (symbol_base_type, symbol_type): New ctor overloads for value-less
610 symbols.
611 (symbol_type): Now public, so that functions such as yylex can use
612 it.
613
614 2008-11-11 Akim Demaille <demaille@gostai.com>
615
616 Inform m4 whether a tag is a valid id.
617 * src/output.c (is_identifier): New.
618 (symbol_definitions_output): Use it to define tag_is_id.
619 But maybe this should be done at m4 level?
620
621 2008-11-11 Akim Demaille <demaille@gostai.com>
622
623 Test 214 was failing: it greps with a pattern containing [ ]*
624 which obviously meant to catch spaces and tabs, but contained only
625 spaces. Tabulations in sources are a nuisance, so to simplify the
626 matter, get rid of all the tabulations in the Java sources. The
627 other skeletons will be treated equally later.
628
629 * data/java.m4, data/lalr1.java: Untabify.
630 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
631 tabulations are no longer generated.
632
633 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
634
635 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
636 * configure.ac: Adjust usage.
637 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
638 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
639 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
640
641 2008-11-10 Di-an Jan <dianj@freeshell.org>
642
643 Workaround Java's ``code too large'' problem for parser tables
644 in most cases, by using one function per initialization.
645 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
646 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
647 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
648 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
649 (yytname_): Use b4_typed_parser_table.
650 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
651 ``code too large'' error.
652
653 2008-11-10 Di-an Jan <dianj@freeshell.org>
654
655 * NEWS: Document them.
656
657 General Java skeleton improvements.
658 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
659 using gcj < 4.3 in the testsuite, according to comments in
660 gnulib/m4/javacomp.m4.
661 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
662 location_type, position_type): Remove extraneous brackets from
663 b4_percent_define_default.
664 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
665 m4_define and m4_define_default.
666 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
667 which marks the end of user code with appropriate syncline, like all
668 the other skeletons.
669 (b4_user_post_prologue): Add. Don't silently drop.
670 (yylex): Remove.
671 (parse): Inline yylex.
672 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
673 (%{...%}): Fix typo of %code imports.
674 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
675
676 Support annotations on parser class with %define annotations.
677 * data/lalr1.java (annotations): Add to parser class modifier.
678 * doc/bison.texinfo (Java Parser Interface): Document
679 %define annotations.
680 (Java Declarations Summary): Document %define annotations.
681 * tests/java.at (Java parser class modifiers): Test annotations.
682
683 Do not generate code for %error-verbose unless requested.
684 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
685 Make private. Make conditional on %error-verbose.
686 (getErrorVerbose, setErrorVerbose): New.
687 (yytnamerr_): Make conditional on %error-verbose.
688 (yysyntax_error): Make some code conditional on %error-verbose.
689 * doc/bison.texinfo (Java Bison Interface): Remove the parts
690 about %error-verbose having no effect.
691 (getErrorVerbose, setErrorVerbose): Document.
692
693 Move constants for token names to Lexer interface.
694 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
695 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
696 (parse): Qualify EOF to Lexer.EOF.
697 * doc/bison.texinfo (Java Parser Interface): Move documentation of
698 EOF and token names to Java Lexer Interface.
699 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
700
701 Make yyerror public.
702 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
703 (yyerror): Change to public. Add Javadoc comments. Use longer
704 parameter names. Make the body rather than the declarator
705 conditional on %locations.
706 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
707
708 Allow user to add code to the constructor with %code init.
709 * data/java.m4 (b4_init_throws): New, for %define init_throws.
710 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
711 Add %code init to the front of the constructor body.
712 * doc/bison.texinfo (YYParser.YYParser): Document %code init
713 and %define init_throws.
714 (Java Declarations Summary): Document %code init and
715 %define init_throws.
716 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
717 (Java constructor init and init_throws): Add tests.
718
719 2008-11-10 Akim Demaille <demaille@gostai.com>
720
721 Update TODO.
722 * TODO (-D): is implemented.
723 (associativity): Same precedence must have the same associativity.
724 For instance, how can a * b / c be parsed if * is %left and / is
725 %right?
726 (YYERRORCODE, YYFAIL, YYBACKUP): New.
727
728 2008-11-10 Akim Demaille <demaille@gostai.com>
729
730 Formatting changes.
731
732 2008-11-10 Akim Demaille <demaille@gostai.com>
733
734 More information about the symbols.
735 * src/output.c (type_names_output): Document all the symbols,
736 including those that don't have a type-name.
737 (symbol_definitions_output): Define "is_token" and
738 "has_type_name".
739 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
740 type-name, now that they are defined too in b4_type_names.
741
742 2008-11-10 Akim Demaille <demaille@gostai.com>
743
744 Regen.
745
746 2008-11-10 Akim Demaille <demaille@gostai.com>
747
748 Make parser::yytranslate static.
749 Small speedup (1%) on the list grammar. And makes yytranslate_
750 available in non member functions.
751
752 * data/lalr1.cc (yytranslate_): Does not need to be a instance
753 function.
754
755 2008-11-10 Akim Demaille <demaille@gostai.com>
756
757 Avoid trailing spaces.
758 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
759 * data/lalr1.cc: Don't indent before rule and symbol actions, as
760 they can be empty, and anyway this incorrectly indents the first
761 action.
762
763 2008-11-10 Akim Demaille <demaille@gostai.com>
764
765 Comment changes.
766
767 2008-11-10 Akim Demaille <demaille@gostai.com>
768
769 Use "enum" for integral constants.
770 This is just nicer to read, I observed no speedup.
771
772 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
773 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
774 (yyuser_token_number_max_, yyundef_token_): Move into...
775 (yytranslate_): here.
776
777 2008-11-10 Akim Demaille <demaille@gostai.com>
778
779 Shortcuts in bench directives.
780 * etc/bench.pl.in (parse_dirs): New.
781 Use it.
782 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
783 Create the benches in "benches/".
784
785 2008-11-10 Akim Demaille <demaille@gostai.com>
786
787 Formatting changes.
788 * data/lalr1.cc: here.
789
790 2008-11-10 Akim Demaille <demaille@gostai.com>
791
792 Adjust verbose message to using emacs.
793 * etc/bench.pl.in: Inform compilation-mode when we change the
794 directory.
795 (generate_grammar_list): Recognize %define "variant" in addition
796 to %define variant.
797
798 2008-11-10 Akim Demaille <demaille@gostai.com>
799
800 Classify symbols by type-name.
801 * src/uniqstr.h (UNIQSTR_CMP): New.
802 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
803 (type_names_output): New.
804 (muscles_output): Use it.
805 * data/lalr1.cc (b4_symbol_action_): Remove.
806 (b4_symbol_case_, b4_type_action_): New.
807 Adjust uses of b4_symbol_action_ to use b4_type_action_.
808
809 2008-11-10 Akim Demaille <demaille@gostai.com>
810
811 Change the handling of the symbols in the skeletons.
812 Before we were using tables which lines were the symbols and which
813 columns were things like number, tag, type-name etc. It is was
814 difficult to extend: each time a column was added, all the numbers had
815 to be updated (you asked for colon $2, not for "tag"). Also, it was
816 hard to filter these tables when only a subset of the symbols (say the
817 tokens, or the nterms, or the tokens that have and external number
818 *and* a type-name) was of interest.
819
820 Now instead of monolithic tables, we define one macro per cell. For
821 instance "b4_symbol(0, tag)" is a macro name which contents is
822 self-decriptive. The macro "b4_symbol" provides easier access to
823 these cells.
824
825 * src/output.c (type_names_output): Remove.
826 (symbol_numbers_output, symbol_definitions_output): New.
827 (muscles_output): Call them.
828 (prepare_symbols): Define b4_symbols_number.
829
830 2008-11-10 Akim Demaille <demaille@gostai.com>
831
832 --trace=muscles
833 * src/getargs.h, src/getargs.c (trace_muscle): New.
834 (trace_types, trace_args): Support it.
835 * src/output.c (output_skeleton): Use it.
836
837 2008-11-10 Akim Demaille <demaille@gostai.com>
838
839 muscles_output.
840 * src/output.c (muscles_output): New, extracted from...
841 (output_skeleton): here.
842 Adjust.
843
844 2008-11-10 Akim Demaille <demaille@gostai.com>
845
846 Formatting changes.
847
848 2008-11-10 Akim Demaille <demaille@gostai.com>
849
850 Update the variant example.
851 * examples/variant.yy: Formatting changes.
852 One stage build.
853
854 2008-11-10 Akim Demaille <demaille@gostai.com>
855
856 Support constructor with an argument.
857 This improves the "list" bench by 2%.
858
859 * data/lalr1.cc (variant::build): Add an overloaded version with
860 an argument.
861 * tests/c++.at (AT_CHECK_VARIANT): Check it.
862
863 2008-11-10 Akim Demaille <demaille@gostai.com>
864
865 Test variants.
866 * tests/c++.at (AT_CHECK_VARIANTS): New.
867 Use it with and without %define assert.
868
869 2008-11-10 Akim Demaille <demaille@gostai.com>
870
871 Add %precedence support.
872 Unfortunately it is not possible to reuse the %prec directive. This
873 is because to please POSIX, we do not require to end the rules with a
874 semicolon. As a result,
875
876 foo: bar %prec baz
877
878 is ambiguous: either a rule which precedence is that of baz, or a rule,
879 and then a declaration of the precedence of the token baz.
880
881 * doc/bison.texinfo: Document %precedence.
882 (Precedence Only): New.
883 * src/assoc.h, src/assoc.c (precedence_assoc): New.
884 * src/conflicts.c (resolve_sr_conflict): Support it.
885 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
886 Parse it.
887 * tests/calc.at: Use %precedence for NEG.
888 * tests/conflicts.at (%precedence does not suffice)
889 (%precedence suffices): New tests.
890
891 2008-11-09 Akim Demaille <demaille@gostai.com>
892
893 Make benches in a sub dirs.
894 * etc/bench.pl.in ($dir): New.
895 Use it.
896 Check the use of constructors with an argument.
897 (bench_variant_parser): Fix.
898
899 2008-11-09 Akim Demaille <demaille@gostai.com>
900
901 fix eof condition
902
903 2008-11-09 Akim Demaille <demaille@gostai.com>
904
905 Fix --help.
906
907 2008-11-09 Akim Demaille <demaille@gostai.com>
908
909 Require the generation of parse-gram.output.
910 * src/Makefile.am (YACC): Pass --report=all.
911
912 2008-11-09 Akim Demaille <demaille@gostai.com>
913
914 Formatting changes.
915
916 2008-11-09 Akim Demaille <demaille@gostai.com>
917
918 Update TODO.
919 * TODO: Remove obsolete items.
920 Update others.
921
922 2008-11-09 Akim Demaille <demaille@gostai.com>
923
924 Enhance bench.pl.
925 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
926 (@token, $grammar, $bench): New.
927 (generate_grammar_variant): Rename as...
928 (generate_grammar_list): this.
929 (generate_grammar): Adjust.
930 (bench_grammar): Rename as...
931 (bench): this.
932 Use it in the various bench-marking routines.
933 (-b, -g): New options.
934
935 2008-11-09 Akim Demaille <demaille@gostai.com>
936
937 Use a static hierarchy for symbols in the C++ parser.
938 * data/lalr1.cc (symbol_base_type, symbol_type)
939 (stack_symbol_type): Make it a static hierarchy.
940 Adjust dependencies.
941
942 2008-11-09 Akim Demaille <demaille@gostai.com>
943
944 bench.pl -d, --directive.
945 * etc/bench.pl.in (@directive): New.
946 (&bench_grammar): Use it.
947 (&bench_list_grammar): New, to provide access to the "variant"
948 grammar.
949 Use it.
950 (getopts): Support -d, --directive.
951
952 2008-11-09 Akim Demaille <demaille@gostai.com>
953
954 Use inline for small operations.
955 * data/lalr1.cc (symbol_base_type, symbol_type)
956 (stack_symbol_type): Declare constructor and other operations as
957 inline.
958 (yy_destroy_): Inline.
959
960 2008-11-09 Akim Demaille <demaille@gostai.com>
961
962 Introduce a hierarchy for symbols.
963 * data/lalr1.cc (symbol_base_type, symbol_type): New.
964 (data_type): Rename as...
965 (stack_symbol_type): this.
966 Derive from symbol_base_type.
967 (yy_symbol_value_print_): Merge into...
968 (yy_symbol_print_): this.
969 Rename as...
970 (yy_print_): this.
971 (yydestruct_): Rename as...
972 (yy_destroy_): this.
973 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
974 (parser::parse): yyla is now of symbol_type.
975 Use its type member instead of yytoken.
976
977 2008-11-09 Akim Demaille <demaille@gostai.com>
978
979 Rename data_type and stack_symbol_type.
980 * data/lalr1.cc (data_type): Rename as...
981 (stack_symbol_type): this.
982
983 2008-11-09 Akim Demaille <demaille@gostai.com>
984
985 Handle semantic value and location together.
986 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
987 yydata.value and yydata.location.
988 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
989 (YY_SYMBOL_PRINT): Now take semantic value and location as a
990 single arg.
991 Adjust all callers.
992 (yydestruct_): New overload for a stack symbol.
993
994 2008-11-09 Akim Demaille <demaille@gostai.com>
995
996 Push a complete symbol, not connected parts.
997 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
998 state, value and location.
999 Adjust callers.
1000
1001 2008-11-09 Akim Demaille <demaille@gostai.com>
1002
1003 Agregate yylval and yylloc.
1004 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
1005 (parser::yyla): this.
1006
1007 2008-11-09 Akim Demaille <demaille@gostai.com>
1008
1009 Rely on the state stack to display reduction traces.
1010 To display rhs symbols before a reduction, we used information
1011 about the rule reduced, which required the tables yyrhs and
1012 yyprhs. Now use rely only on the state stack to get the same
1013 information.
1014
1015 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
1016 Use them.
1017 (parser::yyrhs_, parser::yyprhs_): Remove.
1018 (parser::yy_reduce_print_): Use the state stack.
1019
1020 2008-11-09 Akim Demaille <demaille@gostai.com>
1021
1022 Fuse yyval and yyloc into yylhs.
1023 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
1024 yylhs.
1025 (parse): Replace yyval and yyloc with yylhs.value and
1026 yylhs.location.
1027 After a user action, compute yylhs.state earlier.
1028 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
1029 fresh error_token.
1030
1031 2008-11-09 Di-an Jan <dianj@freeshell.org>
1032
1033 Remove unused variable.
1034 * src/output.c (type_names_output): Remove unused variable sep.
1035
1036 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
1037
1038 Change tests/output.at quoting.
1039 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
1040 expanding arguments.
1041
1042 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1043
1044 Don't add a semicolon to actions for %skeleton or %language.
1045 It breaks Java test cases as reported by Akim Demaille.
1046 * src/scan-code.l: Implement.
1047
1048 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1049
1050 Clean up %skeleton and %language priority implementation.
1051 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1052 remove static qualifier because others will soon need to see it.
1053 (language_prio): Likewise.
1054 (getargs): Use command_line_prio rather than 0.
1055 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1056 enum fields.
1057 (skeleton_prio): Extern it.
1058 (language_prio): Extern it.
1059 * src/parse-gram.y: Use grammar_prio rather than 1.
1060
1061 2008-11-07 Akim Demaille <demaille@gostai.com>
1062
1063 Moving push traces into yypush_.
1064 * data/lalr1.cc (yypush_): Now takes a optional trace message.
1065 Adjust all uses.
1066
1067 2008-11-07 Akim Demaille <demaille@gostai.com>
1068
1069 The single-stack C++ parser is now the standard one.
1070 * data/lalr1.cc: Rename as...
1071 * data/lalr1-split.cc: this.
1072 * data/lalr1-fusion.cc: Rename as...
1073 * data/lalr1.cc: this.
1074 * etc/bench.pl.in: Adjust.
1075
1076 2008-11-07 Akim Demaille <demaille@gostai.com>
1077
1078 Avoid empty-if warnings.
1079 Reported by Quentin Hocquet.
1080
1081 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
1082 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
1083
1084 2008-11-07 Akim Demaille <demaille@gostai.com>
1085
1086 Pass command line location to skeleton_arg and language_argmatch.
1087 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
1088 The location argument is now mandatory.
1089 Adjust all dependencies.
1090 (getargs): Use command_line_location.
1091
1092 2008-11-07 Akim Demaille <demaille@gostai.com>
1093
1094 -D, --define.
1095 * src/getargs.c (usage): Document -D.
1096 Fix help string for --locations.
1097 (command_line_location): New.
1098 (short_options, long_options, getargs): Support -D, --define.
1099 (getargs): Move -d support at the right place.
1100 * doc/bison.texinfo (Bison Options): Update.
1101 * tests/input.at (%define, --define): New.
1102
1103 2008-11-07 Akim Demaille <demaille@gostai.com>
1104
1105 Initialize the muscle table before parsing the command line.
1106 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
1107 (getargs): Define file_name.
1108 * src/main.c (main): Initialize muscle_tab before calling
1109 getargs.
1110 * src/muscle_tab.c (muscle_init): No longer define file_name, as
1111 its value is not available yet.
1112
1113 2008-11-07 Akim Demaille <demaille@gostai.com>
1114
1115 Locations without columns for command line arguments.
1116 * src/location.c (location_print): Don't display negative columns.
1117 * src/location.h: Document this.
1118
1119 2008-11-07 Akim Demaille <demaille@gostai.com>
1120
1121 Fix --help.
1122 * src/getargs.c (usage): Fix help string for -W.
1123
1124 2008-11-07 Akim Demaille <demaille@gostai.com>
1125
1126 Handle more general types of option arguments.
1127 * build-aux/cross-options.pl: The argument ends at the first
1128 space, not the first non-symbol character.
1129 Use @var for each word appearing the argument description.
1130
1131 2008-11-07 Akim Demaille <demaille@gostai.com>
1132
1133 Destroy the variants that remain on the stack in case of error.
1134 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
1135 destructor.
1136 Display the value only if yymsg is nonnull.
1137 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
1138
1139 2008-11-07 Akim Demaille <demaille@gostai.com>
1140
1141 Add "%define assert" to variants.
1142 This is used to help the user catch cases where some value gets
1143 ovewritten by a new one. This should not happen, as this will
1144 probably leak.
1145
1146 Unfortunately this uncovered a bug in the C++ parser itself: the
1147 lookahead value was not destroyed between two calls to yylex. For
1148 instance if the previous lookahead was a std::string, and then an int,
1149 then the value of the std::string was correctly taken (i.e., the
1150 lookahead was now an empty string), but std::string structure itself
1151 was not reclaimed.
1152
1153 This is now done in variant::build(other&) (which is used to take the
1154 value of the lookahead): other is not only stolen from its value, it
1155 is also destroyed. This incurs a new performance penalty of a few
1156 percent, and union becomes faster again.
1157
1158 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
1159 (b4_variant_if): New.
1160 (variant::built): New.
1161 Use it whereever the status of the variant changes.
1162 * etc/bench.pl.in: Check the penalty of %define assert.
1163
1164 2008-11-07 Akim Demaille <demaille@gostai.com>
1165
1166 Use "%define variant" in bench.pl.
1167 * etc/bench.pl.in: No longer use the pseudo directive %variants,
1168 just use %define variants.
1169
1170 2008-11-07 Akim Demaille <demaille@gostai.com>
1171
1172 Regen.
1173 * src/parse-gram.h, src/parse-gram.c: Regen.
1174
1175 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1176
1177 Fix user actions without a trailing semicolon.
1178 Reported by Sergei Steshenko at
1179 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1180 * THANKS (Sergei Steshenko): Add.
1181 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1182 * tests/regression.at (Fix user actions without a trailing semicolon):
1183 New test case.
1184
1185 2008-11-04 Akim Demaille <demaille@gostai.com>
1186
1187 Use b4_copyright_years.
1188 * data/yacc.c (b4_copyright_years): New.
1189 Fix its value according to the comments in the file.
1190 Use it and undefine it.
1191
1192 2008-11-04 Akim Demaille <demaille@gostai.com>
1193
1194 Formatting changes.
1195 * data/lalr1-fusion.cc, src/parse-gram.y: here.
1196
1197 2008-11-04 Akim Demaille <demaille@gostai.com>
1198
1199 Formatting changes.
1200 * data/lalr1-fusion.cc: here.
1201
1202 2008-11-04 Akim Demaille <demaille@gostai.com>
1203
1204 Use strict on bench.pl.
1205 * etc/bench.pl.in (&run, &generate_grammar): New.
1206 Rename the grammar generating functions for consistency.
1207 Change the interface so that the list of benches to run is passed
1208 as (optionless) arguments.
1209 (&compile): Use &run.
1210
1211 2008-11-04 Akim Demaille <demaille@gostai.com>
1212
1213 Remove spurious initial empty lines.
1214 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1215 * data/yacc.c: End the @output lines with an @.
1216
1217 2008-11-04 Akim Demaille <demaille@gostai.com>
1218
1219 Improve the display of sizes.
1220 * etc/bench.p.in: Higher precision.
1221 Sort by decreasing size.
1222
1223 2008-11-04 Akim Demaille <demaille@gostai.com>
1224
1225 Don't memcpy C++ structures.
1226 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
1227 arguments.
1228 (variant::build): New overload for
1229 copy-construction-that-destroys.
1230 (variant::swap): New.
1231 (parser::yypush_): Use it in variant mode.
1232
1233 2008-11-04 Akim Demaille <demaille@gostai.com>
1234
1235 Better defaults for bench.pl.
1236 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
1237 default values.
1238 Adjust &verbose uses.
1239 (-q, --quiet): New.
1240
1241 2008-11-04 Akim Demaille <demaille@gostai.com>
1242
1243 Make variant.yy more complex.
1244 std::list cannot be copied via memcpy, they are more demanding than
1245 std::string. Use one std::list to strengthen the test.
1246
1247 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
1248 Adjust.
1249 Create a list of strings, instead of a single large string.
1250
1251 2008-11-04 Akim Demaille <demaille@gostai.com>
1252
1253 bench.pl --bench.
1254 * etc/bench.pl.in (--bench, $bench): New.
1255
1256 2008-11-04 Akim Demaille <demaille@gostai.com>
1257
1258 Sort methods.
1259 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
1260 Define it after as().
1261
1262 2008-11-04 Akim Demaille <demaille@gostai.com>
1263
1264 Useless parens.
1265 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
1266
1267 2008-11-04 Akim Demaille <demaille@gostai.com>
1268
1269 Issue missing synclines after user actions.
1270 * data/c.m4 (b4_case): Issue synclines on the output file.
1271
1272 2008-11-04 Akim Demaille <demaille@gostai.com>
1273
1274 Remove trailing empty line.
1275 * data/lalr1-fusion.cc: Don't add an empty line after the user's
1276 epilogue.
1277
1278 2008-11-04 Akim Demaille <demaille@gostai.com>
1279
1280 Fix output of copyright years.
1281 * data/bison.m4 (b4_copyright): Fix the indentation of the
1282 copyright year paragraph.
1283 Use b4_copyright_years when no years are given.
1284 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
1285 (b4_copyright_years): New.
1286 Use it.
1287
1288 2008-11-04 Akim Demaille <demaille@gostai.com>
1289
1290 Avoid the spurious initial empty line.
1291 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
1292 the end of @output request to suppress the empty line that
1293 results.
1294
1295 2008-11-04 Akim Demaille <demaille@gostai.com>
1296
1297 Remove parser::rhs_number_type.
1298 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
1299 (yyrhs_): Use b4_table_define.
1300
1301 2008-11-04 Akim Demaille <demaille@gostai.com>
1302
1303 Fix iteration type.
1304 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1305
1306 2008-11-04 Akim Demaille <demaille@gostai.com>
1307
1308 Factor the declaration of the integer tables.
1309 * data/lalr1-fusion.cc (b4_table_define): New.
1310 Use it.
1311
1312 2008-11-03 Akim Demaille <demaille@gostai.com>
1313
1314 Fix indentation of tables in lalr1.cc
1315 * data/lalr1-fusion.cc: Fix the indentation.
1316
1317 2008-11-03 Akim Demaille <demaille@gostai.com>
1318
1319 Destroy the lhs symbols after reduction.
1320 * data/lalr1-fusion.cc (parse): After the user action, when in
1321 variant mode, destroy the lhs symbols.
1322
1323 2008-11-03 Akim Demaille <demaille@gostai.com>
1324
1325 Simplify yysyntax_error_ use.
1326 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
1327 type, but make it unnamed in the declaration when it is not used.
1328
1329 2008-11-03 Akim Demaille <demaille@gostai.com>
1330
1331 Let yy::variant::build return an lvalue.
1332 * data/lalr1-fusion.cc (variant::build): Return a reference to the
1333 object.
1334
1335 2008-11-03 Akim Demaille <demaille@gostai.com>
1336
1337 Define yy::variant only when needed.
1338 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
1339 used.
1340
1341 2008-11-03 Akim Demaille <demaille@gostai.com>
1342
1343 Bench the three-stack lalr1.cc.
1344 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
1345 one-stack one.
1346
1347 2008-11-03 Akim Demaille <demaille@gostai.com>
1348
1349 Fail on parse error in calc++.
1350 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
1351 status.
1352 * examples/calc++/test ($me, $number, $exit, run): New.
1353 Use them to propagate errors to the exit status.
1354
1355 2008-11-03 Akim Demaille <demaille@gostai.com>
1356
1357 Don't specify the skeleton twice in the example.
1358 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
1359 file does what is needed.
1360
1361 2008-11-03 Akim Demaille <demaille@gostai.com>
1362
1363 bench: Improve output.
1364 * etc/bench.pl.in (bench_grammar): Tune the printf format.
1365
1366 2008-11-03 Akim Demaille <demaille@gostai.com>
1367
1368 bench: check impact of %debug on variants.
1369 * etc/bench.pl.in (variant_grammar): Fix the computation of
1370 $variant.
1371 Generate a grammar file that can work with or without %debug.
1372 Do use the @directive.
1373 (bench_variant_parser): Check impact of %debug.
1374 (@directives): Rename all the occurrences to...
1375 (@directive): this, for consistency.
1376
1377 2008-11-03 Akim Demaille <demaille@gostai.com>
1378
1379 bench: report the size too.
1380 * etc/bench.pl.in ($iterations): Defaults to -3.
1381 (&bench_grammar): Require hireswallclock.
1382 Compute and display the size of the result.
1383 More comments.
1384
1385 2008-11-03 Akim Demaille <demaille@gostai.com>
1386
1387 bench: More use of the verbosity level.
1388 * etc/bench.pl.in ($verbose, &verbose): New.
1389 Use them.
1390 More POD documentation.
1391
1392 2008-11-03 Akim Demaille <demaille@gostai.com>
1393
1394 bench.pl: a command line interface
1395 * etc/bench.pl.in: More doc.
1396 Some fixes in the documentation.
1397 ($cflags, $iterations, &help, &getopt): New.
1398 Use them.
1399 (&variant_grammar): Let the number of stages be 10 times what is
1400 specified.
1401
1402 2008-11-03 Akim Demaille <demaille@gostai.com>
1403
1404 Bench the use of Boost.Variants.
1405 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1406 New.
1407 (&compile): Be ready to compile C++ parsers.
1408 (&bench_push_parser): Move debug information to the outermost
1409 level.
1410 * THANKS: Add Michiel De Wilde.
1411
1412 2008-11-03 Akim Demaille <demaille@gostai.com>
1413
1414 bench.pl: Pass directives as a list instead of as a string.
1415 * etc/bench.pl.in (&directives): New.
1416 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1417 directives.
1418 (&triangular_grammar): Do use the directives (were ignored).
1419 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1420 directives.
1421
1422 2008-11-03 Akim Demaille <demaille@gostai.com>
1423
1424 Improve genericity of bench.pl.
1425 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1426 argument.
1427 (&bench_push_parser): New.
1428 Call it.
1429
1430 2008-11-03 Akim Demaille <demaille@gostai.com>
1431
1432 Add documentation to bench.pl.
1433 * etc/bench.pl.in: Comment changes.
1434
1435 2008-11-03 Akim Demaille <demaille@gostai.com>
1436
1437 Fuse the three stacks into a single one.
1438
1439 In order to make it easy to perform benchmarks to ensure that
1440 there are no performance loss, lalr1.cc is forked into
1441 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
1442 lalr1.cc.
1443
1444 Meanwhile, to make sure that lalr1-fusion.cc is correctly
1445 exercized by the test suite, the user must install a symbolic link
1446 from lalr1.cc to it.
1447
1448 Instead of having three stacks (state, value, location), use a
1449 stack of triples. This considerably simplifies the code (and it
1450 will be easier not to require locations as currently does the C++
1451 parser), and also gives a 10% speedup according to
1452 etc/bench (probably mainly since memory allocation is done once
1453 instead of three times).
1454
1455 Another motivation is to make it easier to destruct properly
1456 semantic values: now that they are bound to their state (hence
1457 symbol type) it will be easier to call the appropriate destructor.
1458
1459 These changes should probably benefit the C parser too.
1460
1461 * data/lalr1.cc: Copy as...
1462 * data/lalr1-fusion.cc: this new file.
1463 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1464 from c++.m4.
1465 (state_stack_type, semantic_stack_type, location_stack_type)
1466 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1467 (data_type, stack_type, yystack_): New.
1468 (YYLLOC_DEFAULT, yypush_): Adjust.
1469 (yyerror_range): Now based on data_type, not location_type.
1470
1471 2008-11-03 Akim Demaille <demaille@gostai.com>
1472
1473 Push the state, value, and location at the same time.
1474 This is needed to prepare a forthcoming patch that fuses the three
1475 stacks into one.
1476
1477 * data/lalr1.cc (parser::yypush_): New.
1478 (parser::yynewstate): Change the semantics: instead of arriving to
1479 this label when value and location have been pushed, but yystate
1480 is to be pushed on the state stack, now the three of them must
1481 have been pushed before. yystate still must be the new state.
1482 This allows to use yypush_ everywhere instead of individual
1483 handling of the stacks.
1484
1485 2008-11-03 Akim Demaille <demaille@gostai.com>
1486
1487 Prefer references to pointers.
1488 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1489 definition to use references instead of pointers.
1490 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1491 Take the value and location as references.
1492 Adjust callers.
1493
1494 2008-11-03 Akim Demaille <demaille@gostai.com>
1495
1496 stack::size instead of stack::height.
1497 * data/lalr1.cc (stack::height): Rename as...
1498 (stack::size): this.
1499 Fix the output type.
1500 Comment changes.
1501
1502 2008-11-03 Akim Demaille <demaille@gostai.com>
1503
1504 Use variants to support objects as semantic values.
1505 This patch was inspired by work by Michiel De Wilde. But he used
1506 Boost variants which (i) requires Boost on the user side, (ii) is
1507 slow, and (iii) has useless overhead (the parser knows the type of
1508 the semantic value there is no reason to duplicate this
1509 information as Boost.Variants do).
1510
1511 This implementation reserves a buffer large enough to store the
1512 largest objects. yy::variant implements this buffer. It was
1513 implemented with Quentin Hocquet.
1514
1515 * src/output.c (type_names_output): New.
1516 (output_skeleton): Invoke it.
1517 * data/c++.m4 (b4_variant_if): New.
1518 (b4_symbol_value): If needed, provide a definition for variants.
1519 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1520 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1521 (b4_char_sizeof, yy::variant): New.
1522 (parser::parse): If variants are requested, define
1523 parser::union_type, parser::variant, change the definition of
1524 semantic_type, construct $$ before running the user action instead
1525 of performing a default $$ = $1.
1526 * examples/variant.yy: New.
1527 Based on an example by Michiel De Wilde.
1528
1529 2008-11-03 Akim Demaille <demaille@gostai.com>
1530
1531 Parameterize the extraction of semantic values.
1532 To make future changes easier, no longer rely on ".TYPE" being the
1533 way to get a semantic value.
1534
1535 * data/c.m4 (b4_symbol_value): New.
1536 Use it.
1537 * data/c++.m4, data/yacc.c: Use it.
1538 * data/glr.c: Use b4_symbol_value.
1539 (b4_rhs_data): New.
1540 Use it.
1541
1542 2008-11-03 Akim Demaille <demaille@gostai.com>
1543
1544 Prepare easier M4 changes.
1545 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1546 future changes.
1547
1548 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1549
1550 Initiate further development.
1551 * NEWS: Create an empty section for new entries.
1552 * gnulib: Update submodule to HEAD.
1553
1554 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1555
1556 * NEWS: Version 2.4.
1557
1558 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1559
1560 Prepare for next release.
1561 * NEWS: Briefly mention changes since 2.3b.
1562 * README: Say GNU m4 1.4.6, which we've been requiring in release
1563 announcements already, not 1.4.3, which breaks the build.
1564
1565 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1566
1567 Say %language is experimental.
1568 We're thinking of extending it's effect on output file naming. See the
1569 thread at
1570 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1571 * NEWS: Say it's experimental.
1572 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1573 recommend it over %skeleton for now.
1574 (Bison Options): Likewise.
1575 (C++ Bison Interface): Use %skeleton not %language.
1576 (Calc++ Parser): Use %skeleton not %language.
1577 * src/getargs.c (usage): Say it's experimental.
1578
1579 2008-11-01 Di-an Jan <dianj@freeshell.org>
1580 Paolo Bonzini <bonzini@gnu.org>
1581
1582 Support all Java parser class modifiers.
1583 * data/java.m4 (b4_percent_define_get3): New.
1584 (b4_final_if, b4_strictfp_if): New.
1585 * data/lalr1.java (final, strictfp, extends, implements): Support.
1586 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1587 documentation.
1588 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1589 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1590 (AT_CHECK_JAVA_GREP): New.
1591 (Java parser class modifiers): New test.
1592 (Java parser class extends and implements): New test.
1593
1594 Model exception propagation better with throws and lex_throws.
1595 * data/java.m4 (b4_list2): New.
1596 (throws): Change default.
1597 * data/lalr1.java (yyaction): Add throws.
1598 (parse): Add lex_throws in addition to throws.
1599 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1600 * tests/java.at (Java throws specifications): New test.
1601
1602 Improve documentation for Java parsers.
1603 * doc/bison.texinfo (Java Parsers): Add subsections.
1604 Don't quote first argument of %define.
1605 (Java Bison Interface): Document output files. Move documentation
1606 of parser class and merge into Java Parser Interface. Document
1607 features that error out. Document directives with no effect.
1608 Move note about Javadoc higher.
1609 (Java Semantic Values): Explicitly mention stype.
1610 Document that generic types cannot be used.
1611 (Java Location Values): Use @deftypeivar. Document constructors.
1612 Correct return value for toString.
1613 (Java Parser Interface): List undocumented constants/fields.
1614 Move documentation of fields added by %parse-param closer to list
1615 of members. Document that token names are added as fields.
1616 Document constructors accurately. Remove error method.
1617 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1618 Interface. Describe %code lexer and yylex accutately.
1619 Remove documentation that does not match the code.
1620 (Java Action Features): New.
1621 (Java Differences): Add reference. Add item on semantic values.
1622 Add note about @{ ... @}. Clarify %% epilogue placement.
1623 (Java Declarations Summary): New.
1624
1625 Fix Java skeleton.
1626 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1627 (b4_remove_comma): Quote test argument.
1628 (b4_identification): Remove "bison" field.
1629 * tests/java.at (Java parser class and package names): New test.
1630 (Java %parse-param and %lex-param): New test.
1631 (Java stype, position_class and location_class): New test.
1632
1633 2008-10-31 Di-an Jan <dianj@freeshell.org>
1634
1635 * data/lalr1.jave: Update copyright years.
1636 (YYParser): Correct name of "generated from" file in Javadoc:
1637 use b4_file_name instead of @ofile@.
1638 (Location constructor): Correct Javadoc parameter name.
1639 (yylloc): Add missing opening m4 quote after b4_location_if.
1640 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1641 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1642 (YYParser constructor): Correct Javadoc parameter name.
1643
1644 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1645
1646 Always put auxiliary code files in the same dir as other output files.
1647 * src/files.c (compute_file_name_parts): When the user specifies
1648 --output but not --file-prefix, extract the directory prefix from the
1649 file prefix not from the grammar file name. This affects the location
1650 of files like location.hh generated by the C++ skeleton. The includes
1651 in the other output files require this fix.
1652 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1653 for expected output files.
1654 (Output files): Add a test for the above.
1655
1656 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1657
1658 * gnulib: Update submodule to HEAD.
1659
1660 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1661
1662 Update copyright year.
1663 * src/files.c: Here.
1664
1665 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1666
1667 Don't overwrite the input file.
1668 * src/files.c (output_file_name_check): Fatal error if using input file
1669 for output.
1670 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1671 argument.
1672 (Conflicting output files): Add test.
1673
1674 2008-10-28 Akim Demaille <demaille@gostai.com>
1675
1676 Space changes.
1677 * data/lalr1.cc: Formatting changes.
1678
1679 2008-10-28 Akim Demaille <demaille@gostai.com>
1680
1681 Don't define debugging functions when !YYDEBUG.
1682 * data/lalr1.cc (debug_stream, set_debug_stream)
1683 (debug_level_type, debug_level, set_debug_level): Don't
1684 declare them when YYDEBUG is not defined.
1685 The implementation are already YYDEBUG-aware.
1686
1687 2008-10-28 Akim Demaille <demaille@gostai.com>
1688
1689 Prefer "continue" for empty loop bodies.
1690 * etc/bench.pl.in: Use "continue" instead of {}.
1691
1692 2008-10-28 Akim Demaille <demaille@gostai.com>
1693
1694 Space and comments changes.
1695 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1696 * data/c.m4, data/lalr1.cc: Space changes.
1697
1698 2008-10-28 Akim Demaille <demaille@gostai.com>
1699
1700 Make gnulib a submodule.
1701 * gnulib: New.
1702 * .gitmodules (gnulib): New.
1703
1704 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1705
1706 Fix yyerror_range for user-defined location type in C++. Reported by
1707 Georg Sauthoff at
1708 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1709 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1710 * THANKS (Georg Sauthoff): Add.
1711
1712 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1713
1714 Update several administrative files mainly to facilitate releasing.
1715 * HACKING (Administrivia): Make the git-merge-changelog notes more
1716 helpful.
1717 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1718 (Release Procedure): Update for git and add numerous details that were
1719 previously missing.
1720 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1721 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1722 that announcements don't claim we bootstrapped with whatever bison
1723 happened to be in PATH. Add flex as a bootstrap tool.
1724 * Makefile.maint: Remove, previously replaced by maint.mk.
1725 * Makefile.cfg: Remove, and migrate settings to...
1726 * cfg.mk: ... here for the sake of `make announcement'.
1727 * bootstrap.conf (gnulib_modules): Add announce-gen.
1728 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1729 Berry.
1730
1731 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1732
1733 Small but important bugfixes for the Java skeleton.
1734 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1735 (yy_symbol_print): Call toString on yyvaluep.
1736
1737 2008-08-29 Akim Demaille <demaille@gostai.com>
1738
1739 Clarify UPDATED use.
1740 * doc/bison.texinfo: It refers to the last edition of this file,
1741 not to the release date of Bison.
1742 Reported by Joel E. Denny.
1743
1744 2008-08-29 Akim Demaille <demaille@gostai.com>
1745
1746 * README: Update FAQ pointer.
1747 Reported by Joel E. Denny.
1748
1749 2008-08-27 Eric Blake <ebb9@byu.net>
1750
1751 Resync m4sugar from autoconf.
1752 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1753 (m4_init): Adjust to latest m4.git changes.
1754 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1755 effects.
1756 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1757 (_m4_list_cmp): Reduce side effects.
1758
1759 2008-08-27 Akim Demaille <demaille@gostai.com>
1760
1761 Check yyerrok in calc.at.
1762 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1763 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1764 expected.
1765
1766 2008-08-27 Akim Demaille <demaille@gostai.com>
1767
1768 Support yyerrok in lalr1.cc.
1769 YYBACKUP is still to import back into lalr1.cc.
1770 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1771
1772 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1773
1774 For maintainer-check*, don't recompile for a $(VERSION) update.
1775 * cfg.mk: New file.
1776 (_is-dist-target): Override the one in GNUmakefile.
1777 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1778
1779 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1780
1781 Update for recent change to gnulib.
1782 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1783 string.h now.
1784
1785 2008-08-15 Eric Blake <ebb9@byu.net>
1786
1787 Remaining m4sugar merge from autoconf.
1788 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1789 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1790 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1791 * src/output.c (output_skeleton): Tell m4 how to find it.
1792
1793 Partial m4sugar merge from autoconf: m4_map.
1794 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1795 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1796 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1797 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1798 for empty list.
1799 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1800 Likewise.
1801 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1802 declares it.
1803
1804 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1805
1806 Keep .version and PACKAGE_VERSION in sync.
1807 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1808 dependency, and add comments justifying this in more detail. Discussed
1809 starting at
1810 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1811
1812 2008-08-06 Eric Blake <ebb9@byu.net>
1813
1814 Partial m4sugar merge from autoconf: m4_shiftn.
1815 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1816 (m4_shift2, m4_shift3): New macros.
1817 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1818 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1819 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1820 * data/java.m4 (b4_remove_comma): Likewise.
1821
1822 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1823 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1824 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1825 (m4_init): Consolidate wrapped text into single m4_wrap.
1826 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1827 in wrapped text.
1828
1829 2008-08-05 Eric Blake <ebb9@byu.net>
1830
1831 Partial m4sugar merge from autoconf: builtins, version.m4.
1832 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1833 (m4_prepend): Remove, as it is unused and inherently quadratic,
1834 whereas m4_append is linear in newer m4.
1835 (m4_mkstemp): New builtin.
1836 (m4_symbols): Make rename conditional.
1837 (m4_version_prereq): Ensure fatal error if used in bison, which
1838 intentionally lacks version.m4.
1839
1840 Fix comments in m4sugar.
1841 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1842
1843 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1844
1845 Update for recent .gitignore fix in Gnulib.
1846 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1847 anchored .gitignore entries.
1848
1849 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1850
1851 Set gnu or gnits strictness.
1852 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1853 development and gnits strictness for releases. Based on Eric Blake's
1854 suggestion at
1855 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1856
1857 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1858
1859 * NEWS: Clarify documentation of %language.
1860
1861 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1862
1863 Support usage of git-merge-changelog.
1864 * .gitattributes: New.
1865 * HACKING: Document usage of git-merge-changelog.
1866 * bootstrap: Install git-merge-changelog entries in .git/config
1867 if appropriate.
1868
1869 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1870
1871 Remove remaining dependence on CVS Id keyword.
1872 * ChangeLog: For the sake of people still using CVS, don't use dollars
1873 when mentioning Id.
1874 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1875 unusual anyway.
1876 * data/xslt/xml2dot.xsl: Likewise.
1877 * data/xslt/xml2text.xsl: Likewise.
1878 * data/xslt/xml2xhtml.xsl: Likewise.
1879 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1880 * doc/Makefile.am (neutralize): Remove, no longer needed.
1881 (.x.1): Don't use neutralize.
1882 (edit): Don't substitute for ID.
1883 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1884
1885 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1886
1887 Fix dependence on computed configure variables.
1888 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1889 $(top_srcdir)/configure.ac so that changes to computed variables, such
1890 as PACKAGE_VERSION, are seen.
1891 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1892
1893 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1894
1895 Update copyright dates for recent changes.
1896 * Makefile.am: Here.
1897 * src/Makefile.am: Here.
1898 * src/reduce.c: Here.
1899 * tests/reduce.at: Here.
1900
1901 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1902
1903 Use git-version-gen for version names between releases.
1904 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1905 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1906 * .prev-version: New.
1907 * .version.in: Remove.
1908 * ChangeLog: Remove the Id previously used for capturing the CVS
1909 revision.
1910 * GNUmakefile: Remove, now copied from Gnulib.
1911 * Makefile.am: Add code suggested by comments in
1912 build-aux/git-version-gen.
1913 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1914 .prev-version, and .version.
1915 * NEWS (2.3b+): Rename to...
1916 (?.?): ... this because we're dropping the "+" version naming scheme,
1917 but, in general, we still can't be sure of our next release name.
1918 * bootstrap: Add a quick hack to remove from .gitignore the
1919 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1920 entry. This should really be fixed in gnulib instead.
1921 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1922 * configure.ac (AC_INIT): Set version name by invoking
1923 build-aux/git-version-gen.
1924 (AC_CONFIG_FILES): Remove .version, now generated by
1925 build-aux/git-version-gen.
1926 * maint.mk: New, copied from coreutils.
1927 * doc/.cvsignore (bison.1): Add.
1928 * doc/.gitignore (/bison.1): Add.
1929 * doc/bison.1: Remove, generated.
1930 * src/.cvsignore (revision.c): Remove.
1931 * src/.gitignore (/revision.c): Remove.
1932 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1933 (BUILT_SOURCES): Remove revision.c.
1934 (revision.c): Remove.
1935 * src/getargs.c (version): Don't print revision after the VERSION.
1936 * src/revision.h: Remove.
1937
1938 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1939
1940 Fix untranslatable composition of sentences. Reported by Goran
1941 Uddeborg at
1942 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1943 * THANKS (Goran Uddeborg): Add.
1944 * src/reduce.c (reduce_print): Report the number of nonterminals and
1945 rules useless in the grammar in separate sentences.
1946 * tests/reduce.at (Useless Rules): Update output.
1947 (Reduced Automaton): Likewise.
1948 (Underivable Rules): Likewise.
1949 (Empty Language): Likewise.
1950
1951 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1952
1953 Fix some .gitignore and .cvsignore problems.
1954 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1955 (insert_vc_ignore): ... this new function, which prepends `/' to all
1956 .gitignore entries before passing them to insert_sorted_if_absent.
1957 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1958 .cvsignore files are maintained even though Bison developers run
1959 bootstrap while using Git.
1960 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1961 unneeded by Bison.
1962 (gnulib): Add.
1963 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1964 unneeded. Reported by Eric Blake.
1965 * lib/.gitignore (/*~): Add.
1966 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1967 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1968 Blake.
1969 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1970
1971 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1972
1973 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1974 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1975 * bootstrap.conf (gnulib_modules): Add unsetenv.
1976 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1977 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1978 (/setenv.m4): Add.
1979 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1980 the first argument because it may become position-dependent, and unset
1981 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1982 Add comments explaining these issues in more detail.
1983
1984 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1985
1986 Add .gitignore everywhere based on .cvsignore.
1987 * .gitignore: New.
1988 * build-aux/.gitignore: New.
1989 * data/.gitignore: New.
1990 * doc/.gitignore: New.
1991 * etc/.gitignore: New.
1992 * examples/.gitignore: New.
1993 * examples/calc++/.gitignore: New.
1994 * lib/.gitignore: New.
1995 * m4/.gitignore: New.
1996 * po/.gitignore: New.
1997 * runtime-po/.gitignore: New.
1998 * src/.gitignore: New.
1999 * tests/.gitignore: New.
2000
2001 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2002
2003 * NEWS (2.3b+): New section, empty for now.
2004 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
2005
2006 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2007
2008 * NEWS (2.3b): Update release date since there has been a delay in
2009 getting the announcements and tarballs out.
2010
2011 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2012
2013 * NEWS: Version 2.3b.
2014 * configure.ac (AC_INIT): Likewise.
2015 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
2016
2017 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
2018
2019 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
2020 been doing it for years.
2021 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
2022 (Release Procedure): Add FIXME about make alpha being unmaintained.
2023
2024 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
2025
2026 * data/yacc.c: Reformat m4 a little for readability.
2027 * src/lalr.c (build_relations): Correct comment.
2028
2029 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2030
2031 DJGPP specific issue.
2032 * djgpp/config.sed: Fixes required to run configure scripts generated
2033 by autoconf 2.62.
2034
2035 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2036
2037 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
2038 coordinator@translationproject.org.
2039
2040 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2041
2042 * THANKS: Add Eric Blake.
2043
2044 2008-04-23 Eric Blake <ebb9@byu.net>
2045
2046 Revert prior patch, by working around autoconf regression.
2047 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
2048 ("Output file name: ("): Uncomment test.
2049 ("Output file name: )"): Likewise.
2050 Based on an idea from Noah Misch.
2051
2052 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2053
2054 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
2055 2.61. Reported by Juan Manuel Guerrero at
2056 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
2057 * tests/output.at ("Output file name: ("): Comment out test case for
2058 now.
2059 ("Output file name: )"): Likewise.
2060
2061 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2062
2063 * GNUmakefile: Update git-version-gen invocation so make dist
2064 succeeds.
2065
2066 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
2067
2068 Update to the current gnulib CVS repository, and fix trigraph handling
2069 in Bison.
2070 * bootstrap: Update gnulib CVS repository URL.
2071 (symlink_to_dir): Encapsulate the code that guarantees the destination
2072 directory exists into...
2073 (check_dst_dir): ... this new function, and...
2074 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
2075 fail when copying files into lib/uniwidth/.
2076 * src/output.c (prepare_symbols): When writing yytname muscles, where
2077 symbol names will be encoded in C-string literals, tell quotearg to
2078 escape trigraphs. This used to be the default in gnulib.
2079 * tests/regression.at (Token definitions): Because of the change in
2080 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
2081 escapes trigraphs in symbol names. Thus, yytname no longer has
2082 trigraphs unnecessarily doubly escaped. Update test case output.
2083 Extend test case to be sure Bison's own error messages will no longer
2084 have trigraphs in symbol names unnecessarily escaped once.
2085
2086 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
2087
2088 Fix make dist infinite loop reported by Juan Manuel Guerrero at
2089 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
2090 * .cvsignore: Add .version.
2091 * .version.in: New.
2092 * bootstrap.conf (gnulib_modules): Add git-version-gen.
2093 * configure.ac (AC_CONFIG_FILES): Add .version.
2094 * build-aux/.cvsignore: Add git-version-gen.
2095
2096 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
2097
2098 * NEWS (2.3a+): Mention that -g now takes an argument.
2099 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
2100 consistency. Update the -g and -x entries now that they take
2101 arguments. Use brackets to indicate optional arguments.
2102 * src/getargs.c (usage): Explain the relationship between arguments of
2103 long and short options more completely. Document --defines and -d
2104 separately since the former takes an argument but, for POSIX Yacc, the
2105 latter does not.
2106 (short_options): Let -W take an optional argument like --warnings.
2107 (getargs): Sort cases.
2108
2109 2008-02-28 Akim Demaille <demaille@gostai.com>
2110
2111 * doc/bison.texinfo: Fix a few typos.
2112
2113 2008-02-28 Akim Demaille <akim@epita.fr>
2114
2115 * doc/bison.texinfo (Bison Options): Document -W.
2116 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
2117
2118 2008-02-28 Akim Demaille <akim@epita.fr>
2119
2120 * src/getargs.c (short_options): Split and sort for readability.
2121 -g and -x take optional arguments, just like their long options.
2122 * build-aux/cross-options.pl: Use /x to make the regexp easier to
2123 understand.
2124 Fix the handling of $opt which resulted in all the argument to be
2125 considered as optional.
2126
2127 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
2128
2129 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
2130 say its interface is experimental.
2131 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
2132 Java.
2133 (Bison Options): In the -L and --language entry, mention Java.
2134 (Java Bison Interface): Say the interface is experimental.
2135 * src/getargs.c (usage): Mention -L and --language.
2136
2137 * NEWS (2.3a+): Say the push parsing interface is experimental.
2138 * doc/bison.texinfo (Push Decl): Likewise.
2139 (Decl Summary): Likewise in the "%define api.push_pull" entry.
2140 (Push Parser Function): Likewise.
2141 (Pull Parser Function): Likewise.
2142 (Parser Create Function): Likewise.
2143 (Parser Delete Function): Likewise.
2144 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
2145 yypull_parse, and yypush_parse entries.
2146
2147 * NEWS (2.3a+): Mention XML support, and say the schema is
2148 experimental.
2149 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
2150 * src/getargs.c (usage): Say the XML schema is experimental.
2151
2152 * NEWS (2.3a+): Say option instead of flag.
2153
2154 2008-02-21 Wojciech Polak <polak@gnu.org>
2155
2156 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
2157 text.
2158
2159 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
2160
2161 Fix impure push parser compile error reported by Bob Rossi at
2162 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
2163 * data/yacc.c: Clean up whitespace in the output a little.
2164 (yypstate_allocated): Define for impure push parsers regardless of
2165 whether the pull interface is also requested.
2166 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2167 check impure push parsers without the pull interface.
2168
2169 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2170 yyerror takes arguments specified by %parse-param while yypstate_new
2171 does not.
2172 * doc/bison.texinfo (Parser Create Function): Document that
2173 yypstate_new returns 0 for multiple impure parser instances.
2174 * tests/push.at (Push Parsing: Multiple impure instances): Update
2175 expected stderr output.
2176
2177 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2178
2179 * runtime-po/POTFILES.in (push.c): Remove.
2180
2181 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2182
2183 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2184 * data/push.c: Rename to...
2185 * data/yacc.c: ... this, overwriting it.
2186 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2187 `%push-pull-parser' -> `%define api.push_pull "both"'.
2188 Remove old yacc.c tests, and update push.c tests to yacc.c.
2189
2190 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2191
2192 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2193 `"%code top" blocks' instead of `%code "top" blocks'.
2194 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2195 Clean up whitespace in the output a little.
2196
2197 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2198
2199 Fix documentation problems reported by Tim Josling at
2200 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2201 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2202 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2203 integers. Explain the effect of literal string aliases on error
2204 messages. Copy token 0 documentation from the C++ skeleton
2205 documentation.
2206
2207 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2208
2209 Accept a token number in a %left, %right, or %nonassoc for POSIX
2210 conformance. Reported by Tim Josling at
2211 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2212 * NEWS (2.3a+): Mention.
2213 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2214 and code numbers are treated by precedence declarations.
2215 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2216 of symbols.1.
2217 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2218 of symbol.
2219 (symbol.prec): New, just like symbol but allows INT.
2220 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2221 longer holds.
2222 * tests/regression.at (Token number in precedence declaration): New
2223 test case.
2224
2225 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2226
2227 DJGPP specific issues.
2228 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2229 be changed. Copyright timestamp adjusted.
2230 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2231 be changed. Copyright timestamp adjusted.
2232 * djgpp/config.site: Copyright timestamp adjusted.
2233 * djgpp/config_h.sed: Copyright timestamp adjusted.
2234 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2235 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2236 filename translation list.
2237 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2238 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2239 files shall be created. Before trying to use the temp dir where the
2240 environment variable points to check that the dir really exists. If
2241 not default to the cwd as temp dir. Copyright timestamp adjusted.
2242 * djgpp/subpipe.h: Copyright timestamp adjusted.
2243 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2244
2245 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2246
2247 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2248
2249 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2250
2251 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2252 Problem reported by Claudio Saavedra in
2253 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2254
2255 2008-01-05 Wojciech Polak <polak@gnu.org>
2256
2257 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2258 document's title with the input grammar file name.
2259
2260 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2261
2262 Automate regression testing of the XML/XSLT implementation. Discussed
2263 starting at
2264 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2265 * configure.ac (XSLTPROC): New substitution.
2266 * Makefile.am (maintainer-xml-check): New phony target invoking...
2267 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2268 invoking make maintainer-check with BISON_TEST_XML=1.
2269 * tests/atlocal.in (XSLTPROC): New.
2270 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2271 not to report reachable memory when Bison is expected to have a
2272 non-zero exit status and (2) to compare XML/XSLT output with --graph
2273 and --report=all output for every working grammar when
2274 BISON_TEST_XML=1.
2275 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2276 (AT_BISON_CHECK_XML): New.
2277 (AT_QUELL_VALGRIND): New.
2278 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2279 (AT_CHECK): ... don't redefine this since this was the old way to
2280 quell Valgrind.
2281 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2282 AT_BISON_CHECK invocations.
2283 * tests/c++.at: Likewise.
2284 * tests/calc.at: Likewise.
2285 * tests/conflicts.at: Likewise.
2286 * tests/cxx-type.at: Likewise.
2287 * tests/existing.at: Likewise.
2288 * tests/glr-regression.at: Likewise.
2289 * tests/headers.at: Likewise.
2290 * tests/input.at: Likewise.
2291 * tests/java.at: Likewise.
2292 * tests/output.at: Likewise.
2293 * tests/push.at: Likewise.
2294 * tests/reduce.at: Likewise.
2295 * tests/regression.at: Likewise.
2296 * tests/sets.at: Likewise.
2297 * tests/skeletons.at: Likewise.
2298 * tests/synclines.at: Likewise.
2299 * tests/torture.at: Likewise.
2300 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2301 tends to hang xsltproc.
2302 (Big horizontal): Likewise.
2303
2304 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2305
2306 In XML output, remove redundant class attribute on symbol element.
2307 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2308 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2309 look up a symbol to determine whether it's a nonterminal or terminal.
2310 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2311 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2312
2313 Add prec/assoc information to XML output.
2314 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2315 %prec, add a percent_prec attribute.
2316 * src/print-xml.c (print_grammar): For each terminal that has a
2317 precedence or associativity, add a prec or assoc attribute.
2318 (xml_indent): New.
2319 (xml_puts): Use xml_indent.
2320 (xml_printf): Use xml_indent.
2321 * src/print-xml.h (xml_indent): Prototype.
2322
2323 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2324 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2325
2326 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2327
2328 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2329 (bison:ruleByNumber): ... this for clarity.
2330 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2331 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2332 (xsl:template match="reduction"): Update.
2333 (xsl:template match="item"): Update.
2334 (xsl:template match="reduction"): Update.
2335
2336 In the XML output, don't print the list of rules where symbols appear.
2337 Compute it in XSLT instead. Discussed at
2338 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2339 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2340 (bison:ruleByRhs): New.
2341 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2342 bison:ruleByRhs.
2343 (xsl:template match="terminal/rule"): Remove.
2344 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2345 bison:ruleByRhs.
2346 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2347 Remove.
2348 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2349 bison:ruleByRhs and mode="number-link" for rule template.
2350 (xsl:template match="terminal/rule"): Remove.
2351 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2352 bison:ruleByRhs and mode="number-link" for rule template.
2353 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2354 Rewrite as...
2355 (xsl:template match="rule" mode="number-link"): ... this.
2356 * src/print-xml.c (print_grammar): Don't print the list of rules.
2357
2358 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2359
2360 Don't let --report affect XML output; always print all information.
2361 Discussed at
2362 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2363 * src/conflicts.c (log_resolution): Implement.
2364 * src/print-xml.c (print_core): Implement.
2365 (print_state): Implement.
2366 (print_xml): Implement.
2367
2368 * NEWS (2.3a+): Fix quotes.
2369 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2370 don't let %verbose clear the list specified by --report.
2371
2372 2007-11-26 Akim Demaille <akim@epita.fr>
2373
2374 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2375
2376 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2377
2378 In the XML output, list useless and unused symbols and rules with the
2379 useful ones and add a "usefulness" attribute. Discussed starting at
2380 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2381 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2382 (grammar_rules_print_xml): Print all rules instead of just those
2383 useful in the grammar, and add a "usefulness" attribute.
2384 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2385 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2386 (print_grammar): Print all nonterminals instead of just useful ones,
2387 and add a "usefulness" attribute to nonterminals and terminals.
2388 (print_xml): Don't print a separate "reductions" or
2389 "rules-useless-in-parser" element.
2390 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2391 (reduce_xml): Remove.
2392 (reduce_token_unused_in_grammar): New.
2393 (reduce_nonterminal_useless_in_grammar): New.
2394 * src/reduce.h (reduce_xml): Remove prototype.
2395 (reduce_token_unused_in_grammar): Add prototype.
2396 (reduce_nonterminal_useless_in_grammar): Add prototype.
2397 * data/xslt/xml2text.xsl: Update for XML changes.
2398 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2399 * tests/reduce.at (Useless Terminals): Update output.
2400 (Useless Rules): Update output.
2401 (Reduced Automaton): Update output.
2402
2403 Say "Terminals unused in grammar" instead of "Unused terminals".
2404 * NEWS (2.3a+): Update.
2405 * doc/bison.texinfo (Understanding): Update example output.
2406 * src/reduce.c (reduce_output): Implement.
2407 * data/xslt/xml2text.xsl: Implement.
2408 * data/xslt/xml2xhtml.xsl: Implement.
2409
2410 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2411
2412 Accept --report-file=FILE to override the default `.output' filename.
2413 * NEWS (2.3a+): Mention.
2414 * doc/bison.texinfo (Bison Options): Add an entry.
2415 * src/files.c (compute_output_file_names): Don't override
2416 spec_verbose_file if already set.
2417 * src/getargs.c (usage): Document --report-file.
2418 (REPORT_FILE_OPTION): New anonymous enum member.
2419 (long_options): Add entry for it.
2420 (getargs): Add case for it setting spec_verbose_file.
2421
2422 * build-aux/cross-options.pl: Don't record a short option just because
2423 there's an arg.
2424 * doc/.cvsignore: Add yacc.1.
2425
2426 2007-11-14 Akim Demaille <akim@epita.fr>
2427
2428 * doc/yacc.1.in: New.
2429 * configure.ac, doc/Makefile.am: Adjust.
2430 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2431 config.h symbol.
2432 Use AC_SUBST for assignments too.
2433 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2434
2435 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2436
2437 * src/gram.c: Remove comments that duplicate comments in gram.h.
2438
2439 When reporting useless rules and nonterminals, say "useless in grammar"
2440 instead of "useless", and say "useless in parser" instead of "never
2441 reduced". Discussed starting at
2442 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2443 * NEWS (2.3a+): Mention this change.
2444 * data/xslt/xml2text.xsl: Update output text and expected input XML
2445 element names to match changes below.
2446 * data/xslt/xml2xhtml.xsl: Likewise.
2447 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2448 Contents: "Rules useless in parser due to conflicts".
2449 * doc/bison.texinfo (Decl Summary): Reword a little.
2450 (Understanding): Update example output for changes below.
2451 * src/gram.c: (rule_useful_p): Rename to...
2452 (rule_useful_in_grammar_p): ... this.
2453 (rule_useless_p): Rename to...
2454 (rule_useless_in_grammar_p): ... this.
2455 (rule_never_reduced_p): Rename to...
2456 (rule_useless_in_parser_p): ... this.
2457 (grammar_rules_print): Update for renames.
2458 (grammar_rules_print_xml): Update for renames.
2459 (grammar_rules_never_reduced_report): Rename to...
2460 (grammar_rules_useless_report): ... this since it is used for either
2461 kind of useless rule.
2462 * src/gram.h: Reword comments and update function names in prototypes.
2463 * src/main.c (main): Say "rule useless in parser due to conflicts".
2464 * src/print-xml.c (print_rules_never_reduced): Rename to...
2465 (print_rules_useless_in_parser): ... this, and rename output XML
2466 element "rules-never-reduced" to "rules-useless-in-parser".
2467 (print_xml): Update for rename.
2468 * src/print.c (print_results): Say "Rules useless in parser due to
2469 conflicts".
2470 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2471 (nonterminals_reduce): Say "nonterminal useless in grammar".
2472 (reduce_output): Say "Nonterminals useless in grammar".
2473 Say "Rules useless in grammar".
2474 (reduce_xml): Rename output XML element "useless" to
2475 "useless-in-grammar".
2476 (reduce_print): Don't report the count of grammatically useless rules
2477 as "rules never reduced" just because %yacc is specified.
2478 In the correct report of this count, say nonterminal(s) and rule(s)
2479 "useless in grammar".
2480 * tests/conflicts.at (S/R in initial): Update expected output.
2481 (Defaulted Conflicted Reduction): Likewise.
2482 (Unreachable States After Conflict Resolution): Likewise.
2483 * tests/existing.at (GNU pic Grammar): Likewise.
2484 * tests/reduce.at (Useless Nonterminals): Likewise.
2485 (Useless Rules): Likewise.
2486 (Reduced Automaton): Likewise.
2487 (Underivable Rules): Likewise.
2488 (Empty Language): Likewise.
2489
2490 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2491
2492 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2493 here document and before the EOF so that BSD's implementation of Bourne
2494 shell doesn't parse the delimiter as part of the here document.
2495 * doc/.cvsignore: Add cross-options.texi.
2496 * src/getargs.c (usage): Add a blank line after the warning categories.
2497
2498 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2499
2500 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2501
2502 2007-11-05 Akim Demaille <akim@epita.fr>
2503
2504 Remove Id: from bison.1.
2505 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2506 (perl -0777 -pi -e 's/\.PP\nId): New.
2507 (.x.1): Use it to ignore the version control revision.
2508
2509 2007-11-05 Akim Demaille <demaille@gostai.com>
2510
2511 * build-aux/Makefile.am: Ship cross-options.pl.
2512 * doc/Makefile.am: Always refer to cross-options.texi with
2513 $(srcdir).
2514 (MAINTAINERCLEANFILES): Add it.
2515
2516 2007-11-04 Akim Demaille <demaille@gostai.com>
2517
2518 Generate the long/short option cross-table.
2519 * build-aux/cross-options.pl: New.
2520 * doc/Makefile.am (cross-options.texi): New.
2521 * doc/bison.texinfo: Use it.
2522
2523 2007-11-04 Akim Demaille <demaille@gostai.com>
2524
2525 Generate bison.1 using help2man.
2526 * doc/common.x, doc/bison.x: New.
2527 * doc/Makefile.am (bison.1, .x.1): New.
2528 The code is taken from autoconf-2.61/man/Makefile.am.
2529 * configure.ac: Look for help2man.
2530
2531 2007-11-04 Akim Demaille <demaille@gostai.com>
2532
2533 Complete --help.
2534 * src/getargs.c (usage): Document -W, make it clear that -d,
2535 -g and -x have optional arguments.
2536
2537 2007-11-04 Akim Demaille <demaille@gostai.com>
2538
2539 Find sha1sum when named gsha1sum.
2540 * bootstrap (find_tool): New.
2541 ($SHA1SUM): New.
2542
2543 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2544
2545 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2546 at
2547 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2548 * NEWS (2.3a+): Mention.
2549 * data/bison.m4 (b4_pure_if): Don't define it here.
2550 * data/c.m4 (b4_identification): Depend on individual skeletons to
2551 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2552 values of the %define variables api.pure or api.push_pull. Define
2553 YYPURE, YYPUSH, and YYPULL accordingly.
2554 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2555 glr.cc has already defined b4_pure_flag.
2556 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2557 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2558 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2559 * doc/bison.texinfo (Pure Decl): Update.
2560 (Push Decl): Update.
2561 (Decl Summary): Add api.pure to %define entry.
2562 In %pure-parser entry, say it's deprecated and reference %define.
2563 (Pure Calling): Update.
2564 (Error Reporting): Update.
2565 (C++ Scanner Interface): Update.
2566 (How Can I Reset the Parser): Update.
2567 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2568 reference %define.
2569 * src/getargs.c (pure_parser): Remove global variable.
2570 * src/getargs.h (pure_parser): Remove extern.
2571 * src/output.c (prepare): Don't define pure_flag muscle.
2572 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2573 wrapper around `%define api.pure'.
2574 * tests/calc.at (Simple LALR Calculator): Update.
2575 (Simple GLR Calculator): Update.
2576 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2577 Update.
2578 (GLR: Resolve ambiguity, pure, locations): Update.
2579 (GLR: Merge conflicting parses, pure, no locations): Update.
2580 (GLR: Merge conflicting parses, pure, locations): Update.
2581 * tests/glr-regression.at (Uninitialized location when reporting
2582 ambiguity): Update
2583 * tests/input.at (Unused %define api.pure): New test case.
2584 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2585 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2586 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2587
2588 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2589
2590 %define push_pull -> %define api.push_pull. Discussed starting at
2591 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2592 * data/push.c: Expect the new name.
2593 * data/yacc.c: Likewise.
2594 * doc/bison.texinfo (Push Decl): Update.
2595 (Decl Summary): Update %define entry.
2596 (Push Parser Function): Update.
2597 (Pull Parser Function): Update.
2598 (Parser Create Function): Update.
2599 (Parser Delete Function): Update.
2600 * tests/calc.at (Simple LALR Calculator): Update.
2601 * tests/input.at (%define enum variables): Update.
2602 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2603 (Push Parsing: Multiple impure instances): Update.
2604 (Push Parsing: Unsupported Skeletons): Update.
2605 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2606 (Exploding the Stack Size with Malloc): Update.
2607
2608 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2609 other entries some.
2610
2611 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2612
2613 For the XML output's terminal element, rename @number to @token-number,
2614 and add @symbol-number. In the nonterminal element, rename @number to
2615 @symbol-number. Discussed starting at
2616 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2617 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2618 renames.
2619 (xsl:template match="nonterminal"): Likewise.
2620 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2621 (xsl:template match="nonterminal"): Likewise.
2622 * src/print-xml.c (print_grammar): Implement.
2623
2624 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2625
2626 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2627 2007-10-11 change, the child elements here are items not rules.
2628 (xsl:template match="item"): New.
2629 (xsl:template match="rule"): Update for new reduced itemset.
2630 (xsl:template match="point"): Remove.
2631 (xsl:template match="empty"): For consistency with --graph, don't
2632 output "/* empty */".
2633 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2634 line-wrap, don't pass a negative value as first-line-length since this
2635 won't work with the following changes.
2636 (xsl:template name="line-wrap"): Simplify slightly.
2637 (xsl:template name="ws-search"): Eliminate recursion.
2638 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2639 set next to an item whose dot is not at the end of the RHS even if it
2640 happens to be associated with the same rule.
2641
2642 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2643
2644 Add %define lr.keep_unreachable_states.
2645 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2646 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2647 * src/main.c (main): Implement it.
2648 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2649 Extend to test it, and fix a typo.
2650
2651 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2652
2653 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2654 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2655 the example .output text.
2656 * tests/regression.at (Extra lookahead sets in report): Improve wording
2657 of comments.
2658
2659 2007-10-17 Wojciech Polak <polak@gnu.org>
2660
2661 * src/print-xml.c (print_grammar): Renamed
2662 <terminal> and <nonterminal> attributes:
2663 "type" to "number" and "symbol" to "name".
2664 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2665 Use new attribute names.
2666 (xsl:template match="nonterminal"): Likewise.
2667 * data/xslt/xml2xhtml.xsl: Likewise.
2668
2669 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2670
2671 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2672 (Option Cross Key): Likewise.
2673
2674 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2675 next to an item whose dot is not at the end of the RHS even if it
2676 happens to be associated with the same rule.
2677 * src/print.c (print_core): Likewise.
2678 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2679 (Resolved SR Conflicts): Update output.
2680 * tests/regression.at (Extra lookahead sets in report): New test case.
2681
2682 2007-10-11 Wojciech Polak <polak@gnu.org>
2683
2684 * src/print-xml.c (print_core): Remove item set
2685 redundancy.
2686 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2687 Improve processing time. Suggested by Joel E. Denny.
2688 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2689 Write xsl:param "required" attribute as comment.
2690 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2691 (xsl:template match="rule"): Support new reduced itemset.
2692 (xsl:template match="point"): Remove.
2693 * data/xslt/xml2xhtml.xsl: Likewise.
2694
2695 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2696
2697 * src/getargs.c (version): Update copyright year.
2698
2699 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2700
2701 Make xml2dot.xsl and --graph produce the same output.
2702 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2703 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2704 escaped later.
2705 (xsl:template name="output-node"): Use the new escape template instead
2706 of the string-replace template directly.
2707 (xsl:template name="output-edge"): Likewise.
2708 (xsl:template name="escape"): New, escapes backslashes and newlines in
2709 addition to quotation marks.
2710 * src/graphviz.c (start_graph, output_node, output_edge): Add
2711 whitespace to output for legibility.
2712
2713 Make xml2text.xsl and --report produce the same output, and remove the
2714 XML "conflicts" element since a conflict summary is easily extracted
2715 from the automaton.
2716 * data/xslt/bison.xsl: New.
2717 (xsl:template match="state" mode="bison:count-conflicts): New.
2718 * data/xslt/xml2text.xsl: Import bison.xsl.
2719 (xsl:template match="bison-xml-report"): Instead of styling the
2720 "conflicts" element, style the "automaton" element with mode
2721 "conflicts". Unlike the former, the latter lists S/R and R/R
2722 conflicts for a state on the same line.
2723 (xsl:template match="conflicts"): Remove.
2724 (xsl:template match="conflict"): Remove.
2725 (xsl:template match="terminal"): Line-wrap the list of rules in which
2726 the terminal is used.
2727 (xsl:template match="nonterminal"): Likewise for nonterminals.
2728 (xsl:template match="automaton" mode="conflicts"): New.
2729 (xsl:template match="state" mode="conflicts"): New.
2730 (xsl:template name="line-wrap"): New.
2731 (xsl:template name="ws-search"): New.
2732 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2733 (xsl:template match="bison-xml-report"): Instead of styling the
2734 "conflicts" element, style the "automaton" element with mode
2735 "conflicts."
2736 (xsl:template match="conflicts"): Remove.
2737 (xsl:template match="conflict"): Remove.
2738 (xsl:template match="automaton" mode="conflicts"): New.
2739 (xsl:template match="state" mode="conflicts): New.
2740 * src/conflicts.c (conflicts_output_xml): Remove.
2741 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2742 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2743 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2744 the corresponding XSLT is easier. Also, never wrap between a word and
2745 the comma that follows it.
2746
2747 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2748
2749 Improve C++ namespace support. Discussed starting at
2750 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2751 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2752 b4_namespace_close): New macros that interpret the %define variable
2753 "namespace" so its value can contain "::" to indicate nested
2754 namespaces.
2755 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2756 the above macros.
2757 * data/lalr1.cc (b4_namespace): Likewise.
2758 * data/location.cc (b4_namespace): Likewise.
2759 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2760 inside a new table in the general %define entry. Document `%define
2761 namespace' there as well. Point the %name-prefix entry to it since it
2762 explains it more completely in the case of C++.
2763 (C++ Bison Interface): Mention `%define namespace' instead of
2764 %name-prefix.
2765 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2766 entry suffices.
2767 * tests/c++.at (Relative namespace references): New test case.
2768 (Absolute namespace references): New test case.
2769 (Syntactically invalid namespace references): New test case.
2770 * tests/input.at (C++ namespace reference errors): New test case.
2771
2772 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2773
2774 Add syncline support and location accessor to internal %define
2775 interfaces.
2776 * data/bison.m4 (b4_percent_define_get_loc): New.
2777 (b4_percent_define_get_syncline): New.
2778 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2779 (b4_percent_define_default): Record defining location as line 1 rather
2780 than 0 for the sake of synchronizing #line's, and define
2781 b4_percent_define_syncline(VARIABLE).
2782 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2783 * src/muscle_tab.c (muscle_syncline_grow): New.
2784 (muscle_code_grow): Use muscle_syncline_grow.
2785 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2786 define b4_percent_define_syncline(VARIABLE).
2787 (muscle_percent_define_get_loc): New.
2788 (muscle_percent_define_get_syncline): New.
2789 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2790 remove some unused variables.
2791 (muscle_percent_define_default): Record defining location as line 1
2792 rather than 0 for the sake of synchronizing #line's, and define
2793 b4_percent_define_syncline(VARIABLE).
2794 (muscle_percent_define_check_values): Use
2795 muscle_percent_define_get_loc.
2796 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2797 (muscle_percent_define_get_syncline): Prototype.
2798 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2799 defaults): Update output for location change.
2800 (Complaining during macro argument expansion): Extend to test
2801 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2802
2803 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2804
2805 Fix some error-reporting macro bugs.
2806 * data/bison.m4 (b4_cat): New.
2807 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2808 to stdout so they don't become arguments to other macros. Update
2809 comments and add examples.
2810 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2811 add examples.
2812 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2813 after printing the error directive so that M4 doesn't report subsequent
2814 problems that are induced by this problem.
2815 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2816 instead of just in them. Recognize @\n in both places. Both expand to
2817 the empty string. Needed by b4_cat.
2818 * tests/skeletons.at (Complaining during macro argument expansion):
2819 New test case.
2820 (Fatal errors make M4 exit immediately): New test case.
2821
2822 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2823
2824 Implement --print-datadir.
2825 * src/getargs.c (usage): Mention.
2826 (PRINT_DATADIR_OPTION): New anonymous enum member.
2827 (long_options): Add entry for it.
2828 (getargs): Add case for it calling compute_pkgdatadir.
2829 * src/output.c (output_skeleton): Encapsulate data directory
2830 computation from here...
2831 (prepare): ... and from here...
2832 (compute_pkgdatadir): ... into this new function.
2833 * src/output.h (compute_pkgdatadir): Prototype.
2834
2835 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2836
2837 * src/print-xml.c (escape_bufs): New static global variable
2838 replacing...
2839 (xml_escape_n): ... the static local variable buf here.
2840 (print_xml): Free memory for escape_bufs.
2841 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2842
2843 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2844
2845 Replace `%push-parser' and `%push-pull-parser' with
2846 `%define push_pull "push"' and `%define push_pull "both"'.
2847 `%define push_pull "pull"' is the default.
2848 * doc/bison.texinfo (Push Decl, Push Parser Function,
2849 Pull Parser Function, Parser Create Function, Parser Delete Function):
2850 Update declarations.
2851 (Decl Summary, Table of Symbols): Replace %push-parser and
2852 %push-pull-parser entries with a %define push_pull entry.
2853 * data/bison.m4 (b4_percent_define_check_values): New macro.
2854 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2855 definitions...
2856 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2857 definitions...
2858 * data/push.c: ... to here and compute them from the value of the
2859 %define variable push_pull.
2860 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2861 parsing requests here...
2862 * data/yacc.c: ... hack this to switch to push.c any time
2863 b4_use_push_pull_flag or the %define variable push_pull is set. This
2864 will go away when we mv push.c yacc.c.
2865 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2866 push parsing is not supported since unused %define variables are
2867 reported anyway.
2868 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2869 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2870 comments for consistency with b4_percent_define_check_values.
2871 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2872 muscles.
2873 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2874 Remove.
2875 (prologue_declaration): Remove %push-parser and %push-pull-parser
2876 rules.
2877 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2878 * tests/calc.at: Update declarations.
2879 * tests/input.at (%define enum variables): New test case.
2880 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2881 declaration.
2882 (Push Parsing: Multiple impure instances): Update declaration.
2883 (Push Parsing: Unsupported Skeletons): New test case.
2884 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2885 declaration.
2886 (Exploding the Stack Size with Malloc): Update declaration.
2887
2888 2007-09-24 Wojciech Polak <polak@gnu.org>
2889
2890 Add XSLT transformations.
2891
2892 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2893 * data/xslt/xml2text.xsl: Transform XML into plain text.
2894 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2895 * data/Makefile.am (xsltdir): New variable.
2896 (dist_xslt_DATA): Add xslt/*.xsl files.
2897
2898 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2899
2900 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2901 Problem reported by Wojciech Polak.
2902 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2903 (xml_printf): Undo change I made on 21 September; that is,
2904 indent 2 spaces, not 1.
2905
2906 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2907
2908 Pacify ./configure --enable-gcc-warnings.
2909 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2910 `char const *' instead of `char *'.
2911 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2912 local variable `sep'.
2913
2914 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2915
2916 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2917 elsewhere.
2918 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2919 (xml_printf): Indent just 1 space for level.
2920 (e_char, xlate_char): Remove.
2921 (xml_escape_string): Rewrite to avoid undefined behavior (used
2922 storage that was freed from the stack).
2923 (xml_escape_n): Don't bother checking for subscript error.
2924
2925 2007-09-21 Wojciech Polak <polak@gnu.org>
2926
2927 Add Bison XML Automaton Report.
2928
2929 Add support for an -x option to generate an XML report.
2930 It is not documented yet.
2931 * src/print-xml.c: New file.
2932 * src/print-xml.h: Likewise.
2933 * lib/timevar.def (TV_XML): New var.
2934 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2935 * src/conflicts.c: Include print-xml.h.
2936 (solved_conflicts_xml_obstack): New var.
2937 (log_resolution, conflicts_solve, conflicts_free):
2938 Add support for XML report.
2939 (conflicts_output_val): New function.
2940 * src/conflicts.h (conflicts_output_val): New decl.
2941 * src/files.c (spec_xml_file): New var.
2942 (compute_output_file_names, output_file_names_free): Add XML support.
2943 * src/files.h (spec_xml_file): New decl.
2944 * src/getargs.c (xml_flag): New var.
2945 (usage, short_options, long_options, getargs): Add XML support.
2946 * src/getargs.h (xml_flag): New decl.
2947 * src/gram.c: Include print-xml.h.
2948 (rule_lhs_print_xml, rule_rhs_print_xml):
2949 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2950 New functions.
2951 * src/gram.h: Declare external ones.
2952 * src/main.c: Include print-xml.h.
2953 (main): Add XML support.
2954 * src/reduce.c: Include print-xml.h.
2955 (reduce_xml): New function.
2956 * src/reduce.h: Declare it.
2957 * src/state.c: Include print-xml.h.
2958 (state_new): Add XML support.
2959 (state_rule_lookahead_tokens_print_xml): New function.
2960 * src/state.h: Declare it.
2961 (struct state): New member solved_conflicts_xml.
2962 * src/symtab.c (symbol_class_get_string): New function.
2963 * src/symtab.h: Declare it.
2964
2965 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2966
2967 * GNUmakefile: Switch to coreutils's version.
2968 * bootstrap: Likewise.
2969 * Makefile.cfg: Adjust to new GNUmakefile.
2970 * README-hacking: Likewise.
2971
2972 Import from gnulib:
2973
2974 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2975 Bruno Haible <bruno@clisp.org>
2976
2977 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2978 and is a script that invokes bison. Tighten the code. Add comments.
2979
2980 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2981
2982 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2983 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2984 * doc/bison.texinfo (Decl Summary): Fix.
2985 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2986 * tests/input.at (Boolean %define variables): Update output.
2987 * tests/skeletons.at (%define boolean variables: invalid skeleton
2988 defaults): Rename to...
2989 (%define Boolean variables: invalid skeleton defaults): ... this and
2990 update output.
2991
2992 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2993
2994 In impure push mode, don't allow more than one yypstate to be allocated
2995 since multiple impure parsers would corrupt yynerrs.
2996 * data/push.c (yypstate_allocated): New static global variable
2997 initialized to 0.
2998 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2999 exhaustion if yypstate_allocated is 1, but still return 2.
3000 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
3001 already 1. Otherwise, set it to 1.
3002 (yypstate_delete): Set it to 0.
3003 * tests/push.at (Push Parsing: Multiple impure instances): New test
3004 case.
3005
3006 2007-08-17 Bob Rossi <bob@brasko.net>
3007
3008 * doc/bison.texinfo (Push Decl): Document the push parser.
3009 (Table of Symbols): Ditto.
3010 (Pure Decl): Ditto.
3011 (Decl Summary): Ditto.
3012 (Multiple Parsers, Push Parser Function, Pull Parser Function,
3013 Parser Create Function, Parser Delete Function):
3014 Add new push parser symbols.
3015 (Table of Symbols): Document push-parser, push-pull-parser,
3016 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
3017
3018 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
3019
3020 Update to GPLv3.
3021 * doc/gpl-3.0.texi: New file.
3022 * doc/gpl.texi: Remove.
3023 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
3024 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
3025 * README-hacking, TODO, bootstrap, bootstrap.conf:
3026 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
3027 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
3028 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
3029 * data/lalr1.cc, data/lalr1.java, data/location.cc:
3030 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
3031 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
3032 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
3033 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
3034 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
3035 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
3036 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
3037 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
3038 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
3039 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
3040 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
3041 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
3042 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
3043 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
3044 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
3045 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
3046 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
3047 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
3048 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
3049 * src/complain.c, src/complain.h, src/conflicts.c:
3050 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
3051 * src/files.h, src/flex-scanner.h, src/getargs.c:
3052 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
3053 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
3054 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
3055 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
3056 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
3057 * src/print.c, src/print.h, src/print_graph.c:
3058 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
3059 * src/reduce.h, src/relation.c, src/relation.h:
3060 * src/revision.h, src/scan-code.h, src/scan-code.l:
3061 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
3062 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
3063 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
3064 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
3065 * tests/Makefile.am, tests/actions.at, tests/c++.at:
3066 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
3067 * tests/existing.at, tests/glr-regression.at:
3068 * tests/headers.at, tests/input.at, tests/java.at:
3069 * tests/local.at, tests/output.at, tests/push.at:
3070 * tests/reduce.at, tests/regression.at, tests/sets.at:
3071 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
3072 * tests/torture.at:
3073 Update to GPLv3.
3074
3075 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3076
3077 Get rid of broken %no-parser, -n, and --no-parser implementation and
3078 documentation.
3079 * TODO: Don't mention them.
3080 * doc/bison.1: Likewise.
3081 * doc/bison.texinfo (Decl Summary): Likewise.
3082 (Bison Options): Likewise.
3083 (Option Cross Key): Likewise.
3084 * src/getargs.c (no_parser_flag): Remove global variable.
3085 (usage): Don't print description of -n and --no-parser.
3086 (long_options): Remove --no-parser entry here.
3087 (getargs): Remove -n case in the switch here.
3088 * src/getargs.h (no_parser_flag): Remove extern.
3089 * tests/regression.at (Web2c Actions): Remove comment that mentions
3090 --no-parser.
3091
3092 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
3093
3094 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
3095 name user variables starting with `yy'. Just pass NULL instead of a
3096 dummy local &yylval to yypush_parse.
3097 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
3098 starting with `yy'.
3099
3100 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
3101
3102 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
3103 true since it's then always used regardless of whether yyoverflow is
3104 defined. Reported by Christian Burger at
3105 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
3106 * THANKS: Add Christian Burger.
3107
3108 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3109 node names: say "Decl Summary" not "Bison Declaration Summary".
3110
3111 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
3112
3113 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
3114 determine whether this function has already complained about an invalid
3115 value for a %define boolean variable, don't check whether Bison has
3116 ever examined the value. As written, the check was a tautology.
3117 Instead, record and check for this complaint using a separate muscle.
3118
3119 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3120
3121 Fix push parsing memory leak reported by Brandon Lucia at
3122 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
3123 * THANKS: Add Brandon Lucia.
3124 * data/push.c (yypstate_delete): Free the stack if it was reallocated
3125 but the parse never completed and thus freed it.
3126 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
3127 * tests/testsuite.at: Include push.at.
3128 * test/push.at: New.
3129 (Push Parsing: Memory Leak for Early Deletion): New test case.
3130
3131 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
3132
3133 Improve handling of multiple S/R conflicts in the same state and of S/R
3134 conflicts involving multiple reductions.
3135 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
3136 set for a state here or Bison will abort if it is reassigned on a
3137 later conflicted reduction in the same state.
3138 Similarly, don't finalize and assign the solved conflicts report here
3139 or it will be lost if it is reassigned on a later conflicted reduction
3140 in the same state.
3141 (set_conflicts): Instead, assign them both here after all S/R conflicts
3142 in the state have been fully examined.
3143 * src/print.c (shift_set): Rename to...
3144 (no_reduce_set): ... this.
3145 (print_reductions): Update for rename, and add %nonassoc error action
3146 tokens to no_reduce_set so that, when printing the first remaining
3147 reduction on an error action token, the reduction is enclosed in
3148 brackets.
3149 (print_results): Update for rename.
3150 * tests/conflicts.at (Solved conflicts report for multiple reductions
3151 in a state): New test case.
3152 (%nonassoc error actions for multiple reductions in a state): New test
3153 case.
3154
3155 * src/main.c (main): Don't depend on C99 features.
3156
3157 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3158
3159 * build-aux/.cvsignore: Add compile.
3160 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
3161 uniwidth.
3162
3163 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
3164
3165 * bootstrap (slurp): Create target directories that don't exist.
3166 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3167
3168 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3169
3170 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3171 than item number.
3172 * closure.c (closure): Likewise.
3173 * state.h (reductions): Comment sorting of rules.
3174 (state): Comment sorting of items.
3175
3176 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3177
3178 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3179 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3180 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3181 definition in order to avoid Gnulib headers since we don't use config.h
3182 here.
3183 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3184 rather than AT_DATA so that config.h is included.
3185
3186 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3187
3188 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3189 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3190 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3191 and so that YYFPRINTF is guaranteed to be defined here.
3192
3193 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3194
3195 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3196 with...
3197 (muscle_percent_define_check_values): ... this more helpful function.
3198 Again, it's not used yet, but it will be.
3199 * src/muscle_tab.h: Likewise.
3200
3201 Improve some comments in parser table construction.
3202 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3203 (generate_states): Don't mention ruleset, which is internal to closure.
3204 * src/closure.c (closure): Explain sorting of core and itemset, which
3205 is required for this function to behave correctly.
3206 * src/closure.h (closure): Mention sorting.
3207
3208 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3209
3210 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3211 move the check for disabled transitions to an aver since conflict
3212 resolution hasn't happened yet.
3213
3214 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3215 labels a state as inconsistent just because it has error transitions.
3216 The original form of this check appeared in revision 1.1 of lalr.c,
3217 which was committed on 1991-12-21. Now (at least), changing the
3218 consistency label on such a state appears to have no useful effect in
3219 any of the places it is examined, which I enumerate below. The key
3220 point to understanding each item in this enumeration is that a state
3221 with an error transition is labelled consistent in the first place only
3222 if it has no rules, so the check cannot matter for states that have
3223 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3224 to try to identify its conflicts, and a state must have *rules* to have
3225 conflicts. (2) Labelling a state as inconsistent will affect how
3226 action_row sets the default *rule* for the state. (3) Labelling a
3227 state as inconsistent will cause build_relations to add lookback edges
3228 to *rules* in that state.
3229 * src/state.h (struct state): Word the comment for member consistent
3230 more carefully.
3231
3232 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3233
3234 Don't depend on C99 features.
3235 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3236 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3237 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3238 * src/state.c (state_mark_reachable_states): Fix for-loop.
3239 (state_remove_unreachable_states): Fix for-loop.
3240
3241 Don't widen struct state with member reachable just to temporarily
3242 record reachability. Instead, use a local bitset.
3243 * src/state.h (struct state): Remove member.
3244 * src/state.c (state_new): Don't initialize it.
3245 (state_mark_reachable_states): Rename to...
3246 (state_record_reachable_states): ... this, and use bitset.
3247 (state_remove_unreachable_states): Use bitset.
3248
3249 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3250
3251 * src/Makefile.am (yacc): Quote target action commands properly so
3252 that the yacc script isn't corrupt. Reported by Hans Aberg at
3253 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3254
3255 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3256 the case of pure parsers. Reported by Frans Englich at
3257 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3258 * THANKS: Add Frans Englich.
3259
3260 * NEWS (2.3a+): In the %code entry, reference section `Bison
3261 Declaration Summary' from the manual now since the %code summary has
3262 moved there.
3263 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3264 in the rules section must be terminated by semicolons.
3265
3266 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3267
3268 Extend the front-end API for %define variables to more completely
3269 mirror the back-end. This will be useful in the future.
3270 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3271 Update comments to mention the new front-end counterparts of these
3272 macros.
3273 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3274 for muscle_string_decode and muscle_location_decode.
3275 (muscle_string_decode): New static function.
3276 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3277 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3278 functions.
3279 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3280 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3281 implementation more closely.
3282 (muscle_percent_define_invalid_value): New function.
3283 * src/muscle_tab.h (muscle_percent_define_get,
3284 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3285 Prototype.
3286
3287 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3288
3289 * NEWS (2.3a+): Mention yesterday's state-removal change.
3290 (2.3a): Remove the %language entry, which was added after 2.3a.
3291 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3292 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3293 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3294 tests/existing.at: Update copyright date.
3295
3296 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3297
3298 If conflict resolution makes states unreachable, remove those states,
3299 report rules that are then unused, and don't report conflicts in those
3300 states.
3301 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3302 New global function.
3303 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3304 function.
3305 * src/main.c (main): After conflict resolution, remove the unreachable
3306 states and update all data structures that reference states by number.
3307 * src/state.c (state_new): Initialize each state's reachable member to
3308 false.
3309 (state_mark_reachable_states): New static function.
3310 (state_remove_unreachable_states): New global function.
3311 * src/state.h (struct state): Add member bool reachable.
3312 (state_remove_unreachable_states): Prototype.
3313 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3314 New test case.
3315 * tests/existing.at (GNU pic Grammar): Update test case output now that
3316 an unused rule is discovered.
3317
3318 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3319
3320 Minor code cleanup in parser table construction.
3321 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3322 (new_itemsets, save_reductions): Update for rename to nitemset.
3323 * src/closure.c (nritemset): Rename to...
3324 (nitemset): ... this since the "r" appears to meaningless and isn't
3325 used in the comments.
3326 (closure): Update for rename.
3327 * src/closure.h (nritemset): Update extern to...
3328 (nitemset): ... this.
3329 * src/lalr.c (LA): Fix a typo in comments.
3330 * src/print.c (print_core): Update for rename to nitemset.
3331 * src/print_graph.c (print_graph): Likewise.
3332 * src/state.h: Fix some typos in header comments.
3333
3334 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3335
3336 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3337 still sticks to ASCII. Sorry!
3338
3339 * README-hacking: New file, taken mostly from coreutils, with changes
3340 for Bison. Contains much of the contents of:
3341 * README-cvs: Remove.
3342 * bootstrap: Sync from gnulib.
3343 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3344 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3345
3346 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3347
3348 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3349 Setzer.
3350 (Java Differences): Fix some typos.
3351 * THANKS: Add Sebastian Setzer.
3352
3353 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3354
3355 * data/java.m4 (b4_single_class_if): Remove.
3356 (b4_abstract_if): Look at "%define abstract".
3357 (b4_lexer_if): New.
3358 (b4_union_name): Rename...
3359 (b4_yystype): ... to this. Map to "%define stype".
3360 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3361 b4_maybe_throws): Fix quoting.
3362 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3363 * data/lalr1.java (Lexer interface): Always define.
3364 (Lexer interface within parser class): Remove.
3365 (YYLexer class): New, used when "%code lexer" is present.
3366 (constructor): When "%code lexer" is used, pass %lex-param
3367 to the lexer constructor.
3368 (yylex, yyparse): Remove %lex-param from method invocations
3369 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3370
3371 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3372 abstract". Rename "%define union_name" to "%define stype".
3373 Rename method names according to previous patch.
3374 (Java Scanner Interface): Describe "%code lexer" instead of
3375 "%pure-parser" and "%define single_class".
3376 (Java Differences): Mention "%code lexer".
3377
3378 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3379 Include scanner here, using macros from tests/local.at.
3380 (AT_DATA_CALC_Y): Remove final argument.
3381 (_AT_CHECK_JAVA_CALC): Likewise.
3382 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3383 of %locations and %error-verbose.
3384 (main): Test with and without %lex-param.
3385 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3386 (AT_BISON_OPTION_POPDEFS): Pop it.
3387
3388 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3389
3390 DJGPP spefic issue. Inhibit the use of disallowed characters for
3391 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3392 and concern testsuite case 46.
3393 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3394 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3395 * djgpp/config.bat: Inhibit the use of disallowed characters.
3396
3397 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3398
3399 Miscellaneous %define and %code cleanup.
3400 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3401 values are interpreted.
3402 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3403 documentation a little more.
3404 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3405 muscle_percent_define_insert, muscle_percent_code_grow): New
3406 functions/macros.
3407 * src/muscle_tab.h (muscle_percent_define_insert,
3408 muscle_percent_code_grow): Prototype.
3409 * src/parse-gram.y (prologue_declaration): Use
3410 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3411 %define and %code directives.
3412
3413 Make it easy to share %define boolean variables between the front-end
3414 and back-end. Though not used yet, this will be useful in the future.
3415 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3416 Bison uses of names rather than just skeleton uses of names.
3417 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3418 b4_percent_define_skeleton_variables(VARIABLE) to
3419 b4_percent_define_bison_variables(VARIABLE).
3420 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3421 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3422 b4_percent_code_bison_qualifiers(QUALIFIER).
3423 (b4_check_user_names_wrap): Update for renames.
3424 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3425 muscle_percent_define_default): New functions mimicking
3426 b4_percent_define_flag_if and b4_percent_define_default.
3427
3428 For %define variables, report locations for invalid values and
3429 redefinitions.
3430 * data/bison.m4 (b4_percent_define_flag_if): Read
3431 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3432 value for VARIABLE.
3433 (b4_percent_define_default): Save a special location in
3434 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3435 must later be reported as invalid.
3436 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3437 functions.
3438 (muscle_percent_define_insert): Record the location of VARIABLE in
3439 muscle percent_define_loc(VARIABLE), and use it to report the previous
3440 location for a redefinition.
3441 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3442 (muscle_percent_define_default): Update like b4_percent_define_default.
3443 (muscle_grow_user_name_list): Rename to...
3444 (muscle_user_name_list_grow): ... this for consistency and use
3445 muscle_location_grow.
3446 * src/muscle_tab.h (muscle_location_grow): Prototype.
3447 * tests/input.at (%define errors): Update expected output.
3448 * tests/skeletons.at (%define boolean variables: invalid skeleton
3449 defaults): New test case.
3450
3451 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3452
3453 * src/print.c (lookahead_set, state_default_rule): Remove.
3454 (print_reductions): Replace state_default_rule invocation with
3455 equivalent use of yydefact, which was computed in token_actions in
3456 tables.c.
3457 (print_results): Don't allocate lookahead_set.
3458
3459 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3460
3461 * data/lalr1.java: Prefix all private members with yy.
3462
3463 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3464
3465 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3466 Sebastien Fricker at
3467 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3468 * THANKS: Add Sebastien Fricker.
3469 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3470 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3471 accept a variable number of arguments.
3472
3473 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3474
3475 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3476
3477 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3478
3479 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3480 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3481 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3482
3483 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3484
3485 Undo my 2007-02-07 change, switching back to the c-strcase module
3486 introduced in the 2007-02-03 change. Bruno Haible reported that
3487 the 2007-02-07 change would be dangerous in Turkish if we add a
3488 language whose name contains "i", since "i" is not lowercase "I"
3489 in Turkish.
3490 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3491 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3492 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3493 * m4/.cvsignore: Remove strcase.m4.
3494 * src/getargs.c: Revert 2007-02-07 change, as follows.
3495 Include c-strcase.h.
3496 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3497
3498 2007-02-11 Bruno Haible <bruno@clisp.org>
3499
3500 Enable the Java related testsuite tests when the only Java compiler
3501 found is a gcj < 4.3. Discussed at
3502 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3503 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3504
3505 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3506
3507 * data/Makefile.am: Update copyright date.
3508 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3509 yypstate_new returns NULL.
3510 (yypstate_new): Return NULL if malloc does.
3511 * src/reader.c (packgram): Move translation of rule actions from the
3512 beginning of packgram to...
3513 (check_and_convert_grammar): ... here right before packgram is invoked
3514 so it's easier to write more complete comments, and remove redundant
3515 code.
3516
3517 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3518
3519 As in semantic actions, make @$ in %initial-action, %destructor, and
3520 %printer imply %locations.
3521 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3522 scanning @$.
3523 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3524 (@$ in %initial-action implies %locations,
3525 @$ in %destructor implies %locations,
3526 @$ in %printer implies %locations): ... these new test cases.
3527
3528 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3529
3530 Undo most of the 2007-02-03 change, switching to the strcase module
3531 now that gnulib strcase has been fixed.
3532 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3533 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3534 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3535 * m4/.cvsignore: Add strcase.m4.
3536 * src/getargs.c: Revert 2007-02-03 change, as follows.
3537 Don't include c-strcase.h.
3538 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3539 strcasecmp has "unspecified behavior" outside the POSIX locale,
3540 but it works fine in practice if at least one argument is ASCII,
3541 as is the case in Bison.
3542
3543 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3544
3545 * tests/java.at: Skip tests if only one of javac/java is present.
3546 Reported by Joel E. Denny.
3547 * tests/atlocal.in: Adjust copyright years.
3548
3549 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3550
3551 * data/lalr1.java (Stack): Work around old verifiers that disallow
3552 access to the private fields of an inner class, from the outer class.
3553 We can make Stack's fields public because user code doesn't have access
3554 to the instance of Stack used by parse(). Reported by Paul Eggert.
3555
3556 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3557
3558 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3559 the right spot for these files?
3560 * bootstrap.conf (gnulib_modules): Add c-strcase.
3561 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3562 c-strncasecmp.c.
3563 * src/getargs.c: Include c-strcase.h.
3564 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3565 to avoid unspecified behavior.
3566
3567 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3568
3569 * doc/bison.texinfo (Decl Summary): Correct typo.
3570
3571 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3572
3573 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3574 Complain if the value does not match empty, "true" or "false".
3575 * data/c++.m4: Adjust default definitions of %define variables.
3576 * data/java.m4: Adjust default definitions of %define variables.
3577 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3578 to above behavior.
3579 * tests/input.at (Boolean %define variables): Test new behavior.
3580
3581 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3582
3583 * NEWS: Mention java.
3584 * TODO: Remove things that are done.
3585 * bootstrap.conf: Add javacomp-script and javaexec-script.
3586 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3587
3588 * data/Makefile.am: Add new files.
3589 * data/java-skel.m4: New.
3590 * data/java.m4: New.
3591 * data/lalr1.java: New.
3592
3593 * doc/bison.texinfo: Put "A Complete C++ Example" under
3594 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3595 under Other Languages.
3596
3597 * src/getargs.c (valid_languages): Add Java.
3598 * src/getargs.h (struct bison_language): Update size of string fields.
3599
3600 * tests/Makefile.am: Add java.at.
3601 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3602 * tests/java.at: New.
3603 * tests/testsuite.at: Include it.
3604
3605 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3606
3607 Clean up.
3608 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3609 at_directive_argv arguments so these no longer have to be global
3610 variables. Also, update the implementation for the following changes.
3611 (fail_for_at_directive_too_many_args,
3612 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3613 (at_directive_name): Remove as at_directive_argv[0] will be used for
3614 this now.
3615 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3616 for the directive name.
3617 (at_directive_argc, at_directive_argv): Make these local within
3618 skel_lex instead of global.
3619 (INITIAL): Update directive start action for above changes.
3620 (SC_AT_DIRECTIVE_ARG): Rename to...
3621 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3622 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3623 (scan_skel): Move yylex_destroy to...
3624 (skel_scanner_free): ... here.
3625 * tests/skeletons.at (installed skeleton file name): Rename to...
3626 (installed skeleton file names): ... this.
3627
3628 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3629
3630 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3631 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3632 Summary" not "Directives".
3633 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3634 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3635 since the former is now the more complete one.
3636 (Prologue Alternatives): Likewise and do the same for %defines.
3637 (Table of Symbols): Add summary of %code, add summary of %define, and
3638 move full %code documentation to...
3639 (Decl Summary): ... here for consistency with other entries in these
3640 sections.
3641 Move %define entry in order to keep this list alphabetized.
3642 Reword %define entry a little to put less emphasis on the skeleton
3643 concept, which most users shouldn't have to think about.
3644
3645 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3646
3647 Adjust to recent gnulib changes.
3648 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3649 Add string.h, string_.h, unistd_.h, wchar_.h.
3650 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3651 * src/system.h: Don't include <stpcpy.h>; this is now done by
3652 <string.h>.
3653
3654 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3655
3656 Simplify implementation of unqualified %code, implement macros for
3657 uniform treatment of boolean %define flags. Document %define.
3658 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3659 b4_percent_code_ifdef): New.
3660 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3661 * data/c++.m4: Define default value for global_tokens_and_yystype.
3662 * data/glr.cc: Likewise.
3663 * data/location.cc: Use b4_percent_define_flag_if.
3664
3665 * doc/bison.texinfo (Decl Summary): Document %define.
3666
3667 * src/parse-gram.y (Unqualified %code): Change muscle name to
3668 b4_percent_code().
3669 (content.opt): Default to empty.
3670
3671 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3672
3673 Implement support for relative and absolute skeleton file names.
3674 Discussed starting at
3675 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3676 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3677 (Bison Options): Document in --skeleton entry.
3678 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3679 full_skeleton can't necessarily hold all of pkgdatadir.
3680 If the specified skeleton file name contains a `/', don't prepend
3681 pkgdatadir.
3682 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3683 file name contains a `/', prepend the grammar file directory.
3684 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3685 * skeletons.at: New file.
3686 (relative skeleton file names): New test case.
3687 (installed skeleton file names): New test case.
3688 * tests/testsuite.at: Include skeletons.at.
3689
3690 * bootstrap: Update copyright to 2007.
3691
3692 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3693
3694 * bootstrap: Remove occurrences of .#bootmp from the files.
3695
3696 2007-01-17 Akim Demaille <akim@epita.fr>
3697
3698 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3699 nonterminals.
3700 Use per-type %printer.
3701
3702 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3703
3704 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3705 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3706 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3707 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3708 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3709 tests/glr-regression.at, tests/input.at, tests/local.at,
3710 tests/output.at, tests/torture.at: Update copyright to 2007.
3711
3712 2007-01-16 Akim Demaille <akim@epita.fr>
3713
3714 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3715 error code.
3716 (Calc++ Scanner): Exit with failure if we can't open the input
3717 file.
3718 Accept "-" standing for stdin.
3719 (Calc++ Top Level): Print the result only if the parsing was
3720 successful.
3721
3722 2007-01-16 Akim Demaille <akim@epita.fr>
3723
3724 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3725
3726 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3727 and Joel E. Denny <jdenny@ces.clemson.edu>
3728
3729 Clean up %define and %code implementation in M4 some. Most
3730 importantly, rename all related macros to be in the b4_percent_define
3731 and b4_percent_code namespaces. Also, complete support for `.' in
3732 %define variable names and %code qualifiers.
3733 * data/bison.m4 (b4_check_user_names): Check for special
3734 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3735 m4_foreach loops.
3736 (b4_get_percent_define, b4_get_percent_code): Rename to...
3737 (b4_percent_define_get, b4_percent_code_get): ... these.
3738 Extend documentation with examples.
3739 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3740 b4_percent_define_skeleton_variables and
3741 b4_percent_code_skeleton_qualifiers.
3742 Expect any value for the %define variable `foo' to be stored in the
3743 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3744 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3745 expect any unqualified %code blocks to be stored in a macro named
3746 `b4_percent_code_unqualified'.
3747 Use m4_indir so that %define variable names and %code qualifiers can
3748 contain `.', which is allowed by the grammar parser.
3749 (b4_percent_define_default): New macro to set a default value for a
3750 %define variable.
3751 (m4_wrap): Update wrapped code, and fix some underquoting.
3752 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3753 Expect grammar uses of %define variables and %code qualifiers to be
3754 defined in b4_percent_define_user_variables and
3755 b4_percent_code_user_qualifiers.
3756 * data/c++.m4: Use b4_percent_define_default rather than
3757 m4_define_default. Fix some underquoting. Skeleton usage of %define
3758 variable define_location_comparison now implies skeleton usage of
3759 %define variable filename_type.
3760 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3761 data/push.c, data/yacc.c: Update macro names.
3762 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3763 muscle names.
3764
3765 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3766
3767 DJGPP specific issues.
3768
3769 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3770 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3771
3772 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3773
3774 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3775 run parsers in all tests so that Valgrind is invoked during
3776 maintainer-check-valgrind.
3777 (Duplicate representation of merged trees): Free all semantic values.
3778 (Duplicated user destructor for lookahead): Likewise.
3779
3780 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3781
3782 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3783 command-line prefix.
3784 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3785 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3786 miss Valgrind messages.
3787 (Exploding the Stack Size with Malloc): Likewise.
3788
3789 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3790
3791 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3792 locals. Reported by Juan Manuel Guerrero at
3793 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3794 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3795 Fix some indentation also.
3796 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3797 explaining this issue.
3798
3799 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3800 and Joel E. Denny <jdenny@ces.clemson.edu>
3801
3802 Simplify union and prologue handling, and escape union and lex/parse
3803 params with digraphs.
3804 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3805 values to the empty string since these are no longer guaranteed
3806 initialized by the front-end.
3807 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3808 braces around b4_user_stype since this is no longer done by the
3809 front-end.
3810 * src/files.c, src/files.h (pre_prologue_obstack,
3811 post_prologue_obstack): Remove.
3812 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3813 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3814 with digraphs. This fixes lex params and parse params.
3815 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3816 * src/output.c (prepare): Remove muscle insertion of the prologues.
3817 (output): Remove freeing of pre_prologue_obstack and
3818 post_prologue_obstack.
3819 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3820 than prologue_augment for prologue parsing so you don't need prologue
3821 obstacks.
3822 (grammar_declaration): For %union RHS, use `braceless' instead of
3823 "{...}" so that braces are already stripped and code is escaped with
3824 digraphs.
3825 * src/reader.c (prologue_augment): Remove.
3826 (reader): Remove initialization of pre_prologue_obstack and
3827 post_prologue_obstack.
3828 * src/reader.h (prologue_augment): Remove.
3829
3830 * data/c.m4: Remove stray parenthesis.
3831
3832 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3833
3834 Remove quotes from variables names in %define directives and from
3835 qualifiers in %code directives, and restrict the characters that are
3836 allowed in them to M4-friendly ones. For %define, continue to support
3837 the quoted form as a deprecated feature. Discussed starting at
3838 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3839 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3840 %code.
3841 * doc/bison.texinfo (Prologue Alternatives): Update.
3842 (Decl Summary): In %defines entry, update mention of `%code requires'
3843 and `%code provides'.
3844 (C++ Location Values): Update %define uses.
3845 (Calc++ Parser Interface): Likewise.
3846 (Calc++ Parser): Likewise, and update `%code requires' uses.
3847 (Table of Symbols): Update %code documentation.
3848 * src/parse-gram.y (prologue_declaration): For %define variables, use
3849 `variable' instead of `STRING'.
3850 (grammar_declaration): For %code qualifiers, use `ID' instead of
3851 `STRING'.
3852 (variable): New nonterminal that takes an `ID' or a `STRING'.
3853 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3854 and %define uses.
3855 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3856 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3857 (%define errors): Update %define uses.
3858
3859 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3860
3861 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3862 instead of muscle_insert for %define values so that M4-special
3863 characters are replaced with digraphs.
3864 * tests/input.at (%define errors): Extend to check weird values.
3865
3866 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3867
3868 Instead of having skeletons declare all valid %define variables and
3869 %code qualifiers, provide macros that retrieve the associated values
3870 and build these lists automatically. Thus Bison will now warn when a
3871 variable or qualifier is not used by the skeleton in the current
3872 invocation regardless of whether it might sometimes be used by that
3873 skeleton in other invocations. Also, move all %define value macros to
3874 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3875 form, which is replaced by %code.
3876 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3877 (b4_check_user_names): ... this, and change the series of valid name
3878 arguments to a single list argument for names used in the skeleton
3879 similar to the existing list argument for names used in the grammar.
3880 Warn instead of complaining.
3881 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3882 values and %code code, to format %code code properly, and to build
3883 lists of all %define variables and %code qualifiers used in the
3884 skeleton: b4_skeleton_percent_define_variables and
3885 b4_skeleton_percent_code_qualifiers.
3886 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3887 Remove, and...
3888 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3889 the skeleton names lists can finish building first. In place of
3890 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3891 expect the lists b4_user_percent_define_variables and
3892 b4_user_percent_code_qualifiers.
3893 * data/c++.m4: Where setting default values for b4_parser_class_name,
3894 b4_location_type, b4_filename_type, b4_namespace, and
3895 b4_define_location_comparison, update their names to the
3896 b4_percent_define_ namespace.
3897 * data/glr.c: Don't use b4_check_percent_define_variables and
3898 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3899 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3900 (b4_parser_class_name, b4_namespace): Define these using
3901 b4_get_percent_define for parser_class_name and namespace.
3902 * data/location.cc: Use b4_get_percent_define.
3903 * data/push.c: Don't use b4_check_percent_define_variables and
3904 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3905 * data/yacc.c: Likewise, and don't call m4_exit in
3906 b4_use_push_for_pull_if or m4_wrap code will never execute.
3907 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3908 Rename to...
3909 (muscle_grow_user_name_list): ... this for consistency with the
3910 terminology used in bison.m4.
3911 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3912 %define variable names, and rename muscle used_percent_define_variables
3913 to user_percent_define_variables.
3914 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3915 user_percent_code_qualifiers.
3916 (content): Remove.
3917 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3918 {CODE} form is no longer accepted.
3919 * tests/input.at (Reject bad %code qualifiers): Rename to...
3920 (Reject unused %code qualifiers): ... this, and update test output.
3921 (%define error): Update test output.
3922
3923 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3924
3925 Check for unrecognized %define variables similar to checking for
3926 unrecognized %code qualifiers. Check for redefined %define variables.
3927 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3928 generalizes...
3929 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3930 (b4_check_percent_define_variables): New, also wraps it.
3931 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3932 variables using b4_check_percent_define_variables.
3933 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3934 all those exercised in the test suite and all those listed in the
3935 `Default values' section of c++.m4. Are there others?
3936 * data/push.c, data/yacc.c: Declare no valid %define variables.
3937 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3938 similar to muscle_find, but it works even when the muscle stores a
3939 const value.
3940 (muscle_grow_used_name_list): New function for constructing the used
3941 name list muscles that b4_check_for_unrecognized_names requires.
3942 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3943 %define'd more than once. Define the b4_used_percent_define_variables
3944 muscle with muscle_grow_used_name_list.
3945 (grammar_declaration): Abbreviate %code code with
3946 muscle_grow_used_name_list.
3947 * tests/input.at (%define errors): New.
3948
3949 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3950
3951 Provide warn_at, complain_at, and fatal_at function callbacks to the
3952 skeletons, and use this for %code qualifier complaints.
3953 * data/bison.m4 (b4_error_at): New, invoked by...
3954 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3955 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3956 @fatal_at(...@) directives.
3957 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3958 qualifiers in b4_used_percent_code_qualifiers and to use
3959 b4_complain_at.
3960 * src/location.c, src/location.h (boundary_set_from_string): New global
3961 function.
3962 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3963 function.
3964 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3965 to b4_used_percent_code_qualifiers.
3966 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3967 function.
3968 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3969 (lineno): Rename to...
3970 (out_lineno): ... this so I don't misunderstand it again.
3971 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3972 here; these newlines are in the input but not the output file.
3973 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3974 (at_directive_perform): ... this new static function, and add handling
3975 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3976 directives.
3977 * tests/input.at (Reject bad %code qualifiers): Update test output with
3978 locations and extend.
3979
3980 * tests/output.at (Output file name: [, Output file name: ]): Remove
3981 bogus comment about these tests failing.
3982
3983 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3984
3985 Clean up b4_check_percent_code_qualifiers a little.
3986 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3987 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3988 documentation and add examples.
3989 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3990 qualifiers here.
3991
3992 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3993
3994 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3995 unreliable -- especially when they're hidden inside another macro.
3996 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3997 data/c.m4: Remove m4_divert(-1).
3998 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3999 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
4000 m4_divert_push(0) and m4_divert_pop(0).
4001 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
4002 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
4003 pushed and popped by m4sugar, should be first on the stack.
4004
4005 Provide warn, complain, and fatal function callbacks to the skeletons.
4006 This provides more flexibility than m4_fatal, improves the error
4007 message format, and captures messages for translation. Discussed
4008 starting at
4009 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
4010 * data/bison.m4 (b4_error): New, invoked by...
4011 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
4012 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
4013 directives. Because these M4 macros might be called when the current
4014 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
4015 the previous removal of uses of m4_divert, which caused trouble.
4016 (b4_check_percent_code_qualifiers): Use b4_complain instead of
4017 m4_fatal to report unrecognized %code qualifiers.
4018 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
4019 push parser requests.
4020 * data/glr.c: Use b4_complain instead of m4_fatal to report
4021 non-deterministic push parser requests.
4022 Update @output usage to @output(...@) form.
4023 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
4024 report missing %defines. Update @output usage to @output(...@) form.
4025 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
4026 @output(...@) form.
4027 * src/main.c (main): Invoke skel_scanner_free.
4028 * src/scan-skel.h (skel_scanner_free): Prototype new function.
4029 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
4030 obstack_for_string from flex-scanner.h.
4031 (YY_DECL): Use to declare skel_lex static.
4032 (decode_at_digraphs): Remove; now handled in the new
4033 SC_AT_DIRECTIVE_ARG start condition.
4034 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
4035 functions.
4036 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
4037 at_directive_argv): New static globals.
4038 (INITIAL): Use fail_for_invalid_at.
4039 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
4040 recognize the start of a generalized `@directive(...@)' form and
4041 start...
4042 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
4043 directive args (using the new obstack_for_string), to decode the
4044 contained @ diagraphs, and to perform the directive. It recognizes
4045 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
4046 @output(...@).
4047 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
4048 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
4049 `@,'.
4050 (scan_skel): Initialize obstack_for_string on the first call.
4051 (skel_scanner_free): New function to free obstack_for_string.
4052 * tests/input.at (Reject bad %code qualifiers): Update test output.
4053
4054 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
4055
4056 Consolidate the 4 prologue alternative directives (%code, %requires,
4057 %provides, and %code-top) into a single %code directive with an
4058 optional qualifier field. Discussed at
4059 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
4060 * NEWS (2.3a+): Rewrite the existing entry for the prologue
4061 alternatives.
4062 * doc/bison.texinfo (Prologue Alternatives): Update.
4063 (Decl Summary): Update to %code "requires" and %code "provides".
4064 (Calc++ Parser): Update to %code "requires".
4065 (Table of Symbols): Remove entries for %requires, %provides, and
4066 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
4067 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
4068 are replaced by b4_percent_code_provides and b4_percent_code_requires,
4069 which are skeleton-specific.
4070 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
4071 declare what %code qualifiers it supports and to complain if any other
4072 qualifiers were used in the grammar.
4073 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
4074 and b4_user_code([b4_percent_code_provides]) in place of
4075 b4_user_requires and b4_user_provides.
4076 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
4077 Add b4_user_code([b4_percent_code_top]) and
4078 b4_user_code([b4_percent_code]).
4079 Invoke b4_check_percent_code_qualifiers.
4080 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4081 PERCENT_REQUIRES): Remove.
4082 (grammar_declaration): Remove RHS's for %code-top, %provides, and
4083 %requires. Rewrite the %code RHS as the unqualified form defining the
4084 muscle b4_percent_code. Add another RHS for the qualified %code form,
4085 which defines muscles of the form b4_percent_code_QUALIFIER and the
4086 b4_used_percent_code_qualifiers muscle.
4087 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
4088 PERCENT_REQUIRES): Remove.
4089 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
4090 %code "requires" and %code "provides".
4091 * tests/input.at (Reject bad %code qualifiers): New.
4092
4093 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4094
4095 Use the new code_props interface for destructors and printers.
4096 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
4097 printer_location members, and change the type of the destructor and
4098 printer members to code_props.
4099 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
4100 symbol_printer_get, semantic_type_destructor_set,
4101 semantic_type_printer_set, default_tagged_destructor_set,
4102 default_tagless_destructor_set, default_tagged_printer_set,
4103 default_tagless_printer_set): Use code_props in arguments and return
4104 types in place of char const * and location.
4105 (symbol_destructor_location_get, symbol_printer_location_get): Remove
4106 since the locations are now contained in the return of
4107 symbol_destructor_get and symbol_printer_get.
4108 * src/output.c (symbol_destructors_output, symbol_printers_output):
4109 Replace with...
4110 (symbol_code_props_output): ... this to eliminate duplicate code.
4111 (output_skeleton): Update to use symbol_code_props_output.
4112 * src/reader.c (symbol_should_be_used): Update use of
4113 symbol_destructor_get.
4114 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
4115 Update uses of the various _destructor_set and _printer_set functions.
4116 * src/symtab.c: (default_tagged_destructor_location,
4117 default_tagless_destructor_location, default_tagged_printer_location,
4118 default_tagless_printer_location): Remove since we...
4119 (default_tagged_destructor, default_tagless_destructor,
4120 default_tagged_printer, default_tagless_printer): ... change the type
4121 of these to code_props.
4122 (symbol_new, semantic_type_new, symbol_destructor_set,
4123 semantic_type_destructor_set, symbol_destructor_get,
4124 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
4125 symbol_check_alias_consistency, default_tagged_destructor_set,
4126 default_tagless_destructor_set, default_tagged_printer_set,
4127 default_tagless_printer_set): Update.
4128 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
4129 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
4130 code_props members.
4131 (symbol_print): Use SYMBOL_CODE_PRINT.
4132
4133 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
4134
4135 Use the new code_props interface for rule actions.
4136 * src/symlist.h (symbol_list): Replace action, action_location, and
4137 used members with a code_props action_props member.
4138 * src/reader.c (symbol_should_be_used, grammar_rule_check,
4139 grammar_midrule_action, grammar_current_rule_merge_set,
4140 grammar_current_rule_symbol_append, packgram): Update.
4141 * src/scan-code.h (translate_rule_action): Remove, no longer used.
4142 * src/scan-code.l (handle_action_dollar): Update.
4143 (translate_rule_action): Remove, no longer used.
4144 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
4145
4146 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4147
4148 Use the new code_props interface in parse-gram.y.
4149 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
4150 Update all uses of translate_* functions to use the new code_props
4151 interface and to use gram_scanner_last_string_free and
4152 code_scanner_last_string_free where possible.
4153 (grammar_declaration): symbol_list_destructor_set and
4154 symbol_list_printer_set now perform the translation, so don't do it
4155 here. Use gram_scanner_last_string_free where possible.
4156 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
4157 translate_code): Remove, no longer used.
4158 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
4159 symbol_list_printer_set): Perform code translation here rather than
4160 depending on the caller to do so.
4161
4162 * src/symlist.h (struct symbol_list): Correct some documentation typos.
4163 * src/scan-gram.h (gram_last_string): Remove declaration.
4164 * src/scan-gram.l (last_string): Declare it static.
4165
4166 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4167
4168 Encapsulate code properties and related functionality for the various
4169 destructors, printers, and actions into a code_props structure and
4170 interface. This patch merely implements code_props in scan-code.h and
4171 scan-code.l. Future patches will rewrite other modules to use it.
4172 Discussed starting at
4173 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4174 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4175 consistently initialize const structs that have an empty location
4176 field.
4177 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4178 to ensure consistency.
4179 * src/scan-code.h (code_props): New structure.
4180 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4181 function, macro, and const global variable for initializing a
4182 code_props with no code.
4183 (code_props_plain_init, code_props_symbol_action_init,
4184 code_props_rule_action_init, code_props_translate_code): The rest of
4185 the new code_props functional interface. Among other things, the init
4186 functions set the code_props kind field so that
4187 code_props_translate_code will know whether to behave like
4188 translate_symbol_action, translate_rule_action, or translate_code.
4189 These old translate functions must remain until all other modules are
4190 updated to use the new code_props interface.
4191 (code_scanner_last_string_free): New function similar to
4192 gram_scanner_last_string_free.
4193 (code_scanner_free): Add documentation.
4194 * src/scan-code.l: Implement the new interface.
4195 (code_lex): Make it static, add a code_props* argument, and remove the
4196 rule argument.
4197 (last_string): New static global similar to the one in scan-gram.l.
4198 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4199 instead of rule.
4200 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4201 code_props since Bison may one day use this information for destructors
4202 and printers.
4203 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4204 (handle_action_dollar): Use symbol_list_n_get and set used flag
4205 directly since symbol_list_n_used_set is removed.
4206 (translate_action): Add a code_props* argument and remove the rule,
4207 action, and location arguments. Pass the code_props* on to code_lex.
4208 (translate_rule_action, translate_symbol_action, translate_code):
4209 Rewrite as wrappers around the new code_props interface.
4210 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4211 it would eventually need to break the encapsulation of code_props.
4212
4213 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4214
4215 * etc/.cvsignore: New.
4216
4217 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4218
4219 Add maintainer-push-check to run maintainer-check using push parsing in
4220 place of pull parsing where available.
4221 * Makefile.am (maintainer-push-check): New.
4222 * data/bison.m4 (b4_use_push_for_pull_if): New.
4223 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4224 appropriately based on their existing values.
4225 (yypush_parse): Don't print push-parser-specific diagnostics if push
4226 parsing is being used in place of pull parsing.
4227 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4228 push.c.
4229 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4230 variable, and insert b4_use_push_for_pull_flag into muscles.
4231 * tests/Makefile.am (maintainer-push-check): New.
4232
4233 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4234
4235 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4236 (whether successful or failed) so that yypush_parse can be invoked
4237 again to start a new parse using the same yypstate.
4238 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4239 check multiple yypull_parse invocations on the same yypstate. For pull
4240 mode, extend to check multiple yyparse invocations.
4241 (Exploding the Stack Size with Alloca): Extend to try with
4242 %push-pull-parser.
4243 (Exploding the Stack Size with Malloc): Likewise.
4244
4245 * tests/calc.at (Simple LALR Calculator): Don't specify
4246 %skeleton "push.c" since %push-pull-parser implies that now.
4247 * tests/headers.at (export YYLTYPE): Don't check for the push
4248 declarations. Otherwise, this test case can't be used to see if push
4249 mode can truly emulate pull mode.
4250 * tests/input.at (Torturing the Scanner): Likewise.
4251 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4252 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4253 AT_YACC_IF, which now includes the case of push mode since %skeleton
4254 need not be used for push mode. This will be more intuitive once
4255 push.c is renamed to yacc.c.
4256
4257 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4258
4259 For push mode, convert yyparse from a macro to a function, invoke yylex
4260 instead of passing a yylexp argument to yypull_parse, and don't
4261 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4262 Discussed starting at
4263 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4264 * data/bison.m4 (b4_pull_if): New.
4265 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4266 * data/push.c: Improve M4 quoting a little.
4267 (b4_generate_macro_args, b4_parenthesize): Remove.
4268 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4269 any time a pull parser is requested.
4270 Don't #define this as a wrapper around yypull_parse. Instead, when
4271 both push and pull are requested, make it a function that does that
4272 same thing.
4273 (yypull_parse): If there's a b4_prefix, #define this to
4274 b4_prefix[pull_parse] when both push and pull are requested.
4275 Don't define this as a function unless both push and pull are
4276 requested.
4277 Remove the yylexp argument and hard-code yylex invocation instead.
4278 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4279 %push-parser.
4280 * src/getargs.c (pull_parser): New global initialized to true.
4281 * getargs.h (pull_parser): extern it.
4282 * src/output.c (prepare): Insert pull_flag muscle.
4283 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4284 (prologue_declaration): Set both push_parser and pull_parser = true for
4285 %push-pull-parser. Set push_parser = true and pull_parser = false for
4286 %push-parser.
4287 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4288 %push-parser since there's no backward-compatibility concern here.
4289 Scan %push-pull-parser.
4290 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4291 instead of %push-parser.
4292 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4293 prototype it in the module that calls yyparse.
4294 * tests/input.at (Torturing the Scanner): Likewise.
4295 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4296
4297 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4298
4299 Update etc/bench.pl. Optimize push mode a little (the yyn change
4300 deserves most of the credit).
4301 * Makefile.am (SUBDIRS): Add etc subdirectory.
4302 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4303 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4304 yytoken, yyval, and yyloc declarations to...
4305 (yyparse or yypush_parse): ... here to improve performance. For
4306 yypush_parse invocations after the first, be sure to assign yyn its old
4307 value again.
4308 (yypstate_new): Don't bother initializing the yyresult field since the
4309 initial value isn't used.
4310 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4311 remove the #define that, in push mode, set it to yyps->NAME.
4312 * etc/Makefile.am: New.
4313 * etc/bench.pl: Remove and build it instead from...
4314 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4315 "tests/bison" from the build directory by default rather than just
4316 invoking "bison" from $PATH.
4317 (calc_grammar): Update push parser code: don't declare yylval globally,
4318 don't define yyparse_wrapper, and don't #define yyparse.
4319 (bench_grammar): Update to check all working combinations of yacc.c,
4320 push.c, impure, pure, pull, and push.
4321
4322 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4323
4324 For push mode, add pull wrappers around yypush_parse.
4325 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4326 (yypull_parse): New function wrapping yypush_parse.
4327 (yyparse): New #define wrapping yypull_parse.
4328 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4329 is declared.
4330 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4331 prototype yylex in the module that calls yyparse, and don't prototype
4332 yyparse there. Otherwise, the yyparse expansion won't compile.
4333 * tests/input.at (Torturing the Scanner): Likewise.
4334
4335 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4336
4337 Enable push parsers to operate in impure mode. Thus, %push-parser no
4338 longer implies %pure-parser. The point of this change is to move
4339 towards being able to test the push parser code by running the entire
4340 test suite as if %push-parser had been declared.
4341 * data/push.c (yypush_parse): For impure mode, remove the
4342 yypushed_char, yypushed_val, and yypushed_loc arguments.
4343 Instead, declare these as local variables initialized to the global
4344 yychar, yylval, and yylloc.
4345 For the first yypush_parse invocation only, restore the initial values
4346 of these global variables when it's time to read a token since they
4347 have been overwritten.
4348 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4349 %push-parser.
4350 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4351 %pure-parser along with %push-parser since this test case was designed
4352 for pure push parsers.
4353 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4354 (AT_YACC_OR_PUSH_IF): New.
4355 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4356 add a note that it's still wrong for some cases (as it has been for a
4357 while).
4358 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4359 %push-parser no longer implies %pure-parser.
4360
4361 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4362
4363 Remove some unnecessary differences between the pull parser code and
4364 the push parser code. This patch enables yynerrs in push mode.
4365 * data/push.c: Reformat M4 a little.
4366 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4367 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4368 because push mode is on. Instead, if pure mode is on, move yynerrs
4369 to...
4370 (b4_declare_parser_state_variables): ... here.
4371 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4372 to yyps->NAME so it can be used in yypush_parse.
4373 (yypush_parse): Don't omit uses of yynerrs in push mode.
4374
4375 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4376
4377 Fix bug such that the first pushed token's value and location are
4378 sometimes overwritten (sometimes by %initial-action) before being used.
4379 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4380 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4381 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4382 more closely mimic the pull parser logic.
4383 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4384 time to read a token, which is after any initialization of yylval and
4385 yylloc.
4386 (gottoken): Rename label to...
4387 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4388 user namespace.
4389
4390 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4391
4392 Rearrange initialization of the parser state variables so that the
4393 skeleton doesn't have to have a copy for pull mode and another for push
4394 mode. This patch also fixes at least a bug such that yylloc was not
4395 initialized (with b4_location_initial_line and
4396 b4_location_initial_column) upon calling yypush_parse. However, that
4397 initialization now overwrites the first token's location;
4398 %initial-action assigning @$ already did the same thing, and both bugs
4399 will be fixed in a later patch.
4400 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4401 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4402 yyss, yyvs, yyls, and yystacksize.
4403 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4404 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4405 yylsp.
4406 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4407 yyps->NAME so it can be used in yypush_parse.
4408 (yyparse or yypush_parse): For yypush_parse, don't print the
4409 "Starting parse" diagnostic for invocations after the first.
4410 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4411 yypush_parse, only do it for the first invocation.
4412 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4413 initialization to occur in yypush_parse but only on the first
4414 invocation.
4415
4416 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4417
4418 * data/push.c: Add CPP guards around push parser declarations in both
4419 the header and the code file.
4420 In the code file, move the push parser declarations to the same place
4421 they appear in the header file.
4422 Clean up the M4 some, especially the inconsistent underquoting in
4423 some b4_c_function_def and b4_c_function_decl uses.
4424
4425 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4426
4427 Encapsulate the push parser state variables into an M4 macro so the
4428 push skeleton doesn't have to list them again for pull mode's yyparse.
4429 For push mode, remove yypush_parse's local equivalents of these
4430 variables to eliminate unnecessary copying between the two sets at
4431 run-time. This patch also fixes at least a bug related to multiple
4432 %initial-action invocations in push mode.
4433 * data/push.c (b4_declare_parser_variables): Rename to...
4434 (b4_declare_scanner_communication_variables): ... this for clarity and
4435 update both uses.
4436 (b4_declare_yyparse_variables): Remove and move its contents to the one
4437 spot where it was invoked.
4438 (b4_declare_parser_state_variables): New macro containing the parser
4439 state variables required by push mode.
4440 (struct yypstate): Replace all fields but yynew with
4441 b4_declare_parser_state_variables.
4442 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4443 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4444 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4445 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4446 parser state variable declarations with
4447 b4_declare_parser_state_variables.
4448 Don't initialize parser state variables when calling yypush_parse since
4449 yypstate_new already does that.
4450 Invoke the user's initial action only upon the first yypush_parse
4451 invocation.
4452 Remove all code that copies between the local parser state variables
4453 and the yypstate.
4454
4455 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4456
4457 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4458 prevent a name collision in a future patch where these names will
4459 sometimes be #define'd.
4460 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4461 since it no longer has the same name as the existing argument.
4462 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4463
4464 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4465 and Joel E. Denny <jdenny@ces.clemson.edu>
4466
4467 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4468 that the argument is case-insensitive, and there's no `=' here.
4469 For the %skeleton entry, mention that %language is better.
4470 (Bison Options): Likewise for --language and --skeleton. Move the
4471 --skeleton entry so that the `Tuning the parser' section is sorted
4472 alphabetically on long options.
4473 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4474 %language directive in detail here; cross-reference the %language
4475 documentation instead.
4476 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4477 `%require "2.3b"' so that the example is always up-to-date.
4478 (Table of Symbols): Add entries for %language and %skeleton.
4479 * examples/extexi (normalize): Instead of replacing every %require
4480 argument with the current Bison version, just substitute for
4481 `@value{VERSION}'. This guarantees that we're testing what actually
4482 appears in the documentation.
4483 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4484 rather than `@VERSION@'.
4485
4486 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4487
4488 * NEWS: Reword the %language news a bit, and put it earlier.
4489
4490 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4491 Rewrite to simplify the logic.
4492 (language_argmatch): Likewise.
4493 (program_name): We now own this var.
4494 * src/getargs.h (struct bison_language): Use char[] rather than
4495 const char *.
4496
4497 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4498 Java is supported.
4499 * src/complain.c (program_name): Remove decl; no longer needed.
4500 * src/main.c (program_name): Remove; now belongs to getargs.
4501
4502 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4503
4504 * NEWS: Document %language.
4505
4506 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4507
4508 * data/c-skel.m4, data/c++-skel.m4: New files.
4509 * data/glr.c: Complain on push parsers.
4510
4511 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4512 over %skeleton.
4513 (Decl Summary): Document %language and %skeleton.
4514 (Command line): Document -L.
4515
4516 * examples/extexi: Rewrite %require directive.
4517 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4518
4519 * src/files.c (compute_exts_from_gc): Look in language structure
4520 for .y extension.
4521 (compute_file_name_parts): Check whether .tab should be added.
4522 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4523 (language, skeleton_arg, language_argmatch): New.
4524 (long_options): Add --language.
4525 (getargs): Use skeleton_arg, add -L/--language.
4526 * src/getargs.h: Include location.h.
4527 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4528 * src/output.c (prepare): Pick default skeleton from struct language.
4529 Don't dispatch C skeletons here.
4530 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4531 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4532 * src/scan-gram.l ("%language"): New rule.
4533
4534 * tests/calc.at: Test %skeleton and %language.
4535 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4536 (AT_GLR_IF): Look for %skeleton "glr.cc".
4537 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4538 (AT_YACC_IF): Reject %language.
4539
4540 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4541
4542 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4543 since it wasn't used; only the typedef name 'semantic_type' is needed.
4544 Also, omit trailing white space.
4545
4546 * bootstrap: Sync from coreutils.
4547 (gnulib_extra_files): Add build-aux/announce.gen.
4548 (slurp): Adjust .gitignore files like .cvsignore files.
4549 * build-aux/announce-gen: Remove from CVS, since bootstrap
4550 now creates this.
4551
4552 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4553
4554 Make %push-parser imply %pure-parser. This fixes several bugs; see
4555 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4556 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4557 pure_parser = true.
4558 * data/push.c: Don't bother testing b4_push_if when deciding whether
4559 to expand b4_declare_parser_variables globally.
4560 (yypush_parse): Likewise in here.
4561
4562 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4563 (yy_reduce_print): Reformat M4 for readability.
4564
4565 2006-12-15 Bob Rossi <bob@brasko.net>
4566 and Joel Denny <jdenny@ces.clemson.edu>
4567
4568 * data/push.c (yypstate): Add typedef, and update all uses of
4569 struct yypstate to just yypstate.
4570 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4571
4572 2006-12-14 Bob Rossi <bob@brasko.net>
4573
4574 * data/push.c (yypush_parse): Declare prototype regardless of
4575 %locations option.
4576
4577 2006-12-14 Bob Rossi <bob@brasko.net>
4578
4579 * data/push.c (yyparse): Remove the prototype and the #define when in
4580 push-parser mode.
4581
4582 2006-12-13 Bob Rossi <bob@brasko.net>
4583
4584 * data/push.c (yypstate_init): Rename to...
4585 (yypstate_new): ... this and use b4_c_function_def.
4586 (yypstate_delete): New.
4587 (yypush_parse): Change parameters yynval and yynlloc to be const.
4588 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4589 yypstate_delete functions.
4590
4591 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4592
4593 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4594 strange test case titles. Reported by Bob Rossi.
4595
4596 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4597
4598 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4599 of potential ambiguities in GLR grammers.
4600
4601 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4602
4603 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4604 `bison ', use m4_index instead of m4_substr since chopping up a string
4605 containing M4-special characters causes problems here.
4606
4607 Fix a couple of bugs related to special characters in user-specified
4608 file names, and make it easier for skeletons to compute output file
4609 names with the same file name prefix as Bison-computed output file
4610 names.
4611 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4612 b4_parser_file_name and b4_spec_defines_file instead of
4613 @output_parser_name@ and @output_header_name@, which are now redundant.
4614 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4615 b4_parser_file_name, b4_spec_defines_file, and the new
4616 @basename(FILENAME@) instead of @output_parser_name@ and
4617 @output_header_name@, which inappropriately escaped the file names as
4618 C string literals.
4619 * src/files.c (all_but_ext): Remove static qualifier.
4620 (compute_output_file_names): Move `free (all_but_ext)' to...
4621 (output_file_names_free): ... here since all_but_ext is needed later.
4622 * src/files.h (all_but_ext): Extern.
4623 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4624 exactly what MUSCLE_INSERT_STRING used to do.
4625 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4626 characters are escaped properly.
4627 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4628 all_but_ext.
4629 For pkgdatadir muscle, maintain previous functionality by using
4630 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4631 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4632 digraphs would never be expanded. Hopefully no one has M4-special
4633 characters in his Bison installation path.
4634 * src/scan-skel.l: Don't parse @output_header_name@ and
4635 @output_parser_name@ anymore since they're now redundant.
4636 In @output, use decode_at_digraphs.
4637 Parse a new @basename command that invokes last_component.
4638 (decode_at_digraphs): New.
4639 (BASE_QPUTS): Remove unused.
4640 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4641 (Output file name): New tests.
4642
4643 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4644
4645 Warn about output files that are generated by the skeletons and that
4646 conflict with other output files.
4647 * data/glr.c: Don't generate the header file here when glr.cc does.
4648 * src/files.c (file_names, file_names_count): New static globals.
4649 (compute_output_file_names): Invoke output_file_name_check for files
4650 not generated by the skeletons and remove existing checks.
4651 (output_file_name_check): New function that warns about conflicting
4652 output file names.
4653 (output_file_names_free): Free file_names.
4654 * src/files.h (output_file_name_check): Declare.
4655 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4656 the skeletons.
4657 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4658 (Conflicting output files): New tests.
4659
4660 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4661
4662 * doc/bison.texinfo: Fix a couple of typos.
4663
4664 2006-12-08 Bob Rossi <bob@brasko.net>
4665
4666 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4667 Rename to...
4668 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4669 update all uses.
4670 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4671 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4672 local pv.
4673 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4674 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4675
4676 2006-12-07 Bob Rossi <bob@brasko.net>
4677 and Joel Denny <jdenny@ces.clemson.edu>
4678
4679 * data/push.c (yypvarsinit): Change return type from void* to struct
4680 yypvars*. No longer cast to void* on return.
4681 (struct yypvars): Remove yylen since it need not be remembered between
4682 yypushparse invocations.
4683 (yypushparse): Don't copy between yylen and pv->yylen.
4684
4685 2006-12-05 Bob Rossi <bob@brasko.net>
4686
4687 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4688 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4689 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4690 (struct yypvars): Remove b4_declare_parser_variables.
4691 (yypvarsinit): Remove init code for removed variables.
4692 (global scope): Do not declare b4_declare_parser_variables if
4693 push or pure mode.
4694 (yypushparse): Add b4_declare_parser_variables.
4695 Init new local variables, and remove init code for removed
4696 yypvars variables.
4697 (yyparse): Delete.
4698 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4699 and yyparse for other modes.
4700 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4701 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4702 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4703 (AT_PURE_LEX_IF): True if pure or push parser.
4704
4705 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4706
4707 Document Yacc prologue alternatives and default %destructor's and
4708 %printer's as experimental. Don't mention Java yet. Discussed at
4709 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4710 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4711 (2.3a): Annotate this entry to say the old forms of these features were
4712 also experimental.
4713 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4714 Table of Symbols): Say they're experimental. Comment out any mention
4715 of Java (we'll want this back eventually).
4716
4717 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4718
4719 Support a file name argument to %defines. Deprecate `=' in
4720 %file-prefix, %name-prefix, and %output. Discussed at
4721 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4722 * NEWS (2.3a+): Mention.
4723 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4724 form of %defines, and remove `=' from entries for %file-prefix,
4725 %name-prefix, and %output.
4726 * src/parse-gram.y (prologue_declaration): Implement.
4727 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4728 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4729 all but one occurrence of %name-prefix.
4730 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4731 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4732 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4733 occurrence of each of %file-prefix and %output. Add check for %defines
4734 with argument.
4735 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4736 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4737 Remove the `=' from %output.
4738
4739 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4740
4741 Don't escape $ in test case titles since Autoconf 2.61 now does that
4742 correctly.
4743 * tests/actions.at (Default %printer and %destructor are not for error
4744 or $undefined): Here.
4745 (Default %printer and %destructor are not for $accept): Here.
4746 * tests/input.at (Invalid $n and @n): Here.
4747
4748 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4749
4750 Rename <!> to <>. Discussed starting at
4751 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4752 * NEWS (2.3a+): Update.
4753 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4754 Update.
4755 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4756 * src/scan-gram.l (INITIAL): Implement.
4757 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4758 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4759 comment.
4760 * tests/actions.at (Default tagless %printer and %destructor,
4761 Default tagged and per-type %printer and %destructor,
4762 Default %printer and %destructor are not for error or $undefined,
4763 Default %printer and %destructor are not for $accept,
4764 Default %printer and %destructor for mid-rule values): Update.
4765 * tests/input.at (Default %printer and %destructor redeclared,
4766 Unused values with default %destructor): Update.
4767
4768 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4769
4770 Don't let %prec take a nonterminal.
4771 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4772 token.
4773 * tests/input.at (%prec takes a token): New test checking that %prec
4774 won't take a nonterminal.
4775
4776 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4777
4778 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4779 it was double-quoted.
4780 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4781 grammar is maintained with Bison's highest standards.
4782 * src/getargs.c: Fix some typos in Doxygen comments.
4783
4784 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4785
4786 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4787 later. Reported by Paul Eggert in
4788 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4789 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4790 * src/scan-code.l (translate_action): Don't bother invoking
4791 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4792 (code_scanner_free): Instead of invoking
4793 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4794 which frees more.
4795 * src/scan-gram.l (gram_scanner_free): Likewise.
4796 * src/scan-skel.l (scan_skel): Likewise.
4797
4798 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4799
4800 * src/files.c (tr): Change return type to void.
4801 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4802 has been called previously for the same key.
4803 (muscle_find): Return storage instead of value so that
4804 --enable-gcc-warnings doesn't produce warnings that the return discards
4805 const. aver that the value and storage are the same since storage
4806 could potentially be NULL when value is not.
4807 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4808 same as 0.
4809
4810 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4811
4812 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4813 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4814 us a slightly cleaner distribution, and also works.
4815 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4816 gnulib changes.
4817
4818 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4819 and Paul Eggert <eggert@cs.ucla.edu>
4820
4821 Don't let Bison leak memory except when it complains.
4822 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4823 (spec_defines_file, dir_prefix): Now char *, not const char *,
4824 since they are freed.
4825 * src/files.c: Likewise.
4826 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4827 Likewise.
4828 (tr): Now operates in-place. All uses changed.
4829 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4830 values.
4831 (compute_file_name_parts, compute_output_file_names): Don't store
4832 read-only data in variables that will be freed.
4833 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4834 src_extension, and header_extension.
4835 (output_file_names_free): New public function to free
4836 spec_verbose_file, spec_graph_file, spec_defines_file,
4837 parser_file_name, and dir_prefix.
4838 * src/getargs.c (getargs): Don't store read-only data in variables that
4839 will be freed.
4840 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4841 (which previously existed but was unused), and quotearg_free.
4842 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4843 * src/muscle_tab.c: Likewise.
4844 (muscle_entry): Make the value char const *,
4845 and add a new storage member that is char * and can be freed.
4846 (muscle_entry_free): New private function.
4847 (muscle_init): Use it instead of free.
4848 (muscle_insert, muscle_grow): Update and use new storage member.
4849 (muscle_code_grow): Free the string passed to muscle_grow
4850 since it's not needed anymore.
4851 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4852 add a new `char *code' member.
4853 ("{...}"): Declare semantic type as code.
4854 * src/scan-code.h (translate_rule_action):
4855 (translate_symbol_action, translate_code, translate_action): Return
4856 `char const *' rather than `char *' since external code should not free
4857 these strings.
4858 * src/scan-code.l: Likewise.
4859 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4860 which is "{...}" in the parser.
4861 * tests/Makefile.am (maintainer-check-valgrind): Set
4862 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4863 Valgrind.
4864 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4865 complain.
4866 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4867 expecting a non-zero exit status sets --leak-check=summary and
4868 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4869 this case, and we don't want to hear about it.
4870
4871 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4872
4873 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4874 instead of from the template, to simplify configuration a bit.
4875 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4876 and m4/wint_t.m4, as they are needed with the latest gnulib.
4877
4878 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4879
4880 Disable unset/unused mid-rule value warnings by default, and recognize
4881 --warnings=midrule-values to enable them. Discussed starting at
4882 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4883 * NEWS (2.3a+): Mention.
4884 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4885 warnings): Add entry for midrule-values subargument.
4886 * src/reader.c (symbol_should_be_used): Don't return true just because
4887 the value is a set/used mid-rule value unless
4888 --warnings=midrule-values was specified.
4889 * tests/input.at (Unused values, Unused values before symbol
4890 declarations): Run tests with and without --warnings=midrule-values.
4891
4892 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4893 than LIST_FREE directly.
4894
4895 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4896
4897 Finish implementing --warnings=error, which should not be implied by
4898 --warnings=all (or by its synonyms -W and --warnings without
4899 subarguments).
4900 * src/complain.c (set_warning_issued): New function to report that
4901 warnings are being treated as errors and to record an error if so.
4902 Invoke...
4903 (warn_at, warn): ... here.
4904 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4905 "error - warnings are errors" does not appear above "all - all of the
4906 above".
4907 (getargs): For -W and --warnings without subarguments, don't let
4908 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4909 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4910
4911 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4912
4913 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4914 empty subargument list. For example: `bison --warnings= parser.y'.
4915
4916 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4917
4918 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4919 the parser header file so that gcc doesn't warn.
4920
4921 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4922
4923 Split the default %destructor/%printer into two kinds: <*> and <!>.
4924 Discussed starting at
4925 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4926 * NEWS (2.3a+): Mention.
4927 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4928 previous change today related to mid-rules.
4929 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4930 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4931 (TYPE_TAG_ANY): Add as <*>.
4932 (TYPE_TAG_NONE): Add as <!>.
4933 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4934 for <*> and <!>.
4935 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4936 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4937 * src/symlist.c (symbol_list_default_new): Split into tagged and
4938 tagless versions.
4939 (symbol_list_destructor_set, symbol_list_printer_set): Split
4940 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4941 SYMLIST_DEFAULT_TAGLESS.
4942 * src/symlist.h: Update symbol_list_default*_new prototypes.
4943 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4944 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4945 * src/symtab.c (default_destructor, default_destructor_location,
4946 default_printer, default_printer_location): Split each into tagged and
4947 tagless versions.
4948 (symbol_destructor_get, symbol_destructor_location_get,
4949 symbol_printer_get, symbol_printer_location_get): Implement tagged
4950 default and tagless default cases.
4951 (default_destructor_set, default_printer_set): Split each into tagged
4952 and tagless versions.
4953 * src/symtab.h: Update prototypes.
4954 * tests/actions.at (Default %printer and %destructor): Rename to...
4955 (Default tagless %printer and %destructor): ... this, and extend.
4956 (Per-type %printer and %destructor): Rename to...
4957 (Default tagged and per-type %printer and %destructor): ... this, and
4958 extend.
4959 (Default %printer and %destructor for user-defined end token): Extend.
4960 (Default %printer and %destructor are not for error or $undefined):
4961 Update.
4962 (Default %printer and %destructor are not for $accept): Update.
4963 (Default %printer and %destructor for mid-rule values): Extend.
4964 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4965 (Unused values with default %destructor): Extend.
4966
4967 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4968
4969 Don't apply the default %destructor/%printer to an unreferenced midrule
4970 value. Mentioned at
4971 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4972 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4973 like $@n instead of just @n so that the default %destructor/%printer
4974 logic doesn't see them as user-defined symbols.
4975 (symbol_is_dummy): Check for both forms of the name.
4976 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4977 name for which the midrule value is referenced in any action.
4978 * tests/actions.at (Default %printer and %destructor for mid-rule
4979 values): New test.
4980 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4981 for change to dummy symbol names.
4982
4983 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4984
4985 Warn about unset midrule $$ if the corresponding $n is used.
4986 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4987 $n usage.
4988 (packgram): Before invoking grammar_rule_check on any rule, make sure
4989 all actions have already been scanned in order to set `used' flags.
4990 Otherwise, checking that a midrule's $$ is set will not always work
4991 properly because the midrule check must forward-reference the midrule's
4992 parent rule.
4993 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4994 warning.
4995
4996 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4997
4998 More improvements to the documentation of the prologue alternatives:
4999 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
5000 Bison manual.
5001 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
5002 some text to clarify the relative importance of the new directives and
5003 to show how these directives may be viewed as code labels.
5004
5005 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
5006
5007 Similar to the recently removed %before-header, add %code-top as the
5008 alternative to the pre-prologue. Mentioned at
5009 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
5010 Also, let the prologue alternatives appear in the grammar section.
5011 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
5012 (prologue_declaration): Move the existing prologue alternatives to...
5013 (grammar_declaration): ... here and add %code-top.
5014 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
5015
5016 Clean up and extend documentation for the prologue alternatives.
5017 * NEWS (2.3a+): Describe prologue alternatives.
5018 * doc/bison.texinfo (Prologue): Move discussion of prologue
5019 alternatives to...
5020 (Prologue Alternatives): ... this new section, and extend it to discuss
5021 all 4 directives in detail.
5022 (Table of Symbols): Clean up discussion of prologue alternatives and
5023 add %code-top.
5024
5025 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5026
5027 DJGPP specific issues.
5028
5029 * djgpp/config.bat: config.hin has been moved to lib. Adjust
5030 config.bat accordingly.
5031 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
5032 * djgpp/config.site: Likewise.
5033
5034 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
5035
5036 Replace %*-header with %provides, %requires, %code. See discussion at
5037 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
5038
5039 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
5040 (b4_user_start_header): Remove.
5041 * data/glr.c: Use new macros instead of b4_*start_header
5042 and b4_*end_header.
5043 * data/glr.cc: Likewise.
5044 * data/lalr1.cc: Likewise.
5045 * data/push.c: Likewise.
5046 * data/yacc.c: Likewise.
5047
5048 * doc/bison.texinfo: Remove %before-header, rename
5049 %{start,end,after}-header to %requires, %provides, %code.
5050
5051 * src/parse-gram.y: Likewise (also rename token names accordingly).
5052 * src/scan-gram.l: Likewise.
5053 * tests/actions.at: Likewise.
5054
5055 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
5056
5057 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
5058 Problem reported by Joel E. Denny.
5059
5060 2006-10-14 Jim Meyering <jim@meyering.net>
5061
5062 (Sync from coreutils.)
5063 Work also when the working directory (with e.g. coreutils sources)
5064 is version controlled with git, rather than CVS.
5065 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
5066 rather than CVS.
5067 In messages and comments, say e.g., "checked-out sources",
5068 rather than "CVS sources".
5069 (version_controlled_file): New function. Work for git as well as
5070 for CVS. Don't use grep's -q option.
5071 (slurp): Call it here, in place of CVS-specific code.
5072
5073 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
5074
5075 Fix testsuite for ./configure --enable-gcc-warnings:
5076 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
5077 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
5078 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
5079 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
5080 * test/regression.at (Diagnostic that expects two alternatives):
5081 Likewise.
5082
5083 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5084
5085 * bootstrap.conf (gnulib_modules): Add config-h.
5086 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
5087 worry about HAVE_CONFIG_H.
5088 * lib/abitset.c: Likewise.
5089 * lib/bitset.c: Likewise.
5090 * lib/bitset_stats.c: Likewise.
5091 * lib/bitsetv-print.c: Likewise.
5092 * lib/bitsetv.c: Likewise.
5093 * lib/ebitset.c: Likewise.
5094 * lib/get-errno.c: Likewise.
5095 * lib/lbitset.c: Likewise.
5096 * lib/subpipe.c: Likewise.
5097 * lib/timevar.c: Likewise.
5098 * lib/vbitset.c: Likewise.
5099 * lib/bitset.c: Include "bitset.h" first, to test interface.
5100 * lib/bitset_stats.c: Include "bitset_stats.h" first.
5101 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
5102 * lib/bitsetv.c: Include "bitsetv.h" first.
5103 * lib/get-errno.c: Include "get-errno.h" first.
5104 * m4/.cvsignore: Add config-h.m4.
5105 * tests/actions.at (Default %printer and %destructor for ...):
5106 Adjust expected line numbers in output to reflect removal of #if
5107 HAVE_CONFIG_H lines.
5108 * tests/glr-regression.at (Missed %merge type warnings when ...):
5109 Likewise.
5110 * tests/regression.at (Braced code in declaration in rules section):
5111 Likewise.
5112 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
5113 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
5114 Include <config.h> unconditionally.
5115
5116 * bootstrap: Sync from coreutils, as follows:
5117
5118 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5119
5120 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
5121 variable was sometimes used without being initialized. This
5122 messed up the installation of the INSTALL file in some cases.
5123
5124 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5125
5126 * bootstrap (usage, main program, symlink_to_gnulib): Add option
5127 --copy. Inspired by a suggestion from Bruno Haible.
5128
5129 2006-10-03 Jim Meyering <jim@meyering.net>
5130
5131 * bootstrap: Undo last change to this file, since now gnulib-tool
5132 sticks with the automake default in generating dependencies.
5133
5134 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
5135
5136 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
5137 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
5138
5139 * doc/bison.1: Add copyright notice.
5140
5141 * data/glr.c: Don't include <stdarg.h>; not used.
5142
5143 * NEWS: The -g and --graph options now output graphs in Graphviz
5144 DOT format, not VCG format.
5145 * doc/bison.1: Likewise.
5146 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
5147 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
5148 of this change in
5149 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
5150 * TODO: Remove Graphviz entry.
5151 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
5152 remove vcg.c, vcg.h, vcg_defaults.h.
5153 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
5154 * src/graphviz.c, src/graphviz.h: New files.
5155 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
5156 * src/files.h: Make comment more generic.
5157 * src/main.c (main): Likewise.
5158 * src/print_graph.h: Likewise.
5159 * src/getargs.c (usage): Make usage description more generic.
5160 * src/print_graph.c: Include graphviz.h rather than vcg.h.
5161 (static_graph, fgraph): Remove. All uses changed to pass
5162 arguments instead of sharing a static var.
5163 (print_core, print_actions, print_state, print_graph):
5164 Output graphviz format rather than VCG format.
5165 * tests/.cvsignore: Remove *.vcg; add *.dot.
5166 * tests/output.at: Expect *.dot files, not *.vcg files.
5167
5168 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5169 accommodates the 2006-10-08 change.
5170
5171 2006-10-11 Bob Rossi <bob@brasko.net>
5172
5173 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5174 (b4_yyssa, b4_yyerror_range): New macros.
5175 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5176 (yypvarsinit): Remove init of removed fields.
5177 (yypushparse): Remove use of removed fields; use new macros instead.
5178
5179 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5180
5181 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5182 in a push parser. Reindent slightly to match yacc.c better.
5183
5184 2006-10-11 Bob Rossi <bob@brasko.net>
5185
5186 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5187 yymsg_alloc fields.
5188 (yypvarsinit, yypushparse): Remove init of removed fields.
5189 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5190
5191 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5192
5193 * THANKS: Add Paolo Bonzini and Bob Rossi.
5194
5195 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5196
5197 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5198 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5199 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5200 b4_define_user_cde and uses): Remove.
5201 (b4_comment, b4_prefix, b4_sync_start): New.
5202 * data/bison.m4: New file, with most of the content removed from c.m4.
5203 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5204 * src/output.c (output_skeleton): Pass bison.m4.
5205 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5206 only if specified.
5207
5208 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5209
5210 Fix test failure reported by Tom Lane in
5211 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5212 and try to make such failures easier to catch in the future.
5213 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5214 that's now the caller's responsibility.
5215 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5216 Set yychar = YYEOF if it's negative.
5217 * tests/actions.at (yylex): Abort if asked to read past EOF.
5218 * tests/conflicts.at (yylex): Likewise.
5219 * tests/cxx-type.at (yylex): Likewise.
5220 * tests/glr-regression.at (yylex): Likewise.
5221 * tests/input.at (yylex): Likewise.
5222 * tests/regression.at (yylex): Likewise.
5223 * tests/torture.at (yylex): Likewise.
5224
5225 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5226
5227 Fix problems with translating English-language diagnostics.
5228 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5229 respect to bison-runtime pot generation. The YY_ stuff
5230 wasn't being captured.
5231 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5232 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5233 * runtime-po/POTFILES.in: Add data/push.c.
5234
5235 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5236
5237 Merge bootstrap changes from coreutils.
5238
5239 2006-09-28 Jim Meyering <jim@meyering.net>
5240
5241 Automatically generated dependencies are important even
5242 when all of the sources in a directory come from gnulib.
5243 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5244 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5245
5246 2006-09-23 Jim Meyering <jim@meyering.net>
5247
5248 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5249
5250 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5251
5252 * bootstrap: Add support for --force.
5253 (usage): New function. Describe usage less tersely.
5254 (CVS_only_file): New var.
5255
5256 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5257
5258 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5259 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5260 Adjust white space and comments to match GNU style better.
5261
5262 2006-09-20 Bob Rossi <bob@brasko.net>
5263
5264 * data/push.c (yyresult_get): Remove function.
5265 (YYPUSH_MORE): Add #define.
5266 (yypushparse): Modify return value.
5267
5268 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5269
5270 * stamp-h.in: Remove; no longer needed.
5271 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5272 Remove config.h, config.hin, intl (no longer created).
5273 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5274 stamp-h1.
5275
5276 Sync bootstrap from coreutils, as follows:
5277
5278 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5279
5280 * bootstrap (symlink_to_gnulib): New function.
5281 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5282 to copies-of-gnulib.
5283 (cp_mark_as_generated, slurp, gnulib_files):
5284 Avoid making a copy if it's the same as the old version.
5285 (gnulib_files): Add support for this variable (used by Bison).
5286
5287 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5288
5289 * src/getargs.c (usage): Rework to use conventions similar to
5290 coreutils, to make translation a bit easier and the code a bit
5291 smaller. Problem reported by Tim Van Holder.
5292
5293 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5294
5295 Use some of gnulib's new modules, taken from coreutils.
5296
5297 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5298 * bootstrap.conf: New file.
5299 (gnulib_modules): Add configmake, inttypes, unistd.
5300 (XGETTEXT_OPTIONS): Add complain, complain_at,
5301 fatal, fatal_at, warn, warn_at, unexpected_end.
5302 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5303 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5304 (gl_EARLY): Add.
5305 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5306 (gl_INIT): Add
5307 (GNULIB_AUTOCONF_SNIPPET): Remove.
5308 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5309 the pickiest.
5310 * lib/.cvsignore: Add inttypes_.h.
5311 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5312 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5313 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5314 no-longer-necessary initializations.
5315 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5316 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5317 use the unistd module.
5318 * src/system.h: Likewise.
5319 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5320 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5321 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5322 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5323 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5324 * src/system.h: Include inttypes.h unconditionally, now that we
5325 use the inttypes module. Don't bother to include stdint.h, since
5326 inttypes.h now does that for us.
5327 (LOCALEDIR): Remove, now that we use the configmake module.
5328 * src/getargs.c: Include configmake.h.
5329 * src/main.c: Likewise.
5330 * src/output.c: Likewise.
5331 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5332 not from $abs_top_builddir, since config.h moved.
5333
5334
5335 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5336 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5337
5338 * src/parse-gram.y (symbol_declaration): Don't put statements
5339 before declarations; it's not portable to C89.
5340 * src/scan-code.l (handle_action_at): Likewise.
5341
5342 * src/scan-code.l: Always initialize braces_level; the old code
5343 left it uninitialized and therefore had undefined behavior.
5344
5345 Don't attempt to redefine 'assert', since it runs afoul of
5346 systems where standard headers (mistakenly) include <assert.h>.
5347 Instead, define and use our own alternative, called 'aver'.
5348 * src/reader.c: Don't include assert.h, since we no longer
5349 use assert.
5350 * src/scan-code.l: Likewise.
5351 * src/system.h (assert): Remove, replacing with....
5352 (aver): New function, taking a bool arg. All uses changed.
5353 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5354 not merely an integer.
5355
5356 2006-09-15 Bob Rossi <bob@brasko.net>
5357
5358 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5359 * data/c.m4 (YYPUSH): New.
5360 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5361 * src/getargs.c (push_parser): New var.
5362 * src/getargs.h (push_parser): New declaration.
5363 * src/output.c (prepare): Add macro insertion of `push_flag'.
5364 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5365 (prologue_declaration): Parse %push-parser.
5366 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5367 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5368 list of removed lines from the traces observed.
5369 (AT_CHECK_CALC_LALR): Added push parser tests.
5370
5371 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5372
5373 * NEWS: Version 2.3a.
5374 * configure.ac (AC_INIT): Likewise.
5375
5376 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5377 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5378 due to header ordering dependencies. I don't know why the #define
5379 was there.
5380
5381 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5382 runtime cost when YYDEBUG is not defined, and so that some tests
5383 that used to fail now work. Problem and initial suggestion by
5384 Paolo Bonzini.
5385 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5386 * data/glr.cc (b4_parser_class_name):
5387 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5388 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5389 (yydebug_) [YYDEBUG]: New member.
5390 (yycdebug_): Now defined only if YYDEBUG.
5391 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5392 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5393 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5394 if YYYDEBUG.
5395 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5396 Define only if YYDEBUG.
5397 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5398 set_debug_level.
5399 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5400 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5401 AT_CHECK_CALC_GLR_CC that are working now.
5402
5403 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5404
5405 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5406 We don't need them in glr.cc, and glr.c defines them.
5407 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5408 assumes that defining it to anything is the same as defining
5409 it to 1. Problem reported by Paolo Bonzini.
5410
5411 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5412
5413 * data/c.m4 (b4_null, b4_case): Define.
5414 * src/output.c (prepare_symbols): Use b4_null.
5415 (user_actions_output): Use b4_case.
5416
5417 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5418
5419 * data/glr.c (b4_shared_declarations): Put start-header first,
5420 before any #includes that we generate, so that feature-test
5421 macros work. Problem reported by Michael Deutschmann in
5422 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5423 * data/lalr1.cc: Likewise.
5424 * doc/bison.texinfo (Prologue): Document that feature-test macros
5425 should be defined before any Bison declarations.
5426 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5427 that depend on location.hh after, not before, Bison decls, since
5428 we now include location.hh after the first user prologue.
5429
5430 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5431 Sander Brandenburg in
5432 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5433 Also, fix minor white space and comment issues.
5434 (Prologue): Mention that it's better to define feature-test macros
5435 before Bison declarations. Problem reported by Michael Deutschmann.
5436
5437 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5438 by Jim Meyering.
5439 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5440 This adjusts to recent gnulib changes.
5441
5442 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5443
5444 Finish implementation of per-type %destructor/%printer. Discussed
5445 starting at
5446 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5447 and
5448 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5449 * NEWS (2.3+): Add a description of this feature to the default
5450 %destructor/%printer description.
5451 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5452 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5453 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5454 list node contains a semantic type.
5455 * src/symtab.c, src/symtab.h: Extend with a table that associates
5456 semantic types with their %destructor's and %printer's.
5457 (semantic_type_from_uniqstr, semantic_type_get,
5458 semantic_type_destructor_set, semantic_type_printer_set): New functions
5459 composing the public interface of that table.
5460 (symbol_destructor_get, symbol_destructor_location_get,
5461 symbol_printer_get, symbol_printer_location_get): If there's no
5462 per-symbol %destructor/%printer, look up the per-type before trying
5463 the default.
5464 * tests/actions.at (Per-type %printer and %destructor): New test case.
5465 * tests/input.at (Default %printer and %destructor redeclared):
5466 Extend to check that multiple occurrences of %symbol-default in a
5467 single %destructor/%printer declaration is an error.
5468 (Per-type %printer and %destructor redeclared, Unused values with
5469 per-type %destructor): New test cases.
5470
5471 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5472
5473 Require default %destructor/%printer to be declared using
5474 %symbol-default instead of an empty symbol list, and start working on
5475 new per-type %destructor/%printer. Discussed at
5476 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5477 * NEWS (2.3+): Add %symbol-default to example.
5478 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5479 (Table of Symbols): Add entry for %symbol-default.
5480 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5481 (generic_symlist, generic_symlist_item): New nonterminals for creating
5482 a list in which each item is a symbol, semantic type, or
5483 %symbol-default.
5484 (grammar_declaration): Use generic_symlist in %destructor and %printer
5485 declarations instead of symbols.1 or an empty list.
5486 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5487 for changes to symbol_list.
5488 * src/reader.c: Update for changes to symbol_list.
5489 * src/scan-code.l: Likewise.
5490 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5491 * src/symlist.c, src/symlist.h: Extend such that a list node may
5492 represent a semantic type or a %symbol-default in addition to just an
5493 ordinary symbol. Add switched functions for setting %destructor's and
5494 %printer's.
5495 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5496 %destructor/%printer declarations.
5497
5498 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5499
5500 Whether the default %destructor/%printer applies to a particular symbol
5501 isn't a question of whether the user *declares* that symbol (in %token,
5502 for example). It's a question of whether the user by any means
5503 *defines* the symbol at all (by simply using a char token, for
5504 example). $end is defined by Bison whereas any other token with token
5505 number 0 is defined by the user. The error token is always defined by
5506 Bison regardless of whether the user declares it with %token, but we
5507 may one day let the user define error as a nonterminal instead.
5508 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5509 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5510 the meaning of "user-defined".
5511 * tests/actions.at (Default %printer and %destructor for user-declared
5512 end token): Rename to...
5513 (Default %printer and %destructor for user-defined end token): ...
5514 this.
5515
5516 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5517 computation of whether to apply the default, don't maintain a list of
5518 every Bison-defined symbol. Instead, just check for a first character
5519 of '$', which a user symbol cannot have, and check for the error token.
5520
5521 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5522
5523 Don't apply the default %destructor or %printer to the error token,
5524 $undefined, or $accept. This change fits the general rule that the
5525 default %destructor and %printer are only for user-declared symbols,
5526 and it solves several difficulties that are described in the new test
5527 cases listed below.
5528 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5529 * tests/actions.at (Default %printer and %destructor are not for error
5530 or $undefined, Default %printer and %destructor are not for $accept):
5531 New test cases.
5532
5533 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5534
5535 Allow %start after the first rule.
5536 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5537 when parsing the first rule.
5538 (check_and_convert_grammar): Search for it here after all grammar
5539 declarations have been parsed. Skip midrules, which have dummy LHS
5540 nonterminals.
5541 * src/symtab.c (symbol_is_dummy): New function.
5542 * src/symtab.h (symbol_is_dummy): Declare it.
5543 * tests/input.at (%start after first rule): New test.
5544
5545 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5546
5547 Redo some of the previous commit: add back the ability to use
5548 non-aliased/undeclared string literals since it might be useful to
5549 those declaring %token-table.
5550 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5551 commit: don't worry about complaints from symbols_pack.
5552 * src/symtab.c (symbol_new, symbol_class_set,
5553 symbol_check_alias_consistency): Undo changes in previous commit: count
5554 each string literal as a new symbol and token, assign it a symbol
5555 number, and don't complain about non-aliased string literals.
5556 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5557 and token counts but does still set aliased tokens to the same number,
5558 symbol_pack_processor now leaves empty slots in the symbols array.
5559 Remove those slots.
5560 * tests/regression.at (Undeclared string literal): Remove test case
5561 added in previous commit since non-aliased string literals are allowed
5562 again.
5563 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5564 remove unnecessary string literal declarations.
5565 * tests/sets.at (Firsts): Likewise.
5566
5567 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5568
5569 Don't allow an undeclared string literal, but allow a string literal to
5570 be used before its declaration.
5571 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5572 symbols_pack complained.
5573 * src/symtab.c (symbol_new): Don't count a string literal as a new
5574 symbol.
5575 (symbol_class_set): Don't count a string literal as a new token, and
5576 don't assign it a symbol number since symbol_make_alias does that.
5577 (symbol_make_alias): It's not necessary to decrement the symbol and
5578 token counts anymore. Don't assume that an alias declaration occurs
5579 before any uses of the identifier or string, and thus don't assert that
5580 one of them has the highest symbol number so far.
5581 (symbol_check_alias_consistency): Complain if there's a string literal
5582 that wasn't declared as an alias.
5583 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5584 symbol_pack asserts that every token has been assigned a symbol number
5585 although undeclared string literals have not.
5586 * tests/regression.at (String alias declared after use, Undeclared
5587 string literal): New test cases.
5588 (Characters Escapes, Web2c Actions): Declare string literals as
5589 aliases.
5590 * tests/sets.at (Firsts): Likewise.
5591
5592 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5593
5594 In the grammar scanner, STRING_FINISH unclosed constructs and return
5595 them to the parser in order to improve error messages.
5596 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5597 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5598 * tests/input.at (Unclosed constructs): New test case.
5599 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5600 seen.
5601
5602 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5603 unused global.
5604
5605 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5606
5607 Handle string aliases for character tokens correctly.
5608 * src/symtab.c (symbol_user_token_number_set): If the token has an
5609 alias, check and set its alias's user token number instead of its own,
5610 which is set to indicate the alias. Previously, every occurrence of
5611 the character token in the grammar overwrote that alias indicator with
5612 the character code.
5613 * tests/input.at (String aliases for character tokens): New test.
5614
5615 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5616
5617 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5618
5619 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5620
5621 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5622 to prevent failures when building on older platforms.
5623 Check for autopoint failure.
5624 Set XGETTEXT_OPTIONS to values that check for C format strings,
5625 so that translators are warned about them (this also helps
5626 prevent core dumps).
5627
5628 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5629 function, since it simplifies our code a bit.
5630
5631 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5632 rather than -W, so we don't get bogus warnings about sign comparisons.
5633 Add -Wpointer-arith, since that warning is useful (it reports code
5634 that does not conform to C89 and that some compilers reject).
5635 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5636 since it's no longer needed.
5637
5638 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5639
5640 Clean up scanners a bit.
5641 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5642 definitions so gcc won't warn when obstack_for_string is unused.
5643 * src/scan-code.l: config.h and system.h are already #include'd by
5644 scan-code-c.c, so get rid of them here.
5645 * src/scan-gram.l: Likewise.
5646 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5647 definitions rather than duplicating the rest of it.
5648 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5649
5650 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5651
5652 Suppress signed/unsigned comparison warnings for yycheck.
5653 * data/c.m4 (b4_safest_int_type): New macro.
5654 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5655 a signed int type, cast it to b4_safest_int_type first.
5656 * data/yacc.c: Likewise.
5657 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5658 also overwritten.
5659
5660 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5661
5662 * doc/bison.texinfo: Fix some typos.
5663
5664 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5665
5666 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5667 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5668
5669 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5670 the latest gnulib does this a different way.
5671 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5672 translation was patched, so stop omitting it.
5673
5674 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5675
5676 Enable declaration of default %printer/%destructor. Make the parser
5677 use these for all user-declared grammar symbols for which the user does
5678 not declare a specific %printer/%destructor. Thus, the parser uses it
5679 for token 0 if the user declares it but not if Bison generates it as
5680 $end. Discussed starting at
5681 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5682 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5683 and
5684 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5685 * NEWS (2.3+): Mention.
5686 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5687 declare a %destructor for a mid-rule's semantic value. It's just
5688 impossible to declare one specific to it.
5689 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5690 code. Describe default %destructor form.
5691 * src/parse-gram.y (grammar_declaration): Parse default
5692 %printer/%destructor declarations.
5693 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5694 and symbol_destructor_location_get rather than accessing the destructor
5695 and destructor_location members of struct symbol.
5696 (symbol_printers_output): Likewise but for %printer's.
5697 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5698 again.
5699 * src/symtab.c (default_destructor, default_destructor_location,
5700 default_printer, default_printer_location): New static global
5701 variables to record the default %destructor and %printer.
5702 (symbol_destructor_get, symbol_destructor_location_get,
5703 symbol_printer_get, symbol_printer_location_get): New functions to
5704 compute the appropriate %destructor and %printer for a symbol.
5705 (default_destructor_set, default_printer_set): New functions to set the
5706 default %destructor and %printer.
5707 * src/symtab.h: Prototype all those new functions.
5708 * tests/actions.at (Default %printer and %destructor): New test to
5709 check that the right %printer and %destructor are called, that they're
5710 not called for $end, and that $$ and @$ work correctly.
5711 (Default %printer and %destructor for user-declared end token): New
5712 test to check that the default %printer and %destructor are called for
5713 a user-declared end token.
5714 * tests/input.at (Default %printer and %destructor redeclared, Unused
5715 values with default %destructor): New tests to check related grammar
5716 warnings and errors.
5717
5718 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5719
5720 Clean up handling of %destructor for the end token (token 0).
5721 Discussed starting at
5722 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5723 and
5724 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5725
5726 Make the skeletons consistent in how they pop the end token and invoke
5727 its %destructor.
5728 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5729 state, which has token number 0, since this would invoke the
5730 %destructor for the end token.
5731 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5732 until after shifting the end token, or else it won't be popped.
5733 * data/yacc.c (yyparse): Likewise.
5734
5735 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5736 it's the end token. Upon termination, destroy an unshifted lookahead
5737 even when it's the end token.
5738 * data/lalr1.cc (yy::parser::parse): Likewise.
5739 * data/yacc.c (yyparse): Likewise.
5740
5741 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5742 value warnings for the end token when the user gives the end token a
5743 %destructor.
5744
5745 * tests/actions.at (Printers and Destructors): Test all the above.
5746
5747 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5748
5749 Update to latest gnulib and gettext versions.
5750 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5751 Add fopen-safer.
5752 (gnulib_files): Add m4/warning.m4. Don't worry about files
5753 overwritten by autopoint.
5754 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5755 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5756 rejects them.
5757 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5758 so that we can remove the intl files at a better time.
5759 (intl_files_to_remove): Remove aclocal.m4, since it gets
5760 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5761 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5762 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5763 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5764 Remove datarootdir hack; no longer needed.
5765 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5766 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5767 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5768 strdup.h.
5769 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5770 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5771
5772 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5773
5774 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5775 it with --assume-autoconf='latest-stable'.
5776
5777 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5778
5779 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5780 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5781 YYSTYPE' and `{'.
5782 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5783 those from muscle_tab.c since the old ones are misleading.
5784
5785 2006-07-13 Akim Demaille <akim@epita.fr>
5786
5787 Support %define "KEY" {VALUE}.
5788 * src/scan-code.h, src/scan-code.l (translate_action)
5789 (translate_rule_action, translate_symbol_action, translate_code):
5790 Return char *, not const char *.
5791 * src/parse-gram.y (declaration): Rename as...
5792 (prologue_declaration): this.
5793 (string_content): Remove this nonterminal, use STRING.
5794 (braceless, content, content.opt): New nonterminal.
5795 Use them.
5796 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5797 as value.
5798 * src/scan-gram.l (getargs.h): Don't include it.
5799
5800 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5801
5802 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5803 rather than a for-loop that declares a local bool variable. This
5804 should work around a compatibility problem with a Cray x1e C++
5805 compiler reported by Hung Nguyen in
5806 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5807 The for-loop was introduced in the 2004-11-17 change but I don't
5808 know why it was needed.
5809
5810 2006-07-12 Akim Demaille <akim@epita.fr>
5811
5812 * data/c.m4: Comment changes.
5813
5814 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5815
5816 * src/complain.c (error_message, ERROR_MESSAGE): New.
5817 To factor...
5818 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5819 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5820
5821 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5822
5823 * NEWS: Instead of %union, you can define and use your own union type
5824 YYSTYPE if your grammar contains at least one <type> tag.
5825 Your YYSTYPE need not be a macro; it can be a typedef.
5826 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5827 (Union Decl, Decl Summary): Document this.
5828 * data/glr.c (YYSTYPE): Implement this.
5829 * data/glr.cc (YYSTYPE): Likewise.
5830 * data/lalr1.cc (YYSTYPE): Likewise.
5831 * data/yacc.c (YYSTYPE): Likewise.
5832 * src/output.c (prepare): Output tag_seen_flag.
5833 * src/parse-gram.y (declaration, grammar_declaration):
5834 Use 'union_seen' rather than 'typed' to determine whether
5835 %union has been seen, since grammars can now be typed without
5836 %union.
5837 (symbol_declaration, type.opt, symbol_def):
5838 Keep track of whether a tag has been seen.
5839 * src/reader.c (union_seen, tag_seen): New vars.
5840 (typed): remove.
5841 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5842 * src/scan-code.l (untyped_var_seen): New variable.
5843 (handle_action_dollar): Adjust to above changes.
5844 (handle_action_dollar, handle_action_at):
5845 Improve overflow checking for outlandish numbers.
5846 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5847 avoid new diagnostics generated by above changes.
5848 * tests/regression.at (YYSTYPE typedef): Add test to check
5849 for type tags without %union.
5850
5851 * src/symlist.c (symbol_list_length): Return int, not unsigned
5852 int, since callers expect int. This may need to get revisited
5853 once we have proper integer overflow checking.
5854
5855 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5856 object is now static.
5857
5858 * src/getargs.c (flags_argmatch): Return void, not int,
5859 to pacify ./configure --enable-gcc-warnings.
5860
5861 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5862 since last_string is already defined to FLEX_PREFIX (last_string).
5863
5864 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5865
5866 Implement --warnings/-W.
5867 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5868 replaced by...
5869 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5870 Adjust callers.
5871 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5872 (warnings_args, warnings_types): New.
5873 (getargs, short_options, long_options): Accept -W/--warnings.
5874 Sort the options by alphabetical order, upper case letter right
5875 before its lower case.
5876
5877 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5878
5879 Change %merge result type clash warnings to errors. Discussed at
5880 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5881 * src/reader.c (record_merge_function_type): Use complain_at.
5882 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5883 declared later): Update test case results.
5884
5885 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5886
5887 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5888 to be in alphabetical order.
5889 (trace_args): Spelling fixes.
5890
5891 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5892
5893 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5894 so they don't collide with user-defined macros.
5895 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5896 this was never guaranteed, and now that we're using gnulib stdint,
5897 which defines int_fast16_t to long int, the problem is exposed.
5898
5899 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5900
5901 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5902 need the full POSIX semantics (and weren't implementing them
5903 anyway).
5904
5905 Adjust to Autoconf 2.60 and today's gnulib.
5906 * bootstrap (gnulib_modules): Add stdint.
5907 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5908 no longer copies it.
5909 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5910 since stdint needs the former and wcwidth (which is now required
5911 by mbswidth) needs the latter.
5912 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5913 work around a compatibility glitch between gettext 0.14.6 and
5914 Autoconf 2.60.
5915 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5916 Do not check for uintptr_t, since new stdint module does the right
5917 thing.
5918 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5919 Add stdint.h, stdint_.h, wcwidth.h.
5920 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5921 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5922 stdint.m4, wchar_t.m4, wcwidth.m4.
5923 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5924 usual order for ../lib/*.h files.
5925 (file_name_split): Use last_component, not base_name, to adjust
5926 to gnulib changes.
5927 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5928 for ../lib/*.h files.
5929 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5930 Define unconditionally, since we now assume the stdint module.
5931 * src/scan-skel.l: Include <dirname.h>.
5932 (BASE_QPUTS): Use last_component, not base_name.
5933 * src/system.h: Include <unlocked-io.h> in the usual order
5934 for ../lib/*.h files. Include <stdint.h> unconditionally,
5935 since we now use the stdint module.
5936 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5937 HAVE_UINTPTR_T, since we now use the stdint module.
5938 (base_name): Remove decl, since files now include <dirname.h>
5939 to get the decl.
5940
5941 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5942
5943 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5944 New, default to 1.
5945 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5946 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5947 default.
5948 * tests/calc.at: Adjust.
5949
5950 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5951
5952 * data/c.m4 (b4_basename): New.
5953 (b4_syncline): Also output the location of its invocation (from
5954 the skeleton).
5955 (b4_user_action, b4_define_user_action, b4_user_actions)
5956 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5957 (b4_user_stype): New.
5958 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5959
5960 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5961
5962 In the grammar file, the first column is 1 not 0 on the first line as
5963 on every other line.
5964 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5965 * tests/input.at (Torturing the Scanner): Update output.
5966
5967 * src/scan-gram.l (scanner_cursor): Declare it static.
5968
5969 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5970
5971 In warnings, say "previous declaration" rather than "first
5972 declaration".
5973 * src/symtab.c (redeclaration): Do that here.
5974 * src/reader.c (record_merge_function_type): In the case of a result
5975 type clash, report the previous declaration rather than the very first
5976 one in the grammar file.
5977 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5978 declared later): Add a third declaration to check this behavior.
5979 * tests/input.at (Incompatible Aliases): Update output.
5980
5981 2006-06-27 Akim Demaille <akim@epita.fr>
5982
5983 * doc/Doxyfile.in: New.
5984 * doc/Makefile.am: Use it.
5985 * src/lalr.h, src/symtab.h: Initial doxygenation.
5986
5987 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5988
5989 Don't miss %merge result type warnings just because the LHS types are
5990 declared after the %merge. This continues the effort of the previous
5991 patch.
5992 * src/reader.c (get_merge_function): Don't set the merger type yet.
5993 (record_merge_function_type): New function for setting the merger type
5994 and checking for clashes.
5995 (grammar_current_rule_merge_set): Set the location of the %merge for
5996 the current rule.
5997 (packgram): Invoke record_merge_function_type for each rule now that
5998 all symbol type declarations have been parsed.
5999 * src/reader.h (merger_list.type_declaration_location): New member
6000 storing the location of the first %merge from which the type for this
6001 merging function was derived.
6002 * src/symlist.h (symbol_list.merger_declaration_location): New member
6003 storing the location of a rule's %merge, if any.
6004 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
6005 declared later): New test to catch the error fixed by the above patch.
6006
6007 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6008
6009 Get action warnings (grammar_rule_check) right even when symbol
6010 declarations appear after the rules. Discussed at
6011 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
6012 and
6013 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
6014 Don't mistake the type of $$ in a midrule to be that of its parent
6015 rule's $$.
6016 * src/reader.c (grammar_current_rule_end): Don't invoke
6017 grammar_rule_check yet since not all symbol declarations may have been
6018 parsed yet.
6019 (grammar_midrule_action): Likewise.
6020 Don't record whether the midrule's $$ has been used yet since actions
6021 haven't been translated yet.
6022 Record the midrule's parent rule and its RHS index within the parent
6023 rule.
6024 (grammar_current_rule_action_append): Don't translate the action yet
6025 since not all symbol declarations may have been parsed yet and, thus,
6026 warnings about types for $$, $n, @$, and @n can't be reported yet.
6027 (packgram): Translate the action and invoke grammar_rule_check now that
6028 all symbol declarations have been parsed.
6029 * src/scan-code.l (handle_action_dollar): Now that this is invoked
6030 after parsing the entire grammar file, the symbol list here in the case
6031 of a midrule is actually the midrule's empty RHS, so reference its
6032 parent rule's RHS where necessary.
6033 On the other hand, now that you can already know it's a midrule, you
6034 aren't forced to think $$ has the same type as its parent rule's $$.
6035 (handle_action_at): In the case of a midrule, reference the parent rule
6036 where necessary.
6037 * src/symlist.c (symbol_list_new): Initialize new midrule-related
6038 members.
6039 (symbol_list_length): Now that this is invoked after all rules have
6040 been parsed, a NULL symbol (rather than a NULL symbol list node)
6041 terminates a rule. symbol_list_print already does this correctly.
6042 * src/symlist.h (symbol_list.midrule_parent_rule,
6043 symbol_list.midrule_parent_rhs_index): New members so that midrules can
6044 remember their relationships with their parents.
6045 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
6046 fixed by the above patch.
6047 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
6048 implementing...
6049 (Unused values): ... this old test case and...
6050 (Unused values before symbol declarations): ... this new test case.
6051 This one is the same as `Unused values' except that all symbol
6052 declarations appear after the rules in order to catch the rest of the
6053 errors fixed by the above patch.
6054
6055 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
6056
6057 More cleanup.
6058 * src/reader.c (current_rule): Declare it static since it's no longer
6059 used outside this file.
6060 (grammar_current_rule_action_append): Remove redundant arguments from
6061 translate_rule_action invocation.
6062 * src/reader.h (current_rule): Remove this unused extern.
6063 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
6064 * src/scan-code.l (translate_rule_action): Likewise.
6065
6066 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
6067
6068 Clean up yesterday's patch.
6069 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
6070 to...
6071 * src/reader.c (grammar_current_rule_action_append): ... here for
6072 consistency with grammar_current_rule_symbol_append.
6073 * tests/regression.at (Braced code in declaration in rules section):
6074 Make yyerror and yylex static as usual.
6075
6076 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
6077
6078 Fix bug that mistakes braced code in a declaration in the rules section
6079 to be a rule action. Mentioned at
6080 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
6081 * src/scan-gram.l: Move midrule action detection from the start of the
6082 scanning of any braced code to...
6083 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
6084 action. For readability, use $2 and @2 rather than the equivalent
6085 global variables.
6086 * tests/regression.at (Braced code in declaration in rules section):
6087 New test to catch the error fixed by the above patch.
6088
6089 Work on code readability some.
6090 * src/scan-code.l (current_rule): Get rid of this misleading and
6091 redundant declaration: it's actually extern'ed in reader.h.
6092 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
6093 translate_action): Add a rule argument and use it instead of the global
6094 current_rule.
6095 (translate_rule_action): This already receives current_rule through an
6096 argument, so pass it on to translate_action instead of assigning
6097 current_rule to current_rule.
6098 (translate_symbol_action, translate_code): Pass rule = NULL to
6099 translate_action.
6100
6101 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
6102
6103 Rename %before-definitions to %start-header and %after-definitions to
6104 %end-header. Don't use these declarations to separate pre-prologue
6105 blocks from post-prologue blocks. Add new order-independent
6106 declarations %before-header and %after-header as alternatives to the
6107 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
6108 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
6109 * NEWS (2.3+): Update for these changes.
6110 * data/glr.c (b4_before_definitions): Update to...
6111 (b4_start_header): ... this.
6112 (b4_after_definitions): Update to...
6113 (b4_end_header): ... this.
6114 * data/glr.cc: Likewise.
6115 * data/lalr1.cc: Likewise.
6116 * data/yacc.c: Likewise.
6117 * doc/bison.texinfo (The prologue): Update names, and replace remaining
6118 prologue blocks with %*-header declarations.
6119 (Calc++ Parser): Likewise.
6120 (Decl Summary): Update names.
6121 (Table of Symbols): Update description.
6122 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
6123 (PERCENT_END_HEADER): ... this.
6124 (PERCENT_BEFORE_DEFINITIONS): Update to...
6125 (PERCENT_START_HEADER): ... this.
6126 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6127 (declaration): Update token names and m4 macro names.
6128 When parsing %end-header and %start-header, invoke translate_code
6129 before muscle_code_grow, and no longer set global booleans to remember
6130 whether these declarations have been seen.
6131 Parse new %after-header and %before-header.
6132 * src/reader.c (before_definitions, after_definitions): Remove.
6133 (prologue_augment): Accept a new bool argument to specify whether to
6134 augment the pre-prologue or post-prologue.
6135 * src/reader.h (before_definitions, after_definitions): Remove these
6136 extern's.
6137 (prologue_augment): Add new bool argument.
6138 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
6139 (PERCENT_END_HEADER): ... this.
6140 (PERCENT_BEFORE_DEFINITIONS): Update to...
6141 (PERCENT_START_HEADER): ... this.
6142 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
6143 * tests/actions.at (Printers and Destructors): Update names.
6144
6145 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
6146
6147 Add comparison operators for C++ location classes. Discussed at
6148 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
6149 * data/c++.m4 (b4_define_location_comparison): New boolean %define
6150 declaration indicating whether filename_type has an operator==. If
6151 filename_type is `std::string', it defaults to `1', `0' otherwise.
6152 * data/location.cc: Iff b4_define_location_comparison is `1', add
6153 operator== and operator!= for class position and for class location.
6154
6155 Some minor fixes.
6156 * src/scan-action.l: Remove unused file.
6157 * src/symtab.c (symbol_printer_set): Use printer_location not
6158 destructor_location.
6159 * src/symtab.h (struct symbol): Replace incorrect source comment for
6160 printer members.
6161 * tests/input.at (Incompatible Aliases): Update output with correct
6162 printer location.
6163
6164 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
6165
6166 Don't put the pre-prologue in the header file. For the yacc.c code
6167 file and the glr.c header and code files, move the pre-prologue before
6168 the token definitions. Add new %before-definitions and
6169 %after-definitions to declare code that will go in both the header file
6170 and code file. Discussed at
6171 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6172 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6173 and
6174 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6175 * NEWS (2.3+): Describe these changes.
6176 * data/glr.c (b4_pre_prologue): Move from within to before...
6177 (b4_shared_declarations): ... this.
6178 Add new b4_before_definitions before b4_token_enums.
6179 Add new b4_after_definitions at the end.
6180 * data/glr.cc (b4_pre_prologue): Replace with...
6181 (b4_before_definitions): ... this in the header file.
6182 (b4_after_definitions): New near the end of the header file.
6183 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6184 code file right before including the header file.
6185 (b4_before_definitions): New in the previous position of
6186 b4_pre_prologue in the header file.
6187 (b4_after_definitions): New near the end of the header file.
6188 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6189 (b4_token_enums_defines): In the code file, move to right before
6190 YYSTYPE for consistency with the header file.
6191 (b4_before_definitions): New right before b4_token_enums_defines in
6192 both the header and code file.
6193 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6194 header and code file.
6195 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6196 of prologues for %union dependencies.
6197 (Decl Summary): In %defines description, mention the effect of
6198 %before-definitions and %after-definitions on the header file.
6199 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6200 than in the pre-prologue so that make check succeeds.
6201 (Table of Symbols): Add entries for %before-definitions and
6202 %after-definitions.
6203 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6204 %before-definitions.
6205 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6206 (declaration): Parse those declarations and append to
6207 b4_before_definitions and b4_after_definitions, respectively.
6208 * src/reader.c (before_definitions, after_definitions): New bools to
6209 track whether those declarations have been seen.
6210 (prologue_augment): Add to the post-prologue if %union,
6211 %before-definitions, or %after-definitions has been seen.
6212 * src/reader.h (before_definitions, after_definitions): New extern's.
6213 * src/scan-gram.l: Scan the new declarations.
6214 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6215 prologue block in a %before-definitions or a %after-definitions based
6216 on whether the %union is declared.
6217 * tests/regression.at (Early token definitions with --yacc, Early token
6218 definitions without --yacc): Move tests for token definitions into the
6219 post-prologue since token names are no longer defined in the
6220 pre-prologue.
6221
6222 2006-06-20 Akim Demaille <akim@epita.fr>
6223
6224 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6225 (symbol_get): Use it.
6226 * src/parse-gram.y: Use it.
6227
6228 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6229
6230 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6231 build succeeds when configured with --enable-gcc-warnings.
6232
6233 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6234
6235 * src/parse-gram.y (char_name): New function.
6236 (CHAR, STRING, string_content): For %printer, properly escape.
6237 (ID): Prefer fputs to fprintf.
6238 (id): Reindent to be consistent with other rules.
6239 Properly quote char.
6240
6241 The Translation Project changed its way of publishing translations
6242 to maintainers. I haven't received any responses to my request
6243 for supporting the old way, or for documenting the new way. I
6244 have modified 'bootstrap' to use screen scraping
6245 (in this case, HTML scraping). This is unreliable and inelegant,
6246 but I don't see any better way. Yuck.
6247 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6248 (get_translations): New function, which uses HTML scraping to
6249 deduce locations of latest translations.
6250 Use this function to grab both bison and bison-runtime .po files.
6251 Don't bother priming the pump for the runtime-po domain any more,
6252 as it's now translated better than bison is.
6253
6254 2006-06-19 Akim Demaille <akim@epita.fr>
6255
6256 * src/scan-gram.l: No longer "parse" things after `%union' until
6257 `{'. Rather, return a single "%union" token.
6258 No longer make symbols: return strings, and leave the conversion
6259 to symbols to the parser.
6260 (SC_PRE_CODE, token_type): Remove.
6261 * src/parse-gram.y (%union): New field `character'.
6262 Sort tokens.
6263 (CHAR): New token.
6264 (ID, ID_COLON): Now that the scanner no longer makes them
6265 identifiers, adjust all uses to invoke symbol_get.
6266 (id_colon): New, wraps the conversion from string to symbol.
6267 (%union): Accept a possible union_name.
6268 (symbol): Now can be a char.
6269 * data/c.m4 (b4_union_name): Leave a default value.
6270 * data/glr.c, data/yacc.c: Use it.
6271
6272 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6273
6274 For associating token numbers with token names for "yacc.c", don't use
6275 #define statements unless `--yacc' is specified; always use enum
6276 yytokentype. Most important discussions start at:
6277 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6278 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6279 and
6280 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6281 * NEWS (2.3+): Mention.
6282 * data/c.m4 (b4_yacc_if): New.
6283 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6284 token #define's.
6285 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6286 on token name definitions.
6287 * src/getargs.c (usage): Capitalize `Yacc' in English.
6288 * src/output.c (prepare): Define b4_yacc_flag.
6289 * tests/regression.at (Early token definitions): Test that tokens names
6290 are defined before the pre-prologue not just before the post-prologue.
6291 Remove this test case and copy to...
6292 (Early token definitions with --yacc): ... this to test #define's.
6293 (Early token definitions without --yacc): ... and this to test enums.
6294
6295 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6296
6297 * NEWS: Reword the post-2.3 change to not be so optimistic about
6298 removing the old "look-ahead" spelling.
6299 Update previous look-ahead/lookahead change reports.
6300 * REFERENCES: look-ahead -> lookahead (since that's
6301 what he actually wrote).
6302 * doc/refcard.tex: look ahead -> lookahead,
6303 look-ahead -> lookahead
6304
6305 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6306
6307 For consistency, use `lookahead' instead of `look-ahead' or
6308 `look_ahead'. Discussed starting at
6309 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6310 and then at
6311 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6312 * NEWS: For the next release, note the change to `--report'.
6313 * TODO, doc/bison.1: Update English.
6314 * doc/bison.texinfo: Update English.
6315 (Understanding Your Parser, Bison Options): Document as
6316 `--report=lookahead' rather than `--report=look-ahead'.
6317 * src/conflicts.c: Update English in comments.
6318 (lookahead_set): Rename from look_ahead_set.
6319 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6320 (resolve_sr_conflict): Rename local look_ahead_tokens to
6321 lookahead_tokens, and update other uses.
6322 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6323 count_rr_conflicts, conflicts_free): Update uses.
6324 * src/getargs.c (report_args): Move "lookahead" before alternate
6325 spellings.
6326 (report_types): Update uses.
6327 (usage): For `--report' usage description, state `lookahead' spelling
6328 rather than `look-ahead'.
6329 * src/getargs.h (report.report_lookahead_tokens): Rename from
6330 report_look_ahead_tokens.
6331 * src/lalr.c: Update English in comments.
6332 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6333 (state_lookahead_tokens_count): Rename from
6334 state_look_ahead_tokens_count.
6335 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6336 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6337 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6338 Update other uses.
6339 Update English in output.
6340 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6341 * src/print.c: Update English in comments.
6342 (lookahead_set): Rename from look_ahead_set.
6343 (print_reduction): Rename argument lookahead_token from
6344 look_ahead_token.
6345 (print_core, state_default_rule, print_reductions, print_results):
6346 Update uses.
6347 * src/print_graph.c: Update English in comments.
6348 (print_core): Update uses.
6349 * src/state.c: Update English in comments.
6350 (reductions_new): Update uses.
6351 (state_rule_lookahead_tokens_print): Rename from
6352 state_rule_look_ahead_tokens_print, and update other uses.
6353 * src/state.h: Update English in comments.
6354 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6355 (state_rule_lookahead_tokens_print): Rename from
6356 state_rule_look_ahead_tokens_print.
6357 * src/tables.c: Update English in comments.
6358 (conflict_row, action_row): Update uses.
6359 * tests/glr-regression.at
6360 (Incorrect lookahead during deterministic GLR,
6361 Incorrect lookahead during nondeterministic GLR): Rename
6362 print_look_ahead to print_lookahead.
6363 * tests/torture.at: Update English in comments.
6364 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6365 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6366 (Many lookahead tokens): Update uses.
6367 * data/glr.c: Update English in comments.
6368 * lalr1.cc: Likewise.
6369 * yacc.c: Likewise.
6370 * src/conflicts.h: Likewise.
6371 * src/lalr.h: Likewise.
6372 * src/main.c: Likewise.
6373 * src/output.c: Likewise.
6374 * src/parse-gram.c: Likewise.
6375 * src/tables.h: Likewise.
6376 * tests/calc.at: Likewise.
6377
6378 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6379
6380 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6381
6382 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6383
6384 * TODO: Add request from Nelson H. F. Beebe to be able to install
6385 Bison without installing the yacc script.
6386
6387 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6388
6389 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6390 and yytext if they're already #define'd.
6391 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6392 * src/scan-code-c.c: ... here.
6393 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6394 <config.h>.
6395
6396 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6397
6398 Get Bison to build again when configured with --enable-gcc-warnings.
6399 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6400 missing #include's.
6401 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6402 loc argument as it shadows a global.
6403 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6404 invocation.
6405
6406 * src/.cvsignore: Add scan-code.c.
6407
6408 2006-06-07 Akim Demaille <akim@epita.fr>
6409
6410 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6411 to...
6412 * src/scan-code.l: here.
6413 * tests/input.at (Torturing the Scanner): Fix another location
6414 error.
6415
6416 2006-06-07 Akim Demaille <akim@epita.fr>
6417
6418 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6419
6420 2006-06-06 Akim Demaille <akim@epita.fr>
6421
6422 Extract the parsing of user actions from the grammar scanner.
6423 As a consequence, the relation between the grammar scanner and
6424 parser is much simpler. We can also split "composite tokens" back
6425 into simple tokens.
6426 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6427 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6428 rename as...
6429 * src/location.h, src/location.c (add_column_width)
6430 (location_compute): these.
6431 Fix the column count: the initial column is 0.
6432 (location_print): Be robust to ending column being 0.
6433 * src/location.h (boundary_set): New.
6434 * src/main.c: Adjust to scanner_free being renamed as
6435 gram_scanner_free.
6436 * src/output.c: Include scan-code.h.
6437 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6438 Use boundary_set.
6439 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6440 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6441 which is now, again, a separate token.
6442 Adjust all dependencies.
6443 Whereever actions with $ and @ are used, use translate_code.
6444 (action): Remove this nonterminal which is now useless.
6445 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6446 (grammar_current_rule_action_append): Use translate_code.
6447 (packgram): Bound check ruleno, itemno, and rule_length.
6448 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6449 (last_string, last_braced_code_loc, max_left_semantic_context)
6450 (scanner_initialize, scanner_free, scanner_last_string_free)
6451 (gram_out, gram_lineno, YY_DECL_): Move to...
6452 * src/scan-gram.h: this new file.
6453 (YY_DECL): Rename as...
6454 (GRAM_DECL): this.
6455 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6456 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6457 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6458 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6459 Move these declarations, and...
6460 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6461 these to...
6462 * src/flex-scanner.h: this new file.
6463 * src/scan-gram.l (rule_length, rule_length_overflow)
6464 (increment_rule_length): Remove.
6465 (last_braced_code_loc): Rename as...
6466 (gram_last_braced_code_loc): this.
6467 Adjust to the changes of the parser.
6468 Move all the handling of $ and @ into...
6469 * src/scan-code.l: here.
6470 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6471 (handle_action_dollar, handle_action_at): Move to...
6472 * src/scan-code.l: here.
6473 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6474 scan-code.h, scan-code-c.c, scan-gram.h.
6475 (EXTRA_bison_SOURCES): Add scan-code.l.
6476 (BUILT_SOURCES): Add scan-code.c.
6477 (yacc): Be robust to white spaces.
6478
6479 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6480 * tests/regression.at: Adjust the column numbers.
6481 * tests/regression.at: Adjust the error message.
6482
6483 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6484
6485 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6486 Use Akim's wording from
6487 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6488
6489 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6490
6491 Between Bison releases, manually append `+' to the previous Bison
6492 release number, and use that as a signal to automatically print the
6493 ChangeLog's CVS Id keyword from --version. Discussed starting at
6494 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6495 * ChangeLog: Add Id header.
6496 * configure.ac (AC_INIT): Append `+' to `2.3'.
6497 * src/.cvsignore: Add revision.c.
6498 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6499 (BUILT_SOURCES): Add revision.c.
6500 (revision.c): New target rule. This file defines a new global variable
6501 named revision. It initializes it with either the Id from ChangeLog
6502 or, if VERSION doesn't contain `+', with the empty string.
6503 * src/getargs.c (version): Print the value of revision.
6504 * src/revision.h: Extern revision.
6505
6506 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6507
6508 * NEWS: Version 2.3.
6509 * configure.ac (AC_INIT): Likewise.
6510
6511 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6512
6513 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6514 with no arguments, not as an object-like macro. This is for
6515 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6516 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6517 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6518 Document this.
6519
6520 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6521
6522 * src/getargs.c (usage): Back out yesterday's modification of the
6523 --help output so that we don't have to wait for translation before
6524 releasing 2.3.
6525
6526 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6527
6528 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6529 Problem reported by Akim Demaille.
6530
6531 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6532
6533 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6534
6535 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6536
6537 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6538 generated source code. Problem reported by Frans Englich in
6539 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6540
6541 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6542
6543 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6544 shell, not within 'make', so that 'make' by an ordinary builder
6545 (using GNU make) does not worry about configuring gzip. This also
6546 works around a bug reported independently by Keith Thompson and by
6547 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6548 stderr rather than stdout, messing up the build logs.
6549
6550 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6551
6552 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6553 to make sure that YYID will never be unused. This fixes a 'make
6554 maintainer-check' failure caused by the recent changes to the 'Trivial
6555 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6556 not used.
6557 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6558
6559 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6560
6561 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6562 state before an empty RHS is always resolved here. Only the location
6563 of that state is guaranteed to be resolved, and that's enough. This
6564 fixes the remaining bug reported by Derek M. Jones in
6565 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6566 * tests/glr-regression.at (Uninitialized location when reporting
6567 ambiguity): Test the above case.
6568 Also, the embedded comments in this test case claim it checks the case
6569 of an empty RHS that has inherited the initial location. However, the
6570 corresponding LHS was already resolved, so yyresolveLocations didn't
6571 actually have reason to modify it. Fix this by forcing
6572 nondeterministic operation at the beginning of the parse.
6573
6574 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6575
6576 * data/c.m4 (b4_yy_symbol_print_generate):
6577 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6578 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6579 of the bugs reported today by Derek M Jones in
6580 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6581 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6582 defined to be a type name without parens or brackets.
6583 (Location Type): Similarly for YYLTYPE.
6584 * tests/regression.at (Trivial grammars): Put in a test for this
6585 bug that will be caught by 'make maintainer-check' (though not,
6586 alas, by 'make check' unless your compiler is picky).
6587
6588 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6589
6590 * NEWS: Version 2.2.
6591 * configure.ac (AC_INIT): Likewise.
6592
6593 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6594
6595 * data/glr.c (yyreportTree): Make room in yystates for the state
6596 preceding the RHS. This fixes the segmentation fault reported by Derek
6597 M. Jones in
6598 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6599 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6600 to the user. Reported for yyreportTree by Derek M. Jones later in the
6601 same thread.
6602 * THANKS: Add Derek M. Jones.
6603 Update my email address.
6604 Fix typo in Steve Murphy's name.
6605
6606 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6607
6608 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6609 checking against YYLAST that caused the parser to miss a potential
6610 alternative in its diagnostic.
6611 Problem reported by Maria Jose Moron Fernandez in
6612 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6613 * data/lalr1.cc (yysyntax_error_): Likewise.
6614 * data/yacc.c (yysyntax_error): Likewise.
6615 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6616 tokens, in case we run into an older C compiler.
6617 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6618 Use them to check for the off-by-one error fixed above.
6619
6620 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6621 YYSIZE_T, not size_t.
6622 * tests/regression.at (Trivial grammars): New test, to catch
6623 the error fixed by the above patch.
6624
6625 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6626
6627 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6628 scheme.
6629 Reported by Steve Murphy.
6630
6631 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6632
6633 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6634 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6635
6636 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6637
6638 Implement --trace=m4.
6639 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6640 * src/output.c (output_skeleton): When set, pass -dV to m4.
6641
6642 Factor the handling of flags in m4.
6643 * src/output.c (prepare): Rename the muscle names debug, defines,
6644 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6645 * data/c.m4: Adjust.
6646 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6647 Use b4_define_flag_if to define other b4_FLAG_if macros.
6648 (b4_location_if): As a consequence, rename as...
6649 (b4_locations_if): this, for consistency.
6650 Adjust all the skeletons.
6651
6652 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6653
6654 * etc/bench.pm: Shorten bench names.
6655
6656 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6657
6658 * src/output.h, src/output.c (error_verbose): Move to...
6659 * src/getargs.h, src/getargs.c: here.
6660 Sort the flags.
6661 Adjust dependencies.
6662
6663 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6664
6665 * data/c.m4 (b4_copyright): Put the special exception for Bison
6666 skeletons here, so we don't have to put it in each skeleton. All
6667 uses changed. Suggested by Akim Demaille. Also, wrap the
6668 copyright notice, in case it is longer than 80 columns. Replace
6669 comma by newline after title.
6670
6671 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6672
6673 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6674 incompatibility, not a bug. Mention that it wasn't fixed as of
6675 flex 2.5.33.
6676
6677 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6678
6679 * examples/extexi: Enforce the precedence of concatenation over
6680 >>.
6681 Reported by Tommy Nordgren.
6682
6683 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6684
6685 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6686 with the member "token".
6687 Reported by Martin Nylin.
6688
6689 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6690
6691 * data/glr.c: Switch to Bison 2.2 special-exception language in
6692 the copyright notice. Use more-regular format for titles and
6693 copyright notices.
6694 * data/glr.cc: Likewise.
6695 * data/location.cc: Likewise.
6696 * data/yacc.cc: Likewise.
6697 * doc/bison.texinfo (Conditions): Document this.
6698 * NEWS: likewise. Upgrade version to 2.2.
6699
6700 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6701
6702 * data/glr.cc: Remove dead code.
6703
6704 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6705
6706 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6707 that variable and the line breaks the bootstrap. Problem reported
6708 by Juan M. Guerrero.
6709
6710 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6711
6712 * doc/bison.texinfo (Multiple start-symbols): New.
6713
6714 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6715
6716 * etc/README, etc/bench.pl: New.
6717
6718 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6719
6720 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6721 rule.
6722 Reported by Mickael Labau.
6723 * tests/input.at (Torturing the Scanner): Test it.
6724
6725 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6726
6727 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6728 Problem reported by Bob Rossi.
6729
6730 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6731
6732 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6733 and didn't really work.
6734 For the index, use @ifnotinfo, not @iftex.
6735 Minor cleanups of spacing and terminology.
6736
6737 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6738
6739 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6740 of AT_NAME_PREFIX when %name-prefix is not used.
6741
6742 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6743
6744 Apply --prefix to C++ skeletons too: they change the namespace.
6745 The test suite already exercize these cases.
6746 * data/c++.m4 (b4_namespace): New.
6747 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6748 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6749 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6750 * doc/bison.texinfo: Document it.
6751 (Option Cross Key): Use @multitable in all formats. It looks
6752 nicer, even in TeX outputs.
6753 (Rules): Use the same code whatever the output type is.
6754 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6755 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6756 * tests/calc.at: Use it, instead of hard coding `yy'.
6757
6758 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6759
6760 * TODO: Remove dead items.
6761
6762 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6763
6764 * doc/FAQ: Remove, merged into...
6765 * doc/bison.texinfo (FAQ): this.
6766 * doc/Makefile.am (EXTRA_DIST): Adjust.
6767
6768 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6769
6770 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6771 even if empty.
6772 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6773 * doc/bison.texinfo (Calc++ Scanner): Use it.
6774
6775 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6776
6777 Fix two nits reported by twlevo, plus one more that I discovered.
6778
6779 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6780 this is the usual Bison style.
6781 * src/location.h (location_print): Likewise.
6782
6783 * src/reader.h (token_name): Likewise.
6784
6785 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6786
6787 Fix some nits reported by twlevo.
6788 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6789 and "POSIX". Use more-modern syntax for URLs. Mention C++
6790 and ask for Java. Don't hardwire OS version numbers. Add
6791 copyright notice.
6792 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6793 * src/conflicts.c (solved_conflicts_obstack): Now static.
6794
6795 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6796
6797 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6798 page. Say "you can use it" not "you may use it" as on the web page;
6799 we're describing capabilities not granting permission.
6800
6801 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6802
6803 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6804 shadowing warnings. Use usual patter for iterating through RHS.
6805 * tests/glr-regression.at
6806 (Uninitialized location when reporting ambiguity):
6807 Modify yylex so that it uses its argument, rather than trying
6808 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6809 const char -> char const.
6810
6811 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6812 Don't use tabs inside commands; it messes up 'ps'.
6813 Problem reported by twlevo.
6814
6815 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6816
6817 * tests/glr-regression.at (Uninitialized location when reporting
6818 ambiguity): New test case.
6819 * data/glr.c (yyresolveLocations): New function, which uses
6820 YYLLOC_DEFAULT.
6821 (yyresolveValue): Invoke yyresolveLocations before reporting an
6822 ambiguity.
6823 * doc/bison.texinfo (Default Action for Locations): Note
6824 YYLLOC_DEFAULT's usage for ambiguity locations.
6825 (GLR Semantic Actions): Cross-reference those notes.
6826
6827 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6828
6829 * tests/glr-regression.at (Leaked semantic values when reporting
6830 ambiguity): Remove unnecessary union and type declarations.
6831 (Leaked lookahead after nondeterministic parse syntax error): New test
6832 case.
6833 * data/glr.c (yyparse): Check for zero stacks remaining before
6834 attempting to shift the lookahead so that you don't lose it.
6835
6836 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6837
6838 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6839 * tests/glr-regression.at (Leaked semantic values when reporting
6840 ambiguity): New test case.
6841 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6842 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6843 now unnecessary yystackp parameter.
6844 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6845 destructors can be called.
6846
6847 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6848 in existing testcases.
6849
6850 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6851
6852 Don't leak semantic values for parent RHS when a user action cuts the
6853 parser, and clean up related code a bit.
6854 * tests/glr-regression.at (Leaked merged semantic value if user action
6855 cuts parse): Rename to...
6856 (Leaked semantic values if user action cuts parse): ... this. Add check
6857 for leaked parent RHS values.
6858 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6859 between an unresolved state (non-empty chain of semantic options) and
6860 an incomplete one (signaled by an empty chain).
6861 (yyresolveStates): Document the interface. Move all manipulation of a
6862 successfully or unsuccessfully resolved yyGLRState to...
6863 (yyresolveValue): ... here so that yyresolveValue always leaves a
6864 yyGLRState with consistent data and thus is easier to understand.
6865 Remove the yyvalp and yylocp parameters since they are always just
6866 taken from the yys parameter. When reporting a discarded merged value
6867 in debugging output, note that it is incompletely merged. Document the
6868 interface.
6869 (yyresolveAction): If resolving any of the RHS states fails, destroy
6870 them all rather than leaking them. Thus, as long as user actions are
6871 written to clean up the RHS correctly, yyresolveAction always cleans up
6872 the RHS of a semantic option. Document the interface.
6873
6874 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6875
6876 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6877 led to a segmentation fault in GNU Pascal. Problem reported
6878 by Waldek Hebisch.
6879
6880 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6881
6882 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6883 mid-rule action inside a nonterminal symbol in order to declare a
6884 destructor for its semantic value.
6885
6886 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6887
6888 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6889 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6890 __cplusplus && ! defined _STDLIB_H && !
6891 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6892 defined free))]: Include <stdlib.h> rather than rolling our own
6893 declarations of malloc and free, to avoid problems with
6894 incompatible declarations (using 'throw') C++'s stdlib.h. This
6895 should fix Debian bug 340012
6896 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6897 reported by Guillaume Melquiond.
6898
6899 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6900
6901 * NEWS: Clarify symbols versus types in unused-value warnings.
6902
6903 * configure.ac (AC_INIT): Bump version number.
6904
6905 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6906
6907 * NEWS: Version 2.1a.
6908 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6909 since C99 requires this.
6910
6911 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6912
6913 * m4/c-working.m4: New file.
6914 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6915
6916 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6917
6918 * Makefile.maint: Merge from coreutils.
6919
6920 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6921
6922 More portability fixes for problems summarized by Nelson H. F. Beebe.
6923
6924 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6925 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6926 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6927 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6928 messes up because C++ code is compiled in 32-bit mode but linked
6929 in 64-bit mode.
6930
6931 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6932
6933 More portability fixes for problems summarized by Nelson H. F. Beebe.
6934
6935 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6936 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6937
6938 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6939 nodist_PROGRAMS, since we don't need to actually compile the
6940 example if we're just doing a plain 'make'. This avoids bothering
6941 the installer unnecessarily about problems due to weird C++
6942 compilers.
6943
6944 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6945
6946 More portability fixes for problems summarized by Nelson H. F. Beebe.
6947
6948 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6949 than #include "...", and compile with -I'.'. The old method was
6950 not portable, according to Posix and the C standard, and it does
6951 not work with Sun C 5.7, where previous #line directives affect
6952 the working directory used in later #include "..." directives.
6953
6954 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6955
6956 Various DJGGP specific issues in /djgpp
6957
6958 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6959
6960 More portability fixes for problems summarized by Nelson H. F. Beebe.
6961
6962 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6963 '#include <map>' works and that you can apply ++ to iterators.
6964
6965 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6966
6967 Work around portability problems summarized by Nelson H. F. Beebe in
6968 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6969
6970 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6971 that '#include <string>' works.
6972
6973 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6974 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6975 "warning: sorry: semantics of inline function static data `const
6976 unsigned char translate_table[262]' are wrong (you'll wind up with
6977 multiple copies)".
6978
6979 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6980 or, xor to not_, and_, or_, and xor_, respectively. This works
6981 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6982 random system header somewhere that includes the equivalent of
6983 <iso646.h>.
6984
6985 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6986 -E" works; it apparently doesn't work with PathScale EKO Compiler
6987 Suite Version 2.0.
6988
6989 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6990
6991 During deterministic GLR operation, user actions should be able to
6992 influence the parse by changing yychar. To make this easier to fix and
6993 to make glr.c easier to evolve in general, don't maintain yytoken in
6994 parallel with yychar; just compute yytoken when needed.
6995 * tests/glr-regression.at (Incorrect lookahead during deterministic
6996 GLR): Check that setting yychar in a user action has the intended
6997 effect.
6998 * data/glr.c (yyGLRStack): Remove yytokenp member.
6999 (yyclearin): Don't set *yytokenp.
7000 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
7001 yychar rather than *yytokenp to determine the current lookahead.
7002 Compute yytoken locally when needed.
7003 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
7004 point to.
7005
7006 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
7007 after `--report' documentation.
7008
7009 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
7010
7011 * src/parse-gram.y (grammar_declaration): Location of printer
7012 symbol is @1, not list->location. Bug reported by twlevo.
7013 * tests/input.at (Incompatible Aliases): Adjust to above change.
7014
7015 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
7016
7017 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
7018 all the test at once. This makes the output easier to read in the
7019 normal case.
7020
7021 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
7022 got from <http://bro-ids.org/download.html>. The bug is that
7023 when two actions appeared in succession, the second one was
7024 scanned before the first one was added to the grammar rule
7025 as a midrule action. Bison then output the incorrect warning
7026 "parse.y:905.17-906.36: warning: unused value: $3".
7027 * src/parse-gram.y (BRACED_CODE, action): These are no longer
7028 associated with a value.
7029 (rhs): Don't invoke grammar_current_rule_action_append.
7030 (action): Invoke it here instead.
7031 * src/reader.c (grammar_midrule_action): Now extern.
7032 (grammar_current_rule_action_append): Don't invoke
7033 grammar_midrule_action; that is now the scanner's job.
7034 * src/reader.h (last_string, last_braced_code_loc):
7035 (grammar_midrule_action): New decls.
7036 * src/scan-gram.l (last_string): Now extern, sigh.
7037 (last_braced_code_loc): New extern variable.
7038 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
7039 rule already has an action.
7040 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
7041 * tests/input.at (AT_CHECK_UNUSED_VALUES):
7042 Add some tests to check that the above changes fixed the bug.
7043
7044 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
7045
7046 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
7047 All used changed. Check whether the symbol has a destructor,
7048 not whether it is typed.
7049 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
7050 that the values are still reported as unused. All line numbers
7051 adjusted.
7052
7053 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
7054
7055 Work around a bug in bro 0.8, which underparenthesizes its
7056 definition of YYLLOC_DEFAULT.
7057 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
7058 their arguments.
7059 * data/lalr1.cc: Likewise.
7060 * data/yacc.cc: Likewise.
7061
7062 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
7063
7064 Work around a bug in Pike 7.0, and give the Pike folks a
7065 better way to override the usual int widths.
7066 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
7067 user can override the types.
7068 (short): #undef, to work around a bug in Pike 7.0.
7069 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
7070 (union yyalloc.yyss): Use yytype_int16 rather than short.
7071 All uses changed.
7072 (yysigned_char): Remove.
7073 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
7074 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
7075 * tests/regression.at (Web2c Actions): Adjust to above changes.
7076
7077 * src/reader.c (check_and_convert_grammar): New function.
7078 (reader): Close the input file even if something went wrong during
7079 parsing. Minor file descriptor leak reported by twlevo.
7080
7081 * src/assoc.c (assoc_to_string): Use a default: abort (); case
7082 to pacify gcc -Wswitch-default.
7083 * src/scan-gram.l (adjust_location): Use a default: break; case
7084 to pacify gcc -Wswitch-default.
7085 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
7086 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
7087 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
7088 Move these decls to scan-skel.l, since they don't need to be
7089 visible elsewhere.
7090 * src/scan-skel.l: Accept the above decls.
7091 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
7092 is used.
7093
7094 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
7095
7096 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
7097 since we don't want to insist on a version number at the start
7098 of the changelog every time.
7099 * Makefile.maint: Sync from coreutils a bit better.
7100 (sc_trailing_blank): Renamed from sc_trailing_space.
7101 All uses changed.
7102 (sc_no_if_have_config_h, sc_require_config_h):
7103 (sc_prohibit_assert_without_use): New rules.
7104 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
7105 (sc_dd_max_sym_length): Fix leading spaces in rule.
7106 (sc_system_h_headers): Prefix with @.
7107 (sc_useless_cpp_parens, m4-check): Output line numbers.
7108 (changelog-check): Allow version only in head.
7109 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
7110 satisfy new Makefile.maint rule.
7111 * data/glr.c: Likewise.
7112 * data/glr.cc: Likewise.
7113 * data/lalr1.cc: Likewise.
7114 * data/yacc.c: Likewise.
7115 * lib/ebitsetv.c: Likewise.
7116 * lib/lbitset.c: Likewise.
7117 * lib/subpipe.c: Likewise.
7118 * lib/timevar.c: Likewise.
7119 * src/system.h: Likewise.
7120 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
7121 * djgpp/Makefile.maint: Add copyright notice.
7122 * djgpp/README.in: Likewise.
7123 * djgpp/config.bat: Likewise.
7124 * djgpp/config.site: Likewise.
7125 * djgpp/config_h.sed: Likewise.
7126 * djgpp/djunpack.bat: Likewise.
7127 * djgpp/config.sed: Fix copyright notice to match standard format.
7128 * djgpp/subpipe.h: Likewise.
7129 * lib/bitsetv-print.c: Likewise.
7130 * lib/bitsetv.c: Likewise.
7131 * lib/subpipe.h: Likewise.
7132 * lib/timevar.c: Likewise.
7133 * lib/timevar.h: Likewise.
7134 * djgpp/subpipe.c: Use standard recipe for config.h.
7135 * lib/abitset.c: Likewise.
7136 * lib/bitset.c: Likewise.
7137 * lib/bitset_stats.c: Likewise.
7138 * lib/bitsetv-print.c: Likewise.
7139 * lib/bitsetv.c: Likewise.
7140 * lib/ebitsetv.c: Likewise.
7141 * lib/get-errno.c: Likewise.
7142 * lib/lbitset.c: Likewise.
7143 * lib/subpipe.c: Likewise.
7144 * lib/timevar.c: Likewise.
7145 * lib/vbitset.c: Likewise.
7146 * tests/local.at: Likewise.
7147 * src/scan-gram.l: Don't include verify.h, since system.h does
7148 that for us.
7149 * .x-sc_require_config_h: New file.
7150 * .x-sc_unmarked_diagnostics: New file.
7151
7152 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
7153
7154 Be a bit more systematic about using 'abort'.
7155 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
7156 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
7157 Put 'default: abort ();' before some other case, to satisfy older
7158 pedantic compilers.
7159 * lib/bitset_stats.c (bitset_stats_init): Likewise.
7160 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
7161 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
7162 * src/conflicts.c (resolve_sr_conflict): Likewise.
7163 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
7164 (get_decision_str, get_orientation_str, get_node_alignment_str):
7165 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
7166 (get_linestyle_str, get_arrowstyle_str): Likewise.
7167 * src/conflicts.c (resolve_sr_conflict):
7168 Use a default case rather than one for the one remaining enum
7169 value, to catch invalid enum values as well.
7170 * src/lalr.c (set_goto_map, map_goto):
7171 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7172 * src/nullable.c (nullable_compute, token_definitions_output):
7173 Likewise.
7174 * src/reader.c (packgram, reader): Likewise.
7175 * src/state.c (transitions_to, state_new, state_reduction_find):
7176 Likewise.
7177 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7178 (symbol_pack): Likewise.
7179 * src/tables.c (conflict_row, pack_vector): Likewise.
7180 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7181 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7182 * src/system.h: Don't include <assert.h>.
7183 (assert): New macro.
7184
7185 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7186 (Destructor Decl, Parser Function, Pure Calling):
7187 Describe rules for braces inside C code more carefully.
7188
7189 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7190
7191 Fix some porting glitches found by Nelson H. F. Beebe.
7192 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7193 compilers that don't understand that abort () does not return.
7194 * src/state.c (transitions_to): Likewise.
7195 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7196 that '#include <cstdlib>' works.
7197 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7198 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7199 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7200 for the benefit of some pre-C99 compilers.
7201
7202 * bootstrap: Undo changes to gnulib files that autoreconf made.
7203
7204 Minor fixups to get 'make maintainer-check' to work.
7205 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7206 with the new verify.h implementation.
7207 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7208 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7209 * data/yacc.c (YYUSE): Likewise.
7210 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7211 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7212 * src/parse-gram.y (declaration): Don't pass a string constant
7213 to a function that expects char *, since GCC might complain
7214 about the constant value.
7215 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7216 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7217 before #defining them.
7218 * tests/glr-regression.at
7219 (Incorrectly initialized location for empty right-hand side in GLR):
7220 In yyerror, use the msg arg.
7221 (Corrupted semantic options if user action cuts parse):
7222 (Incorrect lookahead during deterministic GLR):
7223 (Incorrect lookahead during nondeterministic GLR):
7224 Don't name a local var 'index'; it shadows string.h's 'index'.
7225
7226 2006-01-19 Akim Demaille <akim@epita.fr>
7227
7228 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7229 location, not just parts of it.
7230
7231 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7232
7233 * NEWS: Document the fact that multiple %unions are now allowed.
7234 * doc/bison.texinfo (Union Decl): Likewise.
7235 * TODO: This feature is now implemented, so remove it from
7236 the wishlist.
7237
7238 * Makefile.maint: Merge with coreutils Makefile.maint.
7239 (CVS_LIST): Use build-aux version if available.
7240 (VERSION_REGEXP): New macro.
7241 (syntax-check-rules): Add sc_no_if_have_config_h,
7242 sc_prohibit_assert_without_use, sc_require_config_h,
7243 sc_useless_cpp_parens.
7244 (sc_obsolete_symbols): Check for O_NDELAY.
7245 (sc_dd_max_sym_length): Track coreutils.
7246 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7247 (sc_useless_cpp_parens): New rule.
7248 (news-date-check): Look for version or today's date.
7249 (changelog-check): Don't require version number near head.
7250 (copyright-check): Use current year instead of hardwiring 2005.
7251 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7252 (announcement): Add --gpg-key-ID.
7253
7254 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7255 with "file system".
7256
7257 Avoid undefined behavior that addressed just before the start of an
7258 array. Problem reported by twlevo.
7259 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7260 * src/lalr.c (build_relations): Rely on new sentinel.
7261 * src/gram.c (gram_free): Adjust to new sentinel.
7262
7263 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7264
7265 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7266 yylookaheadNeeds. All uses updated.
7267 (yysplitStack): Rename local yynewLookaheadStatuses to
7268 yynewLookaheadNeeds.
7269 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7270 GLR): In comments, change `lookahead status' to `lookahead need'.
7271
7272 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7273
7274 * data/glr.c (yysplitStack): A little stylistic rewrite.
7275
7276 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7277
7278 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7279
7280 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7281
7282 * doc/bison.texinfo: Fix some typos.
7283 (GLR Semantic Actions): New subsection discussing special
7284 considerations because GLR semantic actions might be deferred.
7285 (Actions): Mention look-ahead usage of yylval.
7286 (Actions and Locations): Mention look-ahead usage of yylloc.
7287 (Special Features for Use in Actions): Add YYEOF entry and mention it
7288 in the yychar entry.
7289 In the yychar entry, remove mention of the local yychar case (pure
7290 parser) since this is irrelevant information when writing semantic
7291 actions and since it's already discussed in `Table of Symbols' where
7292 yychar is otherwise described as an external variable.
7293 In the yychar entry, don't call it the `current' look-ahead since it
7294 isn't when semantic actions are deferred.
7295 In the yychar and yyclearin entries, add note about deferred semantic
7296 actions.
7297 Add yylloc and yylval entries discussing look-ahead usage.
7298 (Look-Ahead Tokens): When discussing yychar, don't call it the
7299 `current' look-ahead, and do mention yylval and yylloc.
7300 (Error Recovery): Cross-reference `Action Features' when mentioning
7301 yyclearin.
7302 (Table of Symbols): In the yychar entry, don't call it the `current'
7303 look-ahead.
7304 In the yylloc and yylval entries, mention look-ahead usage.
7305
7306 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7307
7308 * tests/glr-regression.at: Update copyright year to 2006.
7309
7310 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7311
7312 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7313 use during nondeterministic operation to track which stacks have
7314 actually needed the current lookahead.
7315 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7316 Allocate, deallocate, resize, and otherwise shuffle space for
7317 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7318 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7319 appropriately during nondeterministic operation.
7320 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7321 members to store the current lookahead to be used by the deferred
7322 user action.
7323 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7324 from which the RHS is taken. Set the lookahead members of the new
7325 yySemanticOption according to the lookahead status for stack yyk.
7326 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7327 yyaddDeferredAction.
7328 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7329 members of yySemanticOption before invoking yyuserAction, and then set
7330 them back to their current values afterward.
7331 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7332 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7333 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7334 titles for consistency.
7335 (Leaked merged semantic value if user action cuts parse): In order to
7336 suppress lint warnings, use arguments in merge function, and assign
7337 char value < 128 in main.
7338 (Incorrect lookahead during deterministic GLR): New test case.
7339 (Incorrect lookahead during nondeterministic GLR): New test case.
7340
7341 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7342
7343 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7344 !yyvaluep as signal that no semantic value is available to print.
7345 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7346 to print a semantic value.
7347
7348 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7349
7350 * tests/glr-regression.at: For consistency with my newer test cases,
7351 don't thank myself.
7352
7353 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7354
7355 * data/glr.c (yyresolveValue): When merging semantic options, if at
7356 least one user action succeeds but a later one cuts the parse, then
7357 destroy the semantic value before returning rather than leaking it.
7358 (yyresolveStates): If a user action cuts the parse and thus
7359 yyresolveValue fails, ignore the (unset) semantic value rather than
7360 corrupting the yyGLRState, and empty the semantic options list since
7361 the user actions should have called all necessary destructors.
7362 Simplify code with YYCHK.
7363 * tests/glr-regression.at (Corrupted semantic options if user action
7364 cuts parse): New test case.
7365 (Undesirable destructors if user action cuts parse): New test case.
7366 Before applying any of this patch, this test case never actually failed
7367 for me... but only because the corrupted semantic options usually
7368 masked this bug.
7369 (Leaked merged semantic value if user action cuts parse): New test
7370 case.
7371
7372 2006-01-05 Akim Demaille <akim@epita.fr>
7373
7374 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7375
7376 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7377
7378 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7379 _MSC_VER. Problem reported by Cenzato Marco.
7380 (b4_c_function_def): Use it.
7381 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7382 b4_c_modern.
7383 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7384 than rolling our own.
7385
7386 2006-01-04 Akim Demaille <akim@epita.fr>
7387
7388 Also warn about non-used mid-rule values.
7389 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7390 member.
7391 (symbol_list_new): Adjust.
7392 * src/reader.c (symbol_typed_p): New.
7393 (grammar_rule_check): Use it.
7394 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7395 Check its rule.
7396 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7397 Use it.
7398 * tests/actions.at (Exotic Dollars): Adjust.
7399
7400 2006-01-04 Akim Demaille <akim@epita.fr>
7401
7402 * src/reader.c (grammar_midrule_action): If $$ is set in a
7403 mid-rule, move the `used' bit to its lhs.
7404 * tests/input.at (Unused values): New.
7405 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7406
7407 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7408
7409 * doc/bison.texinfo (Bison Options): Say more accurately what
7410 --yacc does.
7411 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7412 about declarations in the grammar when in Yacc mode, as POSIX does
7413 not require a diagnostic when the grammar uses extensions.
7414
7415 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7416
7417 Warn about dubious constructions like "%token T T".
7418 Reported by twlevo.
7419 * src/symtab.h (struct symbol.declared): New member.
7420 * src/symtab.c (symbol_new): Initialize it to false.
7421 (symbol_class_set): New arg DECLARING, specifying whether
7422 this is a declaration that we want to warn about, if there
7423 is more than one of them. All uses changed.
7424
7425 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7426 Allow multiple %union directives, whose contents concatenate.
7427 * src/parse-gram.y (grammar_declaration): Likewise.
7428 Use muscle_code_grow, so that we don't need stype_line any more.
7429 All uses changed.
7430
7431 * src/muscle_tab.c (muscle_grow): Fix comment.
7432
7433 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7434 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7435 Update copyright year to 2006.
7436
7437 2006-01-03 Akim Demaille <akim@epita.fr>
7438
7439 Have glr.cc pass (some of) the calc.at tests.
7440 * data/glr.cc (b4_parse_param_orig): New.
7441 (b4_parse_param): Improve its definition, and bound it more
7442 clearly in the skeleton.
7443 (b4_epilogue): Append, instead of prepending, in order to keep
7444 #line consistency.
7445 Simplify the generation of auxiliary functions: locations and
7446 purity are mandated.
7447 (b4_global_tokens_and_yystype): Honor it.
7448 * data/location.cc (c++.m4): Don't include it.
7449 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7450 and AT_SKEL_CC_IF.
7451 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7452 AT_LALR1_CC_IF.
7453 Be sure to initialize the first position's filename.
7454 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7455 mandated anyway.
7456 (AT_CHECK_CALC_GLR_CC): New.
7457 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7458
7459 2006-01-02 Akim Demaille <akim@epita.fr>
7460
7461 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7462 c.m4.
7463 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7464 * data/glr.cc: Do not include stack.hh.
7465
7466 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7467
7468 * data/glr.c: Reformat whitespace with tabs.
7469 (b4_lpure_formals): Remove this unused m4 macro.
7470 * tests/cxx-type.at: Reformat whitespace with tabs.
7471 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7472 since it's a member. Rename type to isNterm for clarity.
7473
7474 2005-12-29 Akim <akim@sulaco.local>
7475
7476 Let glr.cc catch up with symbol_value_print.
7477 * data/glr.cc (b4_yysymprint_generate): Replace by...
7478 (b4_yy_symbol_print_generate): this.
7479 (yy_symbol_print, yy_symbol_value_print): Declare them.
7480
7481 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7482
7483 * src/location.h (boundary): Note that a line or column equal
7484 to INT_MAX indicates an overflow.
7485 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7486 (rule_length_overflow, increment_rule_length, add_column_width):
7487 New functions.
7488 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7489 (<SC_BRACED_CODE>"}"):
7490 Use increment_rule_length rather than incrementing it by hand.
7491 (adjust_location, handle_syncline): Diagnose overflow.
7492 (handle_action_dollar, handle_action_at):
7493 Fix bug with monstrosities like $-2147483648.
7494 Remove now-unnecessary checks.
7495 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7496 (convert_ucn_to_byte): Verify assumptions.
7497 (handle_syncline): New arg LOC. All callers changed.
7498 Don't store through a value derived from char const * pointer.
7499
7500 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7501 GCC warnings.
7502
7503 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7504
7505 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7506 Remove unnecessary forward static decls.
7507
7508 2005-12-27 Akim Demaille <akim@epita.fr>
7509
7510 * src/reader.c (grammar_current_rule_check): Also check that $$
7511 is used.
7512 Take the rule to check as argument, hence rename as...
7513 (grammar_rule_check): this.
7514 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7515 Rename as...
7516 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7517 (grammar_midrule_action, grammar_symbol_append): Now static.
7518 * tests/torture.at (input): Don't rely on the default action
7519 being always performed.
7520 * tests/calc.at: "Set" $$ even when the action is "cut" with
7521 YYERROR or other.
7522 * tests/actions.at (Exotic Dollars): Instead of using unused
7523 values, check that the warning is issued.
7524
7525 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7526
7527 * NEWS: Improve wording for unused-value warnings.
7528
7529 2005-12-22 Akim Demaille <akim@epita.fr>
7530
7531 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7532 (b4_yysymprint_generate): Rename as...
7533 (b4_yy_symbol_print_generate): this.
7534 Generate yy_symbol_print instead of yysymprint.
7535 Generate also yy_symbol_value_print, and use it.
7536
7537 2005-12-22 Akim Demaille <akim@epita.fr>
7538
7539 * NEWS: Warn about unused values.
7540 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7541 a `used' member.
7542 (symbol_list_n_get, symbol_list_n_used_set): New.
7543 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7544 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7545 * src/reader.c (grammar_current_rule_check): Check that values are
7546 used.
7547 * src/symtab.c (symbol_print): Accept 0.
7548 * tests/existing.at: Remove the type information.
7549 Empty the actions.
7550 Remove useless actions (beware of mid-rule actions: perl -000
7551 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7552 * tests/actions.at (Exotic Dollars): Use unused values.
7553 * tests/calc.at: Likewise.
7554 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7555 Likewise.
7556
7557 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7558 rule_useful_p.
7559
7560 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7561
7562 Undo 2005-12-01 tentative license wording change. The wording is
7563 still being reviewed by the lawyers, and we don't want to wait for
7564 them before publishing a test release. For now, revert to the
7565 previous wording.
7566 * NEWS: Undo 2005-12-01 change.
7567 * data/glr.c: Revert to previous license wording.
7568 * data/glr.cc: Likewise.
7569 * data/lalr1.cc: Likewise.
7570 * data/location.cc: Likewise.
7571 * data/yacc.c: Likewise.
7572
7573 * NEWS: Reword %destructor vs YYABORT etc.
7574 * data/glr.c: Use American spacing, for consistency.
7575 * data/glr.cc: Likewise.
7576 * data/lalr1.cc: Likewise.
7577 * data/yacc.c: Likewise.
7578 * data/yacc.c: Reformat comments slightly.
7579 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7580 for consistency. Fix some spelling errors and reword recently-included
7581 text slightly.
7582 * tests/cxx-type.at: Cast results of malloc, for C++.
7583
7584 2005-12-21 Joel E. Denny <address@hidden>
7585
7586 * tests/cxx-type.at: Construct a tree, count the parents of shared
7587 nodes, and free each node once and only once. Previously, the memory
7588 for semantic values was leaked instead.
7589
7590 2005-12-21 Joel E. Denny <address@hidden>
7591
7592 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7593 (yylval, yylloc): If pure, #define to yystackp->yyval and
7594 yystackp->yyloc similar to yychar and yynerrs.
7595 (yyparse): If pure, remove local yylval and yylloc. Add local
7596 yystackp to accommodate pure definitions of yylval and yylloc.
7597 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7598 yylvalp and yyllocp to &yylval and &yylloc.
7599 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7600 namespace. Previously, nerrs and char were missing, but lval and lloc
7601 weren't necessary.
7602 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7603 yylvalp and yyllocp parameters since, if pure, these are now always
7604 accessible through yystackp. If not pure, they are still accessible
7605 globally.
7606 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7607 `if (YYID (N))' to pacify lint.
7608
7609 2005-12-21 Akim Demaille <akim@epita.fr>
7610
7611 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7612 destroy the RHS symbols of a rule.
7613 * data/yacc.c (yylen): Initialize to 0.
7614 Keep its value to the number of items to possibly shift.
7615 In particular, a regular successful parse that ends on YYFINAL by
7616 a (internal) YYACCEPT must not have yylen != 0.
7617 (yyerrorlab, yyreturn): Pop the RHS.
7618 Reorder a bit to emphasize the `shifting' bits of code.
7619 (YYPOPSTACK): Now accept a number of items to pop.
7620 * data/lalr1.cc: Likewise.
7621 * data/glr.c: Formatting changes.
7622 Use goto instead of fall through.
7623 * doc/bison.texinfo (Destructor Decl): Complete.
7624
7625 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7626
7627 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7628 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7629 * djgpp/config.bat: Replace every occurence of the file name
7630 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7631 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7632 * djgpp/config.sed: Replace every occurence of the file name
7633 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7634 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7635 * djgpp/djunpack.bat: DJGPP specific file.
7636 * djgpp/fnchange.lst: DJGPP specific file.
7637 * djgpp/README.in: Add new information about how to unpack the bison
7638 source on MSDOS and other systems which have 8.3 file name restrictions
7639 using djunpack.bat and fnchange.lst.
7640
7641 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7642
7643 * bootstrap (build_cvs_prefix): Remove; unused.
7644 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7645 when getting gnulib.
7646
7647 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7648
7649 * data/glr.c: Reorder typedef declarations for structs to match order
7650 of struct declarations.
7651 Rename yystack everywhere to yystackp except in yyparse where it's not
7652 a pointer.
7653 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7654 consistency.
7655 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7656 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7657 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7658 lint.
7659
7660 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7661
7662 * tests/sets.at (Accept): Fix typos in regular expression used to
7663 sed out the final state number.
7664
7665 Work around portability problem on Solaris 10: flex-generated
7666 files include <stdio.h> before <config.h>, which messes up
7667 because the latter defines __EXTENSIONS__. Address the problem
7668 by creating two new little files that include <config.h> first,
7669 then include the flex-generated files. Rewrite everyone else
7670 to include <config.h> first, as well.
7671 * lib/timevar.c: Always include "config.h".
7672 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7673 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7674 (EXTRA_bison_SOURCES): New macro.
7675 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7676 * src/system.h: Don't include config.h.
7677 * src/LR0.c: Include <config.h> first.
7678 * src/assoc.c: Likewise.
7679 * src/closure.c: Likewise.
7680 * src/complain.c: Likewise.
7681 * src/conflicts.c: Likewise.
7682 * src/derives.c: Likewise.
7683 * src/files.c: Likewise.
7684 * src/getargs.c: Likewise.
7685 * src/gram.c: Likewise.
7686 * src/lalr.c: Likewise.
7687 * src/location.c: Likewise.
7688 * src/main.c: Likewise.
7689 * src/muscle_tab.c: Likewise.
7690 * src/nullable.c: Likewise.
7691 * src/output.c: Likewise.
7692 * src/parse-gram.y: Likewise.
7693 * src/print.c: Likewise.
7694 * src/print_graph.c: Likewise.
7695 * src/reader.c: Likewise.
7696 * src/reduce.c: Likewise.
7697 * src/relation.c: Likewise.
7698 * src/state.c: Likewise.
7699 * src/symlist.c: Likewise.
7700 * src/symtab.c: Likewise.
7701 * src/tables.c: Likewise.
7702 * src/uniqstr.c: Likewise.
7703 * src/vcg.c: Likewise.
7704
7705 * src/parse-gram.y: Fix minor problems uncovered by lint.
7706 (current_lhs, current_lhs_location): Now static.
7707 (current_assoc): Remove unused variable.
7708
7709 Cleanups so that Bison-generated parsers have less lint.
7710 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7711 Prepend /*ARGSUSED*/, for lint's sake.
7712 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7713 definition if 'lint' is defined.
7714 (YYID): New macro (or function, if lint).
7715 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7716 * data/yacc.c: Likewise.
7717 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7718 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7719 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7720 is C++ only.
7721 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7722 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7723 Use YYID(0) rather than 0, for lint.
7724 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7725 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7726
7727 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7728
7729 * tests/glr-regression.at
7730 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7731 Close memory leak reported by twlevo.
7732
7733 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7734
7735 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7736 all stacks.
7737 (yyparse): Iterate another stack in order to call user destructors.
7738 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7739 New test case.
7740 (Duplicated user destructor for lookahead): This test now is expected
7741 to succeed.
7742
7743 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7744
7745 * NEWS: Document the following change.
7746 * data/yacc.c: Say "parser skeleton" rather than "file", since
7747 it's no longer just a file.
7748 * data/glr.c: Grant a special exception for C GLR parsers, that
7749 reads like the already-existing exception for C LALR(1) parsers.
7750 * data/glr.cc: Likewise.
7751 * data/lalr1.cc: Likewise.
7752 * data/location.cc: Likewise.
7753 * data/yacc.c: Reword the "written by" statement to clarify that
7754 it was the parser skeleton, not the entire output file.
7755 * data/glr.c: Written by Paul Hilfinger.
7756 * data/glr.cc: Written by Akim Demaille.
7757 * data/lalr1.cc: Likewise.
7758
7759 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7760
7761 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7762 Fix typos in previous change that broke 'make check'.
7763 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7764 supported in C.
7765 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7766 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7767 We can revert this once things settle down.
7768
7769 * src/conflicts.c (conflicts_print): Don't print file name twice
7770 when %expect fails because there were no conflicts.
7771 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7772 change.
7773 * tests/conflicts.at (%expect not enough, %expect too much):
7774 (%expect with reduce conflicts): Adjust to new behavior.
7775
7776 2005-11-18 Akim Demaille <akim@epita.fr>
7777
7778 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7779 errors.
7780 * NEWS: Document this.
7781 * doc/bison.texinfo (Expect Decl): Likewise.
7782
7783 2005-11-16 Akim Demaille <akim@epita.fr>
7784
7785 Generalize the display of semantic values and locations in traces.
7786 * data/glr.c (yy_reduce_print): Fix indices (again).
7787 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7788 literal integers.
7789 * data/lalr1.cc (yyreduce_print): Rename as...
7790 (yy_reduce_print): this.
7791 Display values and locations.
7792 * data/yacc.c (yy_reduce_print): Likewise.
7793 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7794 (yysymprint): Move higher to be visible from yy_reduce_print).
7795 (yyparse): Adjust.
7796 * tests/calc.at: Adjust the expected length of the traces.
7797
7798 2005-11-14 Akim Demaille <akim@epita.fr>
7799
7800 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7801 from 1 to N, while values and location start at 0.
7802 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7803
7804 2005-11-14 Akim Demaille <akim@epita.fr>
7805
7806 * data/glr.c (yy_reduce_print): Fix the $ number.
7807
7808 2005-11-14 Akim Demaille <akim@epita.fr>
7809
7810 "Use" parse parameters.
7811 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7812 * data/glr.c, data/glr.cc: Use them.
7813 * data/glr.c (YYUSE): Have a C++ definition that supports
7814 non-pointer types.
7815
7816 2005-11-14 Akim Demaille <akim@epita.fr>
7817
7818 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7819
7820 2005-11-14 Akim Demaille <akim@epita.fr>
7821
7822 * data/glr.cc: New.
7823 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7824
7825 2005-11-12 Akim Demaille <akim@epita.fr>
7826
7827 Let position and location be PODs.
7828 * data/location.cc (position::initialize, location::initialize): New.
7829 (position::position, location::location): Define only if
7830 b4_location_constructors is defined.
7831 * data/lalr1.cc (b4_location_constructors): Define it for backward
7832 compatibility.
7833 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7834
7835 2005-11-12 Akim Demaille <akim@epita.fr>
7836
7837 * data/lalr1.cc: Move the body of the ctor and dtor into the
7838 parser file (instead of the header).
7839 Wrap the implementations in a "namespace yy".
7840
7841 2005-11-12 Akim Demaille <akim@epita.fr>
7842
7843 Have glr.c include its header file when created.
7844 * data/glr.c (b4_shared_declarations): New.
7845 Output them verbatim in the parser if !%defines, otherwise
7846 output then in the header file, and include it instead.
7847
7848 2005-11-11 Akim Demaille <akim@epita.fr>
7849
7850 * data/glr.c: Comment changes.
7851
7852 2005-11-11 Akim Demaille <akim@epita.fr>
7853
7854 When yydebug, report semantic and location values for reductions.
7855 * data/glr.c (yy_reduce_print): Report the semantic values and the
7856 locations.
7857 (YY_REDUCE_PRINT): Adjust.
7858 (yyglrReduce): Use them.
7859 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7860 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7861 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7862 traces.
7863
7864 2005-11-10 Akim Demaille <akim@epita.fr>
7865
7866 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7867 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7868 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7869
7870 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7871
7872 * m4/cxx.m4, examples/Makefile.am: Don't build
7873 examples/calc++ if no C++ compiler is available. (trivial change)
7874
7875 2005-11-09 Akim Demaille <akim@epita.fr>
7876
7877 * src/scan-skel.l: Use a couple of asserts.
7878
7879 2005-11-03 Akim Demaille <akim@epita.fr>
7880
7881 In some (weird) cases, the final state number is incorrect.
7882 Reported by Alexandre Duret-Lutz.
7883 * src/LR0.c (state_list_append): Remove the computation of
7884 final_state.
7885 (save_reductions): Do it here.
7886 (get_state): Alpha conversion.
7887 (generate_states): Use a for loop.
7888 * src/gram.h (item_number_is_rule_number)
7889 (item_number_is_symbol_number): New.
7890 * src/state.c: Use assert.
7891 * src/system.h: Include assert.h.
7892 * tests/sets.at (Accept): New.
7893
7894 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7895
7896 * data/glr.c (yyfill): Adjust comment.
7897 (yyresolveAction): Initialize default location properly
7898 for empty right-hand sides.
7899 (yydoAction): Ditto.
7900 Add comment explaining apparently dead code.
7901 * tests/glr-regression.at
7902 (Incorrectly initialized location for empty right-hand side in GLR):
7903 New test.
7904
7905 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7906
7907 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7908 gnulib when interrupted. This fixes some race conditions and
7909 works around some portability problems (one noted by Paul
7910 Hilfinger).
7911
7912 2005-10-22 Akim <akim@epita.fr>
7913
7914 * Makefile.cfg: Adjust to config -> build-aux.
7915 Reported by twledo.
7916
7917 2005-10-21 Akim Demaille <akim@epita.fr>
7918
7919 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7920 the %parse-params.
7921 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7922 * data/yacc.c (b4_Pure_if): Rename as...
7923 (b4_yacc_pure_if): this.
7924 (YY_SYMBOL_PRINT, yyparse): Adjust.
7925 * doc/bison.texinfo: Formatting changes.
7926
7927 2005-10-21 Akim Demaille <akim@epita.fr>
7928
7929 Finish the transition config -> build-aux.
7930 * configure.ac, Makefile.am: Use build-aux.
7931 * config/prev-version, config/announce-gen, config/Makefile.am:
7932 Move to...
7933 * build-aux/prev-version, build-aux/announce-gen,
7934 * build-aux/Makefile.am: here.
7935
7936 2005-10-14 Akim Demaille <akim@epita.fr>
7937
7938 * examples/calc++/test: Use set -x only when VERBOSE.
7939
7940 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7941
7942 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7943 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7944
7945 2005-10-13 Akim Demaille <akim@epita.fr>
7946
7947 * src/scan-skel.l: Output the base name parts of the parser and
7948 header file names.
7949 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7950 additional checks.
7951 Use this to exercise C++ outputs in subdirs.
7952 Reported by Oleg Smolsky.
7953
7954 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7955
7956 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7957 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7958 Problem reported by John P. Hartmann.
7959 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7960 already defined it.
7961
7962 2005-10-12 Akim Demaille <akim@epita.fr>
7963
7964 * src/parse-gram.y (version_check): Exit 63 to please missing
7965 (stands for "version mismatch).
7966 * tests/input.at, doc/bison.texinfo: Adjust.
7967
7968 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7969
7970 Work around portability problems with Visual Age C compiler
7971 (xlc and xlC_r) reported by John P. Hartmann.
7972 * data/location.cc (initial_column, initial_line): Remove.
7973 All uses replaced by 0 and 1.
7974 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7975 that xlc complains about.
7976 * src/scan-skel.l (skel_wrap): Likewise.
7977 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7978 as __STDC__.
7979 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7980 __STDC_VERSION__. Use it everywhere instead of looking at
7981 __STDC__ and __cplusplus.
7982
7983 2005-10-10 Akim Demaille <akim@epita.fr>
7984
7985 * examples/calc++/test: Be quiet unless VERBOSE.
7986
7987 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7988
7989 * data/c.m4 (yydestruct, yysymprint):
7990 Use YYUSE instead of casting to void.
7991 * data/glr.c (YYUSE): New macro.
7992 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7993 Use it instead of rolling our own.
7994 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7995 (YYCHK1):
7996 Use /*CONSTCOND*/ to suppress lint warnings.
7997 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7998 (YY_STACK_PRINT): Use 'false' not '0'.
7999 (YYUSE): New macro.
8000 (yysymprint_, yydestruct_): Use it instead of rolling our own.
8001 * data/yacc.c (YYUSE): New macro.
8002 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
8003 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
8004 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
8005
8006
8007 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
8008 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
8009
8010 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
8011
8012 Undo the parts of the unlocked-I/O change that substituted
8013 putc or puts for printf. This might hurt performance a bit,
8014 but some people prefer the printf style.
8015 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
8016 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
8017 All uses replaced by YYFPRINTF and YYDPRINTF.
8018 * data/yacc.c: Likewise.
8019 * lib/bitset.c (bitset_print): Likewise.
8020 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
8021 putc and puts.
8022 * lib/lbitset.c (debug_lbitset): Likewise.
8023 * src/closure.c (print_firsts, print_fderives): Likewise.
8024 * src/gram.c (grammar_dump): Likewise.
8025 * src/lalr.c (look_ahead_tokens_print): Likewise.
8026 * src/output.c (escaped_output): Likewise.
8027 (user_actions_output): Break apart two printfs.
8028 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
8029 * src/reduce.c (reduce_print): Likewise.
8030 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8031 * src/system.h: Include unlocked-io.h rathe than stdio.h.
8032
8033 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
8034 Use assignments rather than casts-to-void to suppress
8035 unused-variable warnings. This pacifies 'lint'.
8036 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
8037 unused-variable warnings.
8038
8039 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8040
8041 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
8042
8043 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
8044
8045 Use unlocked I/O for a minor performance improvement on hosts like
8046 GNU/Linux and Solaris that support unlocked I/O. The basic idea
8047 is to use the gnlib unlocked-io module, and to prefer putc and
8048 puts to printf when either will work (since the latter doesn't
8049 come in an unlocked flavor).
8050 * bootstrap (gnulib_modules): Add unlocked-io.
8051 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
8052 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
8053 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
8054 and similarly for puts and putc and printf.
8055 * data/yacc.c: Likewise.
8056 * lib/bitset.c (bitset_print): Likewise.
8057 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
8058 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
8059 to printf.
8060 * lib/lbitset.c (debug_lbitset): Likewise.
8061 * src/closure.c (print_firsts, print_fderives): Likewise.
8062 * src/gram.c (grammar_dump): Likewise.
8063 * src/lalr.c (look_ahead_tokens_print): Likewise.
8064 * src/output.c (escaped_output): Likewise.
8065 (user_actions_output): Coalesce two printfs.
8066 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
8067 * src/reduce.c (reduce_print): Likewise.
8068 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
8069 * src/system.h: Include unlocked-io.h rather than stdio.h.
8070
8071 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
8072 this confuses xgettext.
8073
8074 2005-10-02 Akim Demaille <akim@epita.fr>
8075
8076 * bootstrap (gnulib_modules): Add strverscmp.
8077 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
8078 * m4/.cvsignore: Add strverscmp.m4.
8079 * src/parse-gram.y (%require): New token, new rule.
8080 (version_check): New.
8081 * src/scan-gram.l (%require): Adjust.
8082 * tests/input.at (AT_REQUIRE): New.
8083 Use it.
8084 * doc/bison.texinfo (Require Decl): New.
8085 (Calc++ Parser): Use %require.
8086
8087 2005-10-02 Akim Demaille <akim@epita.fr>
8088
8089 * data/location.cc: New.
8090
8091 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
8092 Akim Demaille <akim@epita.fr>
8093
8094 Make sure -odir/foo.cc creates dir/location.hh etc.
8095 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
8096 (spec_file_prefix, spec_verbose_file, spec_graph_file)
8097 (spec_defines_file): Now const.
8098 (dir_prefix): New.
8099 (short_base_name): Remove.
8100 * src/files.c: Adjust.
8101 (dirname.h): Include.
8102 (base_name): Don't prototype it.
8103 (finput): Remove, duplicates gram_in.
8104 (full_base_name, short_base_name): Replace by...
8105 (all_but_ext, all_but_tab_ext): these.
8106 (compute_base_names): Rename as...
8107 (compute_file_name_parts): this.
8108 Update to compute the new variables, including dir_prefix.
8109 Adjust dependencies.
8110 * src/output.c (prepare): Output them.
8111 * src/reader.c: Adjust to use gram_in, not finput.
8112 * src/scan-skel.l (@dir_prefix@): New.
8113
8114 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8115
8116 * lib/subpipe.c: New function end_of_output_subpipe() added
8117 to allow support for non-posix systems. This is a no-op function
8118 for posix systems.
8119
8120 * lib/subpipe.h: New function end_of_output_subpipe() added
8121 to allow support for non-posix systems. This is a no-op function
8122 for posix systems.
8123
8124 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
8125 handle the lack of pipe/fork functionality on non-posix systems.
8126
8127 * djgpp/Makefile.maint: DJGPP specific file.
8128
8129 * djgpp/README.in: DJGPP specific file.
8130
8131 * djgpp/config.bat: DJGPP specific configuration file.
8132
8133 * djgpp/config.sed: DJGPP specific configuration file.
8134
8135 * djgpp/config.site: DJGPP specific configuration file.
8136
8137 * djgpp/config_h.sed: DJGPP specific configuration file.
8138
8139 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
8140
8141 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
8142
8143 2005-10-02 Akim Demaille <akim@epita.fr>
8144
8145 * data/location.cc: New, extract from...
8146 * data/lalr1.cc: here.
8147 (location.hh): Include it after the user prologue, in case the
8148 filename type is defined by the user.
8149 Forward declation location and position before the pre-prologue.
8150 (yyresult_): Rename as...
8151 (yyresult): this, it's a local variable, not an attribute.
8152 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
8153
8154 2005-10-01 Akim Demaille <akim@epita.fr>
8155
8156 * examples/extexi: Restore the #line generation.
8157
8158 2005-09-30 Akim Demaille <akim@epita.fr>,
8159 Alexandre Duret-Lutz <adl@gnu.org>
8160
8161 Move the token type and YYSTYPE in the parser class.
8162 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
8163 (parser::token): New, from the moved free definition of tokens.
8164 (parser::semantic_value): Now a full definition instead of an
8165 indirection to YYSTYPE.
8166 (b4_post_prologue): No longer included in the header file, but
8167 in the implementation file.
8168 * doc/bison.texi (C+ Language Interface): Update.
8169 * src/parse-gram.y: Support unary %define.
8170 * tests/actions.at: Define global_tokens_and_yystype for backward
8171 compatibility until we update the tests.
8172 * tests/calc.at: Idem.
8173 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8174 to simplify the code.
8175
8176 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8177
8178 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8179 Ah, the good old days! Problem reported by Peter Klein.
8180 * bootstrap (gnulib_modules): Add strerror, strtoul.
8181 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8182 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8183
8184 2005-09-29 Akim Demaille <akim@epita.fr>
8185
8186 * data/c.m4 (b4_error_verbose_if): New.
8187 * data/lalr1.cc: Use it.
8188 (YYERROR_VERBOSE_IF): Remove.
8189 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8190 parser members, replaced by...
8191 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8192 local variables.
8193 (yysyntax_error_): Takes the state number as argument.
8194 (yyreduce_print_): Use the argument yyrule, not the former
8195 attribute yyn_.
8196
8197 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8198
8199 * bootstrap (gnulib_modules): Add verify.
8200 * lib/.cvsignore: Add verify.h.
8201 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8202 * src/system.h (verify): Remove.
8203 Include verify.h instead.
8204 * src/tables.c (tables_generate): Use new API for 'verify'.
8205
8206 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8207
8208 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8209 local variables whose names begin with 'yy'.
8210 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8211 Trivial changes from Joel E. Denny.
8212
8213 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8214 it itself.
8215 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8216 don't use alloca any more.
8217
8218 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8219 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8220 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8221 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8222 to match yacc.c, to test more hosts.
8223
8224 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8225
8226 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8227 doesn't affect behavior.
8228 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8229 Solaris, AIX, MSC.
8230 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8231 This works a bit better with glibc, if user code has already included
8232 stdlib.h.
8233 * doc/bison.texinfo (Bison Parser): Document that users can't
8234 arbitrarily use malloc and free for other purposes. Document
8235 that <alloca.h> and <malloc.h> might be included.
8236 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8237 user must declare alloca.
8238
8239 * HACKING (release): Forwarn the Translation Project about
8240 stable releses.
8241
8242 2005-09-20 Akim Demaille <akim@epita.fr>
8243
8244 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8245
8246 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8247
8248 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8249 (YYSTACK_ALLOC_MAXIMUM): Use it.
8250 (yysyntax_error): New function.
8251 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8252 multiple syntax errors are reported, and alloca is being used.
8253 Instead, reallocate buffers twice as big each time, so that
8254 we waste at most half the allocated memory. Start with a small
8255 (128-byte) buffer that will suffice in most cases anyway.
8256 Use yysyntax_error to do most of the work.
8257
8258 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8259 yynerrs is the number of errors reported, not the number of
8260 errors encountered.
8261
8262 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8263 Mark it as expected to fail.
8264 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8265 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8266 Don't start user-code symbols with "yy", to avoid name space problems.
8267
8268 2005-09-19 Akim Demaille <akim@epita.fr>
8269
8270 Remove the traits, failed experiment.
8271 It never proved useful, and anyway because of the current
8272 definition, it was not possible to have several specialization of
8273 this traits, making it useless.
8274 * data/lalr1.cc (yy:traits): Remove.
8275 Inline its definitions in the parser class.
8276
8277 2005-09-19 Akim Demaille <akim@epita.fr>
8278
8279 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8280 least Mac OSX with a /usr/local install of gettext.
8281
8282 2005-09-19 Akim Demaille <akim@epita.fr>
8283
8284 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8285 and yytoken for similarity with the other skeletons.
8286
8287 2005-09-19 Akim Demaille <akim@epita.fr>
8288
8289 * NEWS, configure.ac: update version number to 2.1a.
8290
8291 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8292
8293 * NEWS: Version 2.1.
8294
8295 * NEWS: Remove notice of yytname change, since it was never in an
8296 official release.
8297 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8298 diagnostic.
8299 * src/output.c (prepare): Likewise.
8300 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8301 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8302 is not defined. This is an awful hack, but it's enough for now.
8303 All callers changed.
8304 * tests/glr-regression-at (make_value): Args are const pointers now,
8305 to avoid GCC warning.
8306 (Duplicated user destructor for lookahead): New test. Currently
8307 skipped. It fails on my host but I'm not sure it'll always fail.
8308
8309 2005-09-16 Akim Demaille <akim@epita.fr>
8310
8311 * src/symtab.h (struct symbol): Declare the printer and destructor
8312 as const, to avoid accidental calls to free.
8313 (symbol_destructor_set, symbol_printer_set): Adjust.
8314 * src/symtab.c: Adjust.
8315
8316 2005-09-16 Akim Demaille <akim@epita.fr>
8317
8318 * data/c.m4 (b4_token_enums): New.
8319 (b4_token_defines): Rename as...
8320 (b4_token_enums_defines): this.
8321 (b4_token_defines): New, output only the #defines.
8322 * data/yacc.c, data/glr.c: Adjust.
8323 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8324 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8325 as default values.
8326
8327 2005-09-16 Akim Demaille <akim@epita.fr>
8328
8329 * data/lalr1.cc (yylex_): Remove, inline its code.
8330 (yyreport_syntax_error_): Remove, replaced by...
8331 (yysyntax_error_): this which returns a string and leaves to the
8332 caller the call to the users' error function.
8333 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8334 Move from members of the parser object...
8335 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8336 to local variables of the parse function.
8337
8338 2005-09-16 Akim Demaille <akim@epita.fr>
8339
8340 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8341 since it's in Bison's name space.
8342
8343 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8344
8345 * data/glr.c (yyresolveValue): Add default case to pacify
8346 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8347
8348 * NEWS: Document when yyparse started to return 2.
8349 * doc/bison.texinfo (Parser Function): Document when yyparse
8350 returns 2.
8351
8352 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8353 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8354 changed.
8355 (class position): file_name -> filename (reverting). All uses changed.
8356
8357 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8358
8359 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8360 do anything if $@ exists. This reverts part of the 2005-07-07
8361 patch.
8362
8363 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8364
8365 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8366 contains obsolete information and isn't worth distributing as a
8367 separate file anyway.
8368 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8369 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8370 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8371 (yyparse): Abort if user code uses longjmp to throw an unexpected
8372 value.
8373
8374 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8375
8376 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8377 Suggested by twlevo@xs4all.nl.
8378
8379 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8380 This avoids a diagnostic from gcc -Wswitch-enum.
8381 Problem reported by twlevo@xs4all.nl.
8382
8383 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8384 standards. Use "file name" or "file" or "name", depending on
8385 the context.
8386 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8387 not to hack/foo.tab.c.
8388 (Calc++ Top Level): 2nd arg of main is not const.
8389 * data/glr.c: b4_filename -> b4_file_name.
8390 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8391 All uses changed.
8392 (class position): filename -> file_name. All uses changed.
8393 * data/yacc.c: b4_filename -> b4_file_name.
8394 * lib/bitset.h: filename -> file_name in local vars.
8395 * lib/bitset_stats.c: Likewise.
8396 * src/files.c: Likewise.
8397 * src/scan-skel.l ("@output ".*\n): Likewise.
8398 * src/files.c (file_name_split): Renamed from filename_split.
8399 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8400
8401 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8402
8403 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8404 to accommodate latest gnulib.
8405
8406 * tests/glr-regression.at (Duplicate representation of merged trees):
8407 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8408
8409 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8410 needed.
8411
8412 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8413
8414 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8415 All uses changed. Invoke user destructor after an error during a
8416 split parse (trivial change from Joel E. Denny).
8417
8418 * tests/glr-regression.at
8419 (User destructor after an error during a split parse): New test case.
8420 Problem reported by Joel E. Denny in:
8421 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8422
8423 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8424
8425 * README-cvs: Give URLs for recommended tools.
8426 Mention Gzip version problem, and bootstrapping issues.
8427 Remove troubleshooting section, as it's somewhat obsolete.
8428
8429 * bootstrap (no_cache): New var, to accommodate different wget
8430 variants. Use it instead of '-C off'. Problem reported by
8431 twlevo@xs4all.nl.
8432
8433 * data/glr.c (yydestroyStackItem): New function.
8434 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8435 debugging information. Problem reported by Joel E. Denny.
8436
8437 2005-08-25 Akim Demaille <akim@epita.fr>
8438
8439 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8440
8441 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8442
8443 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8444 Don't invoke destructor on unresolved entries.
8445 * tests/glr-regression.at
8446 (User destructor for unresolved GLR semantic value): New test case.
8447 Problem reported by Joel E. Denny in:
8448 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8449
8450 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8451
8452 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8453 Add strnlen.c.
8454 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8455 lib-prefix.m4, po.m4.
8456
8457 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8458 in yydestruct diagnostic, since it might not be an error.
8459 Problem reported by Joel Denny near end of
8460 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8461 * data/lalr1.cc (yyerturn): Likewise.
8462 * data/yacc.c (yyreturn): Likewise.
8463 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8464
8465 * src/files.c: Remove obsolete FIXME comment.
8466
8467 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8468 with the other templates, and to fix bogus run-on messages such
8469 as the one reported at the end of
8470 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8471 All callers changed to avoid the newline.
8472 (yyprocessOneStack): Output two lines rather than one, to accommodate
8473 the above change. This changes the debug output format slightly.
8474
8475 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8476 reported by Joel E. Denny in
8477 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8478 (trivial change).
8479 * tests/glr-regression.at (Duplicate representation of merged trees):
8480 New test, from Joel E. Denny in:
8481 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8482 * THANKS: Add Joel E. Denny.
8483
8484 * configure.ac (AC_INIT): Bump to 2.0c.
8485
8486 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8487
8488 * NEWS: Version 2.0b.
8489
8490 * Makefile.am (SUBDIRS): Put examples before tests, so that
8491 "make check" doesn't finish with "All 1 tests passed".
8492
8493 * tests/regression.at (Token definitions): Don't rely on
8494 AT_PARSER_CHECK for data that contains backslashes. It currently
8495 uses 'echo', and 'echo' isn't portable if its argument contains
8496 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8497 that the byte '\0xff' is not printable in the C locale; it is,
8498 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8499 not printable, so use '\0x81' to test.
8500
8501 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8502 version of GCC, since the macro is used with non-GCC compilers.
8503
8504 Fix core dump reported by Pablo De Napoli in
8505 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8506 * tests/regression.at (Invalid inputs with {}): New test.
8507 * src/parse-gram.y (token_name): Translate type before using
8508 it as an index.
8509
8510 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8511 the user's name space. All uses changed to __attribute__
8512 ((__unused__)).
8513 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8514 Add __attribute__ ((__noreturn__)).
8515
8516 * etc/clcommit: Remove. We weren't using it, and it failed
8517 "make maintainer-distcheck".
8518 * Makefile.maint: Merge from coreutils.
8519 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8520 (syntax-check-rules): Change list of rules as described below.
8521 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8522 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8523 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8524 (sc_trailing_space): New rules.
8525 (sc_xalloc_h_in_src): Remove.
8526 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8527 (sc_space_tab, sc_error_exit_success, sc_changelog):
8528 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8529 (makefile-check, po-check, author_mark_check):
8530 (makefile_path_separator_check, copyright-check):
8531 Use grep -n, to make it easier to find violations.
8532 Use CVS_LIST and CVS_LIST_EXCEPT.
8533 (header_regexp, h_re): Remove.
8534 (dd_c): New macro.
8535 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8536 (my-distcheck): Use more-modern GCC flags.
8537 (signatures, %.asc): Remove.
8538 (rel-files, announcement): Remove signatures.
8539 Restore old updating code, even though we don't use it, so
8540 that we're the same as coreutils.
8541 (alpha, beta, major): Depend on news-date-check.
8542 Make the upload commands.
8543
8544 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8545 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8546 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8547 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8548 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8549 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8550 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8551 * tests/sets.at: Likewise.
8552
8553 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8554 we comment out the Autoconf version number.
8555 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8556 it's error-prone and "make maintainer-distcheck" rejects it.
8557
8558 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8559 Indent calls to "error" to pacify "make maintainer-distcheck",
8560 when the calls are not intended to be translated.
8561 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8562
8563 * src/Makefile.am (DEFS): Use +=, to pacify
8564 "make maintainer-distcheck".
8565 (bison_SOURCES): Add scan-skel.h.
8566 (sc_tight_scope): New rule, from coreutils.
8567
8568 * src/files.c (src_extension, header_extension):
8569 Now static, not extern.
8570 * src/getargs.c (short_options): Likewise.
8571 * src/muscle_tab.c (muscle_table): Likewise.
8572 * src/parse-gram.y (current_class, current_type, current_prec):
8573 Likewise.
8574 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8575 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8576 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8577 void, to avoid warning when NLS is disabled.
8578 * src/output.c: Include scan-skel.h.
8579 (scan_skel): Remove decl, since scan-skel.h does this.
8580 (output_skeleton):
8581 Indent calls to "error" to pacify "make maintainer-distcheck".
8582 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8583 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8584 "make maintainer-distcheck".
8585 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8586 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8587 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8588 (skel_lex_destroy, scan_skel): Move these decls to...
8589 * src/scan-skel.h: New file.
8590 * src/uniqstr.c (uniqstr_assert):
8591 Indent calls to "error" to pacify "make maintainer-distcheck".
8592
8593 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8594 not @VAR@.
8595
8596 * tests/torture.at: Revamp to avoid misuse of atoi that
8597 "make maintainer-distcheck" complained about.
8598
8599 * examples/extexi (message): Don't print a message more than once,
8600 and omit line-number decoration that makes Emacs compile think
8601 that informative messages are worth worrying about.
8602
8603 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8604
8605 * configure.ac: Update version number.
8606
8607 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8608 accidentally.
8609 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8610 autogenerated by the maintainer.
8611 * examples/calc++/.cvsignore: Add *.yy.
8612
8613 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8614 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8615 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8616
8617 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8618
8619 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8620 from maintainer-distcheck about casting the argument of 'free'.
8621
8622 * NEWS: Mention recent yytname changes.
8623 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8624
8625 * bootstrap: For translations that have not yet been upgraded to
8626 the new runtime-po domain, prime the pump by extracting the
8627 relevant strings from the obsolete translations. This code can be
8628 removed once the bison-runtime domain has been translated by each
8629 team.
8630
8631 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8632 now that token names are already quoted.
8633
8634 Fix problem reported by Anthony Heading.
8635 * data/glr.c (YYTOKEN_TABLE): New macro.
8636 (yytname): Define if YYTOKEN_TABLE.
8637 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8638 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8639 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8640 * src/output.c (prepare_symbols): Output token_table_flag.
8641
8642 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8643
8644 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8645 again if the first call fails.
8646
8647 * data/glr.c (yytnamerr): New function.
8648 (yyreportSyntaxError): Use it to dequote most string literals.
8649 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8650 with other skeletons. All uses changed.
8651 (yytnameerr_): New function.
8652 (yyreport_syntax_error): Use it to dequote most string literals.
8653 * data/yacc.c (yytnamerr): New function.
8654 (yyerrlab): Use it to decode most string literals.
8655 * doc/bison.texinfo (Decl Summary, Calling Convention):
8656 Clarify quoting convention of yytname.
8657 * src/output.c (prepare_symbols): Quote all names. This undoes
8658 the 2005-04-17 change, which is now accomplished (mostly) via
8659 changes in the parsers as described above.
8660 * tests/regression.at (Token definitions, Web2c Actions):
8661 Undo most 2005-04-17 change here, too.
8662
8663 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8664
8665 Fix more problems reported by twlevo@xs4all.nl.
8666 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8667 remove trailing spaces. This loses the exit status of ./types,
8668 and isn't needed since ./types shouldn't be emitting trailing
8669 spaces.
8670 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8671 as the stack isn't valid in that case.
8672
8673 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8674 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8675 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8676 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8677 is used.
8678 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8679 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8680 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8681 Likewise.
8682
8683 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8684 overly-picky compilers that reject 'char *foo = "bar";'.
8685
8686 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8687 to FILE * parameter, not to stderr. This fixes a typo introduced
8688 in the 2005-07-12 change.
8689
8690 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8691 warnings from GCC 4.
8692
8693 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8694 (yyglrShiftDefer, yysplitStack):
8695 Remove unused parameters b4_pure_formals. All uses changed.
8696 (yyglrShift): Remove unused parameters b4_user_formals.
8697 All uses changed.
8698 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8699
8700 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8701
8702 Destructor cleanups and regularization among the three skeletons.
8703 * NEWS: Document the behavior changes.
8704 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8705 stack before failing, as the cleanup code will do it for us now.
8706 * data/lalr1.cc (yyerrlab): Likewise.
8707 * data/glr.c (yyparse): Pop everything off the stack before
8708 freeing it, so that destructors get called properly.
8709 * data/lalr1.cc (yyreturn): Likewise.
8710 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8711 This is more consistent.
8712 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8713 why destructors might be called. 1.875 -> 2.1.
8714 (Destructor Decl, Decl Summary, Table of Symbols):
8715 Some English-language cleanups for %destructor.
8716 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8717 Add output line for destructor of start symbol.
8718 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8719 because of that same extra output line.
8720
8721 * NEWS: Document minor wording changes in diagnostics of
8722 Bison-generated parsers.
8723 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8724 Remove unused formals. All uses changed.
8725 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8726 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8727 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8728 Rename yyoverflowab to yyexhaustedlab.
8729 When memory exhaustion occurs during syntax-error reporting,
8730 report it separately rather than in a single diagnostic; this
8731 eases translation.
8732 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8733 (Memory Exhausted): Renamed from Parser Stack Overflow.
8734 Revamp wording slightly to prefer "memory exhaustion".
8735 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8736
8737 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8738
8739 Add i18n support to the GLR skeleton. Partially fix the C++
8740 skeleton; a C++ expert needs to finish this. Remove debugging
8741 msgids; there's little point to having them translated, since they
8742 can be understood only by someone who can read the
8743 (English-language) source code.
8744
8745 Generate runtime-po/bison-runtime.pot automatically, so that we
8746 don't have to worry about garbage getting in that file. We'll
8747 make sure after the next official release that old msgids don't
8748 get lost. See
8749 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8750
8751 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8752 Now auto-generated.
8753 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8754 Fix typos in explanations of the runtime file.
8755 * bootstrap: Change gettext keyword from YYI18N to YY_.
8756 Use standard Makefile.in.in in runtime-po, since we'll arrange
8757 for backward-compatible bison-runtime.po files in a different way.
8758 * data/glr.c (YY_): New macro, from yacc.c.
8759 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8760 Translate messages intended for users.
8761 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8762 the wording in the other skeletons. We don't know that the memory
8763 is virtual.
8764 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8765 Use same method that yacc.c uses.
8766 Don't translate debugging messages.
8767 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8768 it doesn't work (yet), and requires C++ expertise to fix.
8769 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8770 Move defn to a more logical place, to be consistent with other
8771 skeletons.
8772 Don't translate debugging messages.
8773 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8774 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8775 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8776 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8777
8778 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8779 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8780 void, not int.
8781 * tests/glr-regression.at (Badly Collapsed GLR States):
8782 Likewise.
8783 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8784 yylex should return 0 at EOF rather than aborting.
8785
8786 Improve tests for stack overflow in GLR parser.
8787 Problem reported by twlevo@xs4all.nl.
8788 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8789 All uses removed.
8790 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8791 can handle the problem.
8792 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8793 (yyparse): New local variable yyresult to record the result.
8794 Use result of setjmp to set it, rather than storing itinto
8795 struct.
8796 (yyDone): Remove label.
8797 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8798 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8799 if YYABORT is used).
8800 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8801 yyparse status; put status > 1 into diagnostic.
8802 Check that status==2 works.
8803 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8804 Use exit status 3 for failure to open (which shouldn't happen).
8805
8806 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8807
8808 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8809 1 on syntax error; just let yyparse do its thing.
8810 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8811 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8812 (Exploding the Stack Size with Alloca):
8813 (Exploding the Stack Size with Malloc):
8814 Expect exit status 2, not 1, since the parser is supposed to blow
8815 its stack. Problem reported by twlevo@xs4all.nl.
8816
8817 * data/glr.c (yyparse): Don't assume that the initial calls
8818 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8819 Print a stack-overflow message and fail instead.
8820 Initialize the line-number information before creating the stack,
8821 so that the stack-overflow message can report line zero safely.
8822
8823 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8824
8825 Fix problems reported by twlevo@xs4all.nl.
8826 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8827 (yyuserMerge): Provide a default case if b4_mergers is empty.
8828 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8829 * tests/glr-regression.at
8830 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8831 Add casts to pacify C++ compilers.
8832 * tests/glr-regression.at (Improper merging of GLR delayed action
8833 sets): Declare yylex before using it.
8834 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8835 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8836 test for valgrind; valgrind is independent of g++.
8837 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8838 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8839 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8840 Use a destructor, so that we can expand the stack. Change
8841 YYSTYPE to char * so that we can free it. Cast result of malloc.
8842
8843 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8844
8845 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8846 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8847
8848 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8849
8850 * PACKAGING: New file, suggested by Bruno Haible and taken from
8851 similar wording in gettext's PACKAGING file.
8852 * NEWS: Mention PACKAGING.
8853 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8854
8855 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8856
8857 * NEWS: Document recent i18n improvements.
8858 * bootstrap: Get runtime translations into runtime-po.
8859 Create runtime-po files automatically, if possible.
8860 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8861 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8862 does not infringe on the user's name space.
8863 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8864 * doc/bison.texinfo (Internationalization): Revamp the English
8865 and Texinfo syntax a bit, to try to make it clearer.
8866 (Bison Options, Option Cross Key): Mention --print-localedir.
8867 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8868 YYENABLE_NLS. Quote a bit more.
8869 * runtime-po/.cvsignore: New file.
8870 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8871 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8872 * runtime-po/quot.sed: Likewise.
8873 * runtime-po/boldquot.sed: Likewise.
8874 * runtime-po/en@quot.header: Likewise.
8875 * runtime-po/en@boldquot.header: Likewise.
8876 * runtime-po/insert-header.sin: Likewise.
8877 * runtime-po/remove-potcdate.sin: Likewise.
8878 * runtime-po/Makevars: Likewise.
8879 * runtime-po/LINGUAS: Likewise.
8880 * runtime-po/de.po: Likewise; we will rely on the translation project
8881 to maintain this, so "bootstrap" should get it.
8882 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8883 its value.
8884 * src/main.c (main): Bind the bison-runtime domain, too.
8885
8886 2005-07-12 Bruno Haible <bruno@clisp.org>
8887
8888 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8889 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8890 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8891 * runtime-po: New directory.
8892 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8893 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8894 * runtime-po/Rules-quot: New file, copied from po/.
8895 * runtime-po/quot.sed: Likewise.
8896 * runtime-po/boldquot.sed: Likewise.
8897 * runtime-po/en@quot.header: Likewise.
8898 * runtime-po/en@boldquot.header: Likewise.
8899 * runtime-po/insert-header.sin: Likewise.
8900 * runtime-po/remove-potcdate.sin: Likewise.
8901 * runtime-po/Makevars: New file.
8902 * runtime-po/POTFILES.in: New file.
8903 * runtime-po/LINGUAS: New file.
8904 * runtime-po/bison-runtime.pot: New file.
8905 * runtime-po/de.po: New file.
8906 * m4/bison.m4: New file.
8907 * Makefile.am (SUBDIRS): Add runtime-po.
8908 (aclocaldir, aclocal_DATA): New variables.
8909 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8910 Define aclocaldir.
8911 * src/getargs.c (usage): Document --print-localedir option.
8912 (PRINT_LOCALEDIR_OPTION): New enum item.
8913 (long_options): Add --print-localedir option.
8914 (getargs): Handle --print-localedir option.
8915 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8916 (Internationalization): New section.
8917
8918 2005-07-12 Akim Demaille <akim@epita.fr>
8919
8920 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8921 for consistency with the rest of the code.
8922 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8923 Add separators.
8924
8925 2005-07-12 Akim Demaille <akim@epita.fr>
8926
8927 * src/parse-gram.y: Use %printer instead of YYPRINT.
8928
8929 2005-07-12 Akim Demaille <akim@epita.fr>
8930
8931 * src/symtab.h, src/symtab.c (symbol_print): New.
8932 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8933 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8934
8935 2005-07-12 Akim Demaille <akim@epita.fr>
8936
8937 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8938 b4_at_dollar and b4_dollar_dollar.
8939
8940 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8941
8942 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8943 and Pennello's paper.
8944
8945 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8946
8947 * data/yacc.c (yyparse): Undo previous patch. Instead,
8948 set yylsp[0] and yyvsp[0] only if the initial action
8949 sets yylloc and yylval, respectively.
8950
8951 * data/yacc.c (yyparse): In the initial action, set
8952 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8953 This avoids the use of undefined variables if the initial
8954 action does not set yylloc and/or yylval.
8955
8956 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8957
8958 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8959 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8960 Remove from CVS. These files are automatically generated.
8961 * examples/extexi: Clarify that this file is now part of Bison,
8962 not GNU M4, and that it works with any POSIX-compatible Awk.
8963 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8964 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8965 so that we also get calc++-parser.yy. Geneate it.
8966 Use $(AWK), not gawk, since any conforming Awk will do.
8967 Put comment before action, since older 'make' can't handle comment
8968 in action.
8969 $(BUILT_SOURCES): List all built sources, not just some of them.
8970 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8971 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8972 $($(calc_sources_generated)): Remove unnecessary test for existence
8973 of target. (This had a shell syntax error anyway; a stray "x".)
8974 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8975 calc++-parser.yy.
8976 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8977
8978 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8979 implied by the other modules.
8980
8981 2005-07-06 Akim Demaille <akim@epita.fr>
8982
8983 Bind examples/calc++ to the package.
8984 * examples/calc++/Makefile: Remove, replaced by...
8985 * examples/calc++/Makefile.am: ... this new file.
8986 * examples/calc++/test: Remove input.
8987 * examples/calc++/compile: Remove.
8988 * examples/Makefile.am: New.
8989 * configure.ac, Makefile.am: Adjust.
8990 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8991
8992 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8993
8994 * data/glr.c (yyFail): Drastically simplify; since the format argument
8995 never had any % directives, we can simply pass it to yyerror.
8996 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8997 be modified later, as that is the usual style in glr.c.
8998 Problems reported by Paul Hilfinger.
8999
9000 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
9001 and size overflow errors.
9002 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
9003 in case the user prolog sets feature-test macros like _GNU_SOURCE.
9004 (YYSIZEMAX): New macro.
9005 (yystpcpy): New function, taken from yacc.c.
9006 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
9007 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
9008 so that we don't have to maintain their signatures.
9009 (yyFail): Check for buffer overflow, by using vsnprintf rather
9010 than vsprintf. Allocate a bigger buffer if possible.
9011 Report an error if buffer allocation fails.
9012 (yyStackOverflow): New function.
9013 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
9014 the initialization was successful. It might fail if storage was
9015 exhausted.
9016 (yyexpandGLRStack): Add more checks for storage allocation failure.
9017 Use yyStackOverflow to report failures.
9018 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
9019 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
9020 Don't assume stack number fits in int.
9021 (yysplitStack): Check for storage allocation failure.
9022 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
9023 can print diagnostics on storage allocation failure. All callers
9024 changed.
9025 (yyresolveValue): Use yybool for boolean.
9026 (yyreportSyntaxError): Check for size-calculation overflow.
9027 This code is taken from yacc.c.
9028 (yyparse): Check for storage allocation errors when allocating
9029 the initial stack.
9030
9031 2005-07-05 Akim Demaille <akim@epita.fr>
9032
9033 Extract calc++ from the documentation.
9034 * doc/bison.texinfo (Calc++): Add the extraction marks.
9035 * examples/extexi: New, from the aborted GNU Programming 2E.
9036 Separate the different paragraph of a file with empty lines.
9037 * examples/Makefile: Use it to extract the whole calc++ example.
9038
9039 2005-06-24 Akim Demaille <akim@epita.fr>
9040
9041 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
9042 class typedefs.
9043
9044 2005-06-22 Akim Demaille <akim@epita.fr>
9045
9046 * doc/bison.texinfo (C++ Language Interface): First stab.
9047 (C++ Parsers): Remove.
9048
9049 2005-06-22 Akim Demaille <akim@epita.fr>
9050
9051 * data/lalr1.cc (yylex_): Honor %lex-param.
9052
9053 2005-06-22 Akim Demaille <akim@epita.fr>
9054
9055 Start a set of simple examples.
9056 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
9057 * examples/calc++/calc++-driver.hh,
9058 * examples/calc++/calc++-parser.yy,
9059 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
9060 * examples/calc++/compile, examples/calc++/test: New.
9061
9062 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
9063
9064 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
9065 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
9066 which stems from the 2005-05-27 patch.
9067
9068 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9069
9070 * data/glr.c: Modify treatment of unused parameters to permit use
9071 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
9072
9073 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
9074
9075 Fix infringement on user name space reported by Janos Zoltan Szabo.
9076 * data/yacc.c (yyparse): strlen -> yystrlen.
9077
9078 2005-05-30 Akim Demaille <akim@epita.fr>
9079
9080 * data/lalr1.cc (_): New.
9081 Translate the various messages.
9082
9083 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
9084
9085 Fix infringement on user name space reported by Bruno Haible.
9086 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
9087 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
9088 the user's name space.
9089 (alloca): Include <stdlib.h> to get it, if it's not built in.
9090 (YYMALLOC, YYFREE): Define only if needed.
9091 (malloc, free): Declare, but only if needed, as this infringes on
9092 the user name space.
9093
9094 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
9095
9096 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
9097 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
9098 with %d format.
9099 * lib/ebitset.c (min, max): Undef before defining.
9100 * lib/vbitset.c (min, max): Likewise.
9101 * lib/subpipe.c (create_subpipe): Save local variables in case
9102 vfork clobbers them.
9103
9104 2005-05-24 Bruno Haible <bruno@clisp.org>
9105
9106 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
9107 error message syntax used by gcc-4.0.
9108
9109 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
9110
9111 * README: Mention m4 1.4.3. Remove obsolete advice about
9112 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
9113
9114 * bootstrap: Remove workaround for problem I encountered with
9115 gettext 0.14.1; it seems to be fixed now.
9116
9117 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
9118
9119 * NEWS: Version 2.0a.
9120
9121 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
9122 the previous change.
9123
9124 Various maintainer cleanups.
9125 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
9126 conftest*, for benefit of CVS commands run at the same time as
9127 "configure". Add build-aux, since "bootstrap" now creates it and
9128 its subfiles.
9129 * Makefile.cfg (move_if_change): Remove.
9130 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
9131 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
9132 (po_repo, do-po-update, po-update, wget_files, get-targets):
9133 (config.guess-url_prefix, config.sub-url_prefix):
9134 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
9135 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
9136 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
9137 Remove.
9138 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
9139 this is now the recommended name.
9140 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
9141 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
9142 ylwrap. These files now go into build-aux.
9143 * config/move-if-change: Remove.
9144 * config/prev-version.txt: Bump from 1.75 to 2.0.
9145
9146 * bootstrap: Add stdio-safer, unistd-safer modules.
9147 Remove m4/glibc2.m4 (introduced by latest gnulib, but
9148 we don't need it).
9149 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
9150 fopen-safer.c, stdio-safer.h, unistd-safer.h.
9151 * lib/subpipe.c: Include "unistd-safer.h".
9152 (create_subpipe): Make sure all the newly-created
9153 file descriptors are > 2, so that diagnostics don't
9154 get sent down them (which might cause Bison to hang, in theory).
9155 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
9156 * src/files.c (xfopen): Use fopen_safer, not fopen.
9157
9158 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
9159 yesterday's yacc.c fix.
9160
9161 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
9162
9163 * data/glr.c, data/lalr1.cc: Update copyright date.
9164
9165 Fix a destructor bug reported by Wolfgang Spraul in
9166 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9167 * data/yacc.c (yyabortlab): Don't call destructor, and
9168 don't set yychar to EMPTY.
9169 (yyoverflowlab): Don't call destructor.
9170 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9171 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9172 since we no longer output the message "discarding lookahead token
9173 end of input ()".
9174
9175 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9176
9177 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9178 fix a small glitch in debugging output.
9179 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9180 after YY_SYMBOL_PRINT where needed.
9181
9182 (struct yyGLRState): Add some comments.
9183 (struct yySemanticOption): Add some comments.
9184 (union yyGLRStackItem): Add comment.
9185
9186 (yymergeOptionSets): Correct this to properly perform the union,
9187 avoiding infinite reported by Michael Rosien.
9188 Update comment.
9189
9190 * tests/glr-regression.at: Add test for GLR merging error reported
9191 by M. Rosien.
9192
9193 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9194
9195 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9196 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9197 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9198 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9199 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9200 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9201 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9202 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9203 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9204 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9205 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9206 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9207 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9208 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9209 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9210 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9211 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9212 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9213 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9214 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9215 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9216 src/output.h, src/parse-gram.c, src/parse-gram.h,
9217 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9218 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9219 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9220 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9221 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9222 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9223 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9224 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9225 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9226 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9227 tests/reduce.at, tests/regression.at, tests/sets.at,
9228 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9229 Update FSF postal mail address.
9230
9231 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9232
9233 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9234 Problem reported by Ralf Menzel.
9235
9236 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9237
9238 * tests/actions.at: Test that stack overflow invokes destructors.
9239 From Marcus Holland-Moritz.
9240 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9241 from here....
9242 (yyreturn): to here. That way, destructors are called properly
9243 even if the stack overflows, or the user calls YYACCEPT or
9244 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9245 (yyoverflowlab): Destroy the lookahead.
9246
9247 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9248
9249 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9250
9251 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9252
9253 * NEWS: Bison-generated C parsers no longer quote literal strings
9254 associated with tokens.
9255 * src/output.c (prepare_symbols): Don't escape strings,
9256 since users don't want to see C escapes.
9257 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9258 in diagnostics.
9259 * tests/input.at (Torturing the Scanner): Likewise.
9260 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9261
9262 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9263
9264 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9265 the data size is known to be too small and we can't increase it.
9266 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9267
9268 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9269
9270 * src/parse-gram.y: Include quotearg.h.
9271 (string_as_id): Quote $1 before using it as a key, since the
9272 lexer no longer quotes it for us.
9273 (string_content): Don't strip quotes, since lexer no longer
9274 quotes it for us.
9275 * src/scan-gram.l: Include quotearg.h.
9276 ("\""): Omit quote.
9277 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9278 a key, since the rest of the lexer doesn't quote it.
9279 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9280 * tests/regression.at (Token definitions): Check for backslashes
9281 in token strings.
9282
9283 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9284 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9285 (yyparse): Revamp code to generate long syntax error message, to
9286 make it easier to translate, and to avoid problems with arithmetic
9287 overflow. Change "virtual memory" to "memory" in diagnostic, since
9288 we don't know whether the memory is virtual.
9289
9290 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * NEWS: Bison-generated C parsers now use the _ macro to
9293 translate strings.
9294 * data/yacc.c (_) [!defined _]: New macro.
9295 All English strings wrapped inside this macro.
9296 * doc/bison.texinfo (Bison Parser): Document _.
9297 * po/POTFILES.in: Include src/parse-gram.c, since it now
9298 includes translateable strings that parse-gram.y doesn't.
9299
9300 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9301
9302 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9303 reverting the 2004-10-11 change to this function.
9304 (symbol_check_alias_consistency): Don't call symbol_type_set
9305 if the type name is already correct.
9306 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9307
9308 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9309
9310 * tests/regression.at (Token definitions): Don't use a token named
9311 c, as that generates a "#define c ..." that runs afoul of buggy
9312 stdlib.h that uses the identifier c as a member of struct
9313 drand48_data. Problem reported by Horst Wente.
9314
9315 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9316
9317 * bootstrap: Change translation URL from
9318 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9319 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9320 redirection glitches. Problem reported by twlevo@xs4all.nl.
9321
9322 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9323
9324 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9325 after operands; POSIX says this isn't portable for the c99 command.
9326
9327 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9328
9329 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9330 immediately if a data overrun has occurred; this may help us track
9331 down what may be a spurious failure on MacOS.
9332
9333 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9334
9335 Respond to problems reported by twlevo@xs4all.nl.
9336
9337 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9338
9339 * src/vcg.h: Comment fix.
9340 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9341 (G_CMAX): Change to -1 instead of INT_MAX.
9342
9343 * data/yacc.c (yyparse): Omit spaces before #line.
9344
9345 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9346
9347 * src/tables.c (state_number_to_vector_number): Put it inside an
9348 "#if 0", since it's not currently used. Problem reported by
9349 Roland McGrath.
9350
9351 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9352
9353 * src/output.c (escaped_output): Renamed from
9354 escaped_file_name_output, since we now use it for symbol tags as
9355 well. All uses changed.
9356 (symbol_destructors_output, symbol_printers_output):
9357 Escape symbol tags too.
9358 Problem reported by Matyas Forstner in
9359 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9360
9361 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9362 not needed.
9363 * src/output.c (user_actions_output, token_definitions_output,
9364 symbol_destructors_output, symbol_printers_output): Likewise.
9365 * src/reader.c (prologue_augment): Likewise.
9366 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9367
9368 * src/vcg.c (output_edge): Don't quote linestyle arg.
9369 Problem reported by twlevo@xs4all.nl.
9370
9371 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9372
9373 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9374 example, reported by Derek M Jones. Also, make the example even
9375 more outrageous, to better illustrate how bad the problem is.
9376
9377 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9378
9379 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9380 putsym. Typo reported by Sebastian Piping.
9381
9382 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9383
9384 * doc/bison.texinfo (Language and Grammar): some -> same
9385 (Epilogue): int he -> in the
9386 Typos reported by Sebastian Piping via Justin Pence.
9387
9388 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9389
9390 * tests/glr-regression.at (Improper handling of embedded actions
9391 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9392 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9393 with dollar signs in test names.
9394 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9395 for a similar reason.
9396
9397 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9398
9399 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9400 wants to redefine G_VIEW.
9401
9402 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9403
9404 * src/vcg.c (get_view_str): Remove case for normal_view.
9405 Problem reported by twlevo@xs4all.nl.
9406
9407 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9408
9409 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9410 Problem reported by twlevo@xs4all.nl.
9411
9412 * doc/bison.texinfo: Change @dircategory from "GNU programming
9413 tools" to "Software development". Requested by Richard Stallman
9414 via Karl Berry.
9415
9416 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9417
9418 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9419 Problem reported by twlevo@xs4all.nl.
9420
9421 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9422
9423 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9424 keyword; it's not needed with modern compilers, and it doesn't
9425 affect correctness with older compilers. Suggested by
9426 twlevo@xs4all.nl.
9427
9428 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9429
9430 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9431 gcc -Wswitch-default.
9432 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9433 * data/yacc.c (yyparse): Likewise.
9434
9435 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9436
9437 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9438 already. Let config.h define any nonstandard values.
9439
9440 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9441
9442 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9443 for the benefit of slower hosts. Problem reported by
9444 Nelson H. F. Beebe.
9445
9446 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9447
9448 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9449 being defined and not used.
9450 * data/lalr1.cc (yyparse): Likewise.
9451 Use "if (false)" rather than "if (0)".
9452
9453 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9454
9455 * TODO: Mention that we should allow NUL bytes in tokens.
9456
9457 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9458
9459 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9460 Problem reported by Hans Aberg.
9461
9462 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9463
9464 * src/getargs.c (version): Happy new year; update overall
9465 program copyright date from 2004 to 2005.
9466
9467 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9468 Problem reported by Hans Aberg.
9469 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9470 (Output file names.): Add a test for the case when standard output
9471 is closed.
9472
9473 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9474
9475 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9476 to fix an oversight in the Bison 2.0 manual.
9477
9478 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9479
9480 * NEWS: Version 2.0. Reformat the existing news items since
9481 1.875, so that related items are grouped together.
9482 * configure.ac (AC_INIT): Bump version to 2.0.
9483 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9484
9485 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9486 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9487 otherwise, we're not testing alloca. Unfortunately there's no
9488 simple way to consult HAVE_ALLOCA here.
9489
9490 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9491 for yymsg, too.
9492
9493 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9494 hand. This avoids a warning about comparing int to size_t when
9495 GCC warnings are enabled.
9496
9497 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9498
9499 * NEWS: Bison-generated parsers no longer default to using the
9500 alloca function (when available) to extend the parser stack, due
9501 to widespread problems in unchecked stack-overflow detection.
9502 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9503 responsibility to set it to a positive value. This lets the user
9504 specify a value that is not a preprocessor constant.
9505 * data/yacc.c (YYMAXDEPTH): Likewise.
9506 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9507 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9508 to be a compile-time constant. However, explain the constraints on it.
9509 Also, explain the constraints on YYINITDEPTH.
9510 (Table of Symbols): Explain that alloca is no longer the default.
9511 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9512 to 1.
9513
9514 * doc/bison.texinfo (Location Default Action): Mention that n must
9515 be zero when k is zero. Suggested by Frank Heckenbach.
9516
9517 2004-12-22 Akim Demaille <akim@epita.fr>
9518
9519 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9520 (parser::state_type, parser::semantic_type, parser::location_type):
9521 Private, not public.
9522 (parser::parse): Return ints, not bool.
9523 Returning a bool introduces a problem: 0 corresponds to false, and
9524 it seems weird to return false on success. Returning true changes
9525 the conventions for yyparse.
9526 Alternatively we could return void and send an exception.
9527 There is no clear consensus (yet?).
9528 (state_stack, semantic_stack, location_stack): Rename as...
9529 (state_stack_type, semantic_stack_type, location_stack_type): these.
9530 Private, not public.
9531 * tests/c++.at: New.
9532 * tests/testsuite.at, tests/Makefile.am: Adjust.
9533
9534 2004-12-21 Akim Demaille <akim@epita.fr>
9535
9536 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9537
9538 2004-12-21 Akim Demaille <akim@epita.fr>
9539
9540 Don't impose std::string for filenames.
9541
9542 * data/lalr1.cc (b4_filename_type): New.
9543 (position::filename): Use it.
9544 (parser.hh): Move the inclusion of stack.hh and location.hh below
9545 the user code, so that needed headers for the filename type can be
9546 included first.
9547 Forward declare them before the user code.
9548 * tests/Makefile.am (check-local, installcheck-local): Pass
9549 TESTSUITEFLAGS to the TESTSUITE.
9550
9551 2004-12-20 Akim Demaille <akim@epita.fr>
9552
9553 Use more STL like names: my_class instead of MyClass.
9554
9555 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9556 (SemanticStack, SemanticType, StateStack, StateType)
9557 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9558 (Parser::value): Rename as...
9559 (location_stack, location_type, rhs_number_type, semantic_stack)
9560 (semantic_type, state_stack, state_type, token_number_type, stack)
9561 (slice, traits, parser::yylloc, parser::yylval): these.
9562
9563 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9564
9565 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9566
9567 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9568 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9569
9570 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9571
9572 Remove uses of 'short int' and 'unsigned short int'. This raises
9573 some arbitrary limits. It uses more memory but nowadays that's
9574 not much of an issue.
9575
9576 This change does not affect the generated parsers; that's a different
9577 task, as some users will want to conserve memory there.
9578
9579 Ideally we should use size_t to represent all object counts, and
9580 something like ptrdiff_t to represent signed differences of object
9581 counts; but that will require more code-cleanup than I have the
9582 time to do right now.
9583
9584 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9585 Use size_t, not int or short int, to count objects.
9586 * src/closure.c (nritemset, closure): Likewise.
9587 * src/closure.h (nritemset, closure): Likewise.
9588 * src/nullable.c (nullable_compute): Likewise.
9589 * src/print.c (print_core): Likewise.
9590 * src/print_graph.c (print_core): Likewise.
9591 * src/state.c (state_compare, state_hash): Likewise.
9592 * src/state.h (struct state): Likewise.
9593 * src/tables.c (default_goto, goto_actions): Likewise.
9594
9595 * src/gram.h (rule_number, rule): Use int, not short int.
9596 * src/output.c (prepare_rules): Likewise.
9597 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9598 errs, reductions): Likewise.
9599 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9600 Likewise.
9601 * src/tables.c (vector_number, tally, action_number,
9602 ACTION_NUMBER_MINIMUM): Likewise.
9603 * src/output.c (muscle_insert_short_int_table): Remove.
9604
9605 2004-12-17 Akim Demaille <akim@epita.fr>
9606
9607 * data/lalr1.cc: Extensive Doxygenation.
9608 (error_): Rename as...
9609 (error): this, since it is visible to the user.
9610 Adjust callers.
9611 (Parser::message): Now an automatic variable from...
9612 (Parser::yyreport_syntax_error_): here.
9613 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9614 Parser::error.
9615 * tests/input.at: Escape $.
9616
9617 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9618
9619 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9620 Parenthesize rhs to avoid obscure problems with mistakes like
9621 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9622 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9623 b4_rhs_location): Likewise.
9624 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9625 b4_rhs_location): Likewise.
9626
9627 2004-12-16 Akim Demaille <akim@epita.fr>
9628
9629 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9630 yacc.c: be sure to stay within yycheck_.
9631 * tests/actions.at: Re-enable C++ tests.
9632
9633 2004-12-16 Akim Demaille <akim@epita.fr>
9634
9635 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9636 real.
9637
9638 2004-12-16 Akim Demaille <akim@epita.fr>
9639
9640 Use #define to handle the %name-prefix.
9641
9642 * data/glr.c, data/yacc.c: Comment changes.
9643 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9644 so that one can refer to yylex in the parser file, and have it
9645 renamed, as is the case with other skeletons.
9646
9647 2004-12-16 Akim Demaille <akim@epita.fr>
9648
9649 Move lalr1.cc internals into yy*.
9650
9651 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9652 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9653 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9654 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9655 (empty_, final_, terror_, errcode_, ntokens_)
9656 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9657 (looka_, ilooka_, error_range_, nerrs_):
9658 Rename as...
9659 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9660 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9661 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9662 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9663 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9664 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9665 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9666 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9667 these.
9668
9669 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9670
9671 Fix some problems reported by twlevo at xs4all.
9672 * src/symtab.c (symbol_new): Report an error if the input grammar
9673 contains too many symbols. This is better than calling abort() later.
9674 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9675 (struct node, struct graph):
9676 Rename member expand to stretch. All uses changed.
9677 (struct graph): Remove member layoutalgorithm. All uses removed.
9678 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9679 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9680 All uses changed.
9681 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9682
9683 2004-12-15 Akim Demaille <akim@epita.fr>
9684
9685 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9686 Add more Doxygen comments.
9687 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9688 (report_syntax_error_, translate_): Rename as...
9689 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9690 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9691
9692 2004-12-15 Akim Demaille <akim@epita.fr>
9693
9694 * data/lalr1.cc (lex_): Rename as...
9695 (yylex_): this.
9696 Move the trace here.
9697 Take the %name-prefix into account.
9698 Reported by Alexandre Duret-Lutz.
9699
9700 2004-12-15 Akim Demaille <akim@epita.fr>
9701
9702 Simplify the C++ parser constructor.
9703
9704 * data/lalr1.cc (debug_): Rename as...
9705 (yydebug_): so that the parser's internals are always in the yy*
9706 pseudo namespace.
9707 Adjust uses.
9708 (b4_parse_param_decl): Remove the leading comma as it is now only
9709 called as unique argument list.
9710 (Parser::Parser): Remove the constructor accepting a location and
9711 an initial debugging level.
9712 Remove from the other ctor the argument for the debugging level.
9713 (debug_level_type, debug_level, set_debug_level): New.
9714
9715 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9716 constructor calls.
9717
9718 2004-12-15 Akim Demaille <akim@epita.fr>
9719
9720 Remove b4_root related material: failure experiment
9721 (which goal was to allow to derive from a class).
9722
9723 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9724 definitions and uses.
9725
9726 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9727
9728 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9729 not 2, since it's not portable to subtract 1 from the start of an
9730 array. The new item 0 is never set or used. All uses changed.
9731
9732 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9733 the default definition of YYLLOC_DEFAULT. Problem reported
9734 by Frank Heckenbach.
9735
9736 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9737
9738 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9739 the normal case and one for the error case. Just use the
9740 first one uniformly. Problem reported by Frank Heckenbach.
9741 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9742 use exactly the same macro in both places.
9743 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9744 so that the normal-case YYRHSLOC works for the error case too.
9745 All uses changed.
9746 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9747 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9748 * doc/bison.texinfo (Location Default Action): Don't claim that
9749 we have an array of locations. Use the same macro for both glr
9750 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9751 the index is 0.
9752
9753 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9754
9755 * HACKING: Update email addresses to send announcements to.
9756
9757 * configure.ac (AC_INIT): Bump version to 1.875f.
9758
9759 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9760
9761 * NEWS: Version 1.875e.
9762 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9763
9764 * src/scan-skel.l: Include "complain.h", for "fatal".
9765
9766 * src/relation.h (relation_print, relation_digraph):
9767 Relation sizes are of type relation_node, not size_t (this is
9768 merely a doc fix, since the two types are equivalent).
9769 (relation_transpose): Relation sizes are of type relation_node,
9770 not int.
9771 * src/relation.c: Likewise.
9772 (top, infinity): Now of type relation_node, not int.
9773 (traverse, relation_transpose): Use relation_node, not int.
9774
9775 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9776 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9777 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9778
9779 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9780 specifying whether the test should be skipped. Use it tp
9781 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9782 fail on some hosts, and should be skipped.
9783
9784 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9785
9786 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9787 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9788 unless otherwise specified below.
9789
9790 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9791 to allocate kernel_base, kernel_items, kernel_size, since
9792 they needn't be initialized to 0.
9793 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9794 * src/closure.c (new_closure): Likewise, for itemset.
9795 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9796 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9797 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9798 (build_relations): Likewise for edge, states1, includes.
9799 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9800 * src/reader.c (packgram): Likewise, for ritem, rules.
9801 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9802 * src/relation.c (relation_digraph): Likewise for VERTICES.
9803 (relation_transpose): Likewise for new_R, end_R.
9804 * src/symtab.c (symbols_token_translations_init): Likewise for
9805 token_translations.
9806 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9807 (token_actions): Likewise for yydefact, actrow, conflrow,
9808 conflict_list.
9809 (save_column): Likewise for froms[symno], tos[symno].
9810 (goto_actions): Likewise for state_count.
9811 (pack_table): Likewise for base, pos, check.
9812 (tables_generate): Likewise for width.
9813
9814 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9815 for initial core. Just have a separate core, so we needn't worry
9816 about whether kernel_size and kernel_base are initialized.
9817
9818 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9819 kernel_size, kernel_items): Remove unnecessary initialization.
9820 * src/conflicts.c (conflicts): Likewise.
9821 * src/derives.c (derives): Likewise.
9822 * src/muscle_tablc (muscle_insert): Likewise.
9823 * src/relation.c (relation_digraph): Likewise.
9824 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9825 conflrow, conflict_table, conflict_list, table, check):
9826 Likewise.
9827
9828 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9829 This is because all callers pass unsigned int.
9830 * src/closure.h (new_closure): Likewise.
9831
9832 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9833 (build_relations): Initialize includes[i] in all cases.
9834 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9835 and rules[ruleno].precsym. Initialize members in order.
9836 * src/relation.c (relation_transpose): Always initialize new_R[i]
9837 and end_R[i].
9838 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9839
9840 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9841 conflict_list[0] was always 0, but now it isn't initialized.
9842
9843 * src/table.c (table_grow): When conflict_table grew, the grown
9844 area wasn't cleared. Fix this.
9845
9846 * lib/.cvsignore: Add strdup.c, strdup.h.
9847 * m4/.cvsignore: Add strdup.m4.
9848
9849 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9850
9851 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9852 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9853 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9854 ngotos + 1 without checking for overflow.
9855 (build_relations): Use END_NODE, not -1, to denote end of edges.
9856 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9857 build_relations): Use goto_number, not int, for goto numbers.
9858 * src/tables.c (save_column, default_goto): Likewise.
9859
9860 2004-11-23 Akim Demaille <akim@epita.fr>
9861
9862 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9863 of #defining from yystype.
9864 Don't typedef yystype, C++ does not need it.
9865 This lets it possible to forward declare it as union.
9866
9867 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9868
9869 * bootstrap (gnulib_modules): Add extensions.
9870 Problem reported by Jim Meyering.
9871
9872 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9873
9874 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9875 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9876 src/system.h, src/tables.c: XFREE -> free, to accommodate
9877 recent change to gnulib xalloc.h.
9878 Problem reported by Jim Meyering.
9879
9880 2004-11-17 Akim Demaille <akim@epita.fr>
9881
9882 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9883
9884 2004-11-17 Akim Demaille <akim@epita.fr>,
9885 Alexandre Duret-Lutz <adl@gnu.org>
9886
9887 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9888 changes.
9889 (YYCDEBUG): Adjust.
9890 Use it instead of cdebug_.
9891 (Parser::debug_stream, Parser::set_debug_stream): New.
9892 (Parser::symprint_): Define cdebug_ for temporary backward
9893 compatibility.
9894 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9895 debug_stream ().
9896
9897 2004-11-17 Akim Demaille <akim@epita.fr>
9898
9899 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9900 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9901 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9902 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9903
9904 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9905
9906 * data/glr.c (yyloc_default): Remove; not used.
9907 Problem reported by Frank Heckenbach.
9908
9909 2004-10-25 Akim Demaille <akim@epita.fr>
9910
9911 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9912 Introduce another definition to address simple location arrays.
9913 (yyGLRStack): New member: yyerror_range.
9914 (yyrecoverSyntaxError, yyparse): Update it.
9915 (yyrecoverSyntaxError): Use it when shifting the error token to
9916 have an accurate range, equivalent to the one computed by both
9917 yacc.c and lalr1.cc.
9918 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9919 that column numbers start at column 0, as per GNU Coding
9920 Standards, the others tests, and the doc.
9921 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9922 Adjust to the above change (first column is 0).
9923 And adjust the location of the "<error>", now covering the whole
9924 line.
9925
9926 2004-10-22 Akim Demaille <akim@epita.fr>
9927 and Paul Eggert <eggert@cs.ucla.edu>
9928
9929 Remove some arbitrary limits on goto numbers and relations.
9930 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9931 initial values, since they're never used.
9932 (set_goto_map): ngotos is now unsigned, so test for overflow
9933 by seeing whether it wraps around to zero.
9934 * src/lalr.h (goto_number): Now size_t, not short int.
9935 (GOTO_NUMBER_MAXIMUM): Remove.
9936 * src/relation.c (relation_print, traverse, relation_transpose):
9937 Check for END_NODE rather than looking at sign.
9938 * src/relation.h (END_NODE): New macro.
9939 (relation_node): Now size_t, not short int.
9940
9941 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9942
9943 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9944 keyword, not an identifier. Problem reported by Baron Schwartz in
9945 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9946
9947 2004-10-11 Akim Demaille <akim@epita.fr>
9948
9949 * src/symtab.c (symbol_check_alias_consistency): Also check
9950 type names, destructors, and printers.
9951 Reported by Alexandre Duret-Lutz.
9952 Recode the handling of associativity and precedence in terms
9953 of symbol_precedence_set.
9954 Accept no redeclaration at all, not even equal to the previous
9955 value.
9956 (redeclaration): New.
9957 Use it to factor redeclaration complaints.
9958 (symbol_make_alias): Don't set the type of the alias, let
9959 symbol_check_alias_consistency do it as for other features.
9960 * src/symtab.h (symbol): Add new member prec_location, and
9961 type_location.
9962 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9963 * tests/input.at (Incompatible Aliases): New.
9964
9965 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9966
9967 .cvsignore fixes to accommodate gnulib changes,
9968 and the practice of naming build directories "_build".
9969 * .cvsignore: Add "_*". Sort.
9970 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9971 * m4/.cvsignore: Add "*_gl.m4".
9972
9973 2004-10-06 Akim Demaille <akim@epita.fr>
9974
9975 * src/parse-gram.y (add_param): Fix the truncation of trailing
9976 spaces.
9977
9978 2004-10-05 Akim Demaille <akim@epita.fr>
9979
9980 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9981 whether the reducion was empty or not. This leaves room to
9982 improve the use of YYLLOC_DEFAULT in such a case.
9983 lalr1.cc is still experimental, so changing this is acceptable.
9984 And finally, there are probably not many users who changed the
9985 handling of locations in GLR, so changing is admissible too.
9986
9987 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9988 empty reduction, set @$ to an empty location ending the previously
9989 stacked symbol.
9990 Adjust uses to make sure the code is triggered on empty
9991 reductions.
9992 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9993 expected output: empty reductions have empty locations.
9994
9995 2004-09-29 Akim Demaille <akim@epita.fr>
9996
9997 * data/lalr1.cc: Move towards a more standard C++ coding style
9998 for templates: Class < T > -> Class<T>.
9999
10000 2004-09-29 Akim Demaille <akim@epita.fr>
10001
10002 * data/lalr1.cc: Reinstall the former ctor, for sake of
10003 compatibility, but warn it will be removed.
10004 Move towards a more standard C++ coding style (i.e., type *var ->
10005 type* var).
10006
10007 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
10008
10009 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
10010 since it's less likely to work if NULs are involved in the future.
10011
10012 2004-09-27 Akim Demaille <akim@epita.fr>
10013
10014 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
10015
10016 2004-09-27 Akim Demaille <akim@epita.fr>
10017
10018 * data/lalr1.cc (b4_parse_param_decl_1): New.
10019 (b4_parse_param_decl): Use it to have different names between attribute
10020 and argument names.
10021 (b4_cc_constructor_call): Likewise.
10022
10023 2004-09-24 Akim Demaille <akim@epita.fr>
10024
10025 * src/parse-gram.y (add_param): Strip the leading and trailing
10026 blanks from a formal argument declaration.
10027 (YY_LOCATION_PRINT): New.
10028
10029 2004-09-24 Akim Demaille <akim@epita.fr>
10030
10031 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
10032 after the location.
10033
10034 2004-09-24 Akim Demaille <akim@epita.fr>
10035
10036 * doc/bison.texinfo (Table of Symbols): Sort.
10037
10038 2004-09-21 Akim Demaille <akim@epita.fr>
10039
10040 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
10041 the useless parentheses.
10042 Suggested by Paul Eggert.
10043
10044 2004-09-20 Akim Demaille <akim@epita.fr>
10045
10046 Let the initial-action act on the look-ahead, and use it for the
10047 "initial push" (corresponding to an hypothetical beginning-of-file).
10048 And let lalr1.cc honor %initial-action.
10049
10050 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
10051 example.
10052 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
10053 (Parser::Parser): Remove the ctor that used to initialize it.
10054 (Parser::parse): Like in the other skeletons, issue the "starting
10055 parse" message before any action.
10056 Honor %initial-action.
10057 Initialize the stacks with the lookahead.
10058 * data/yacc.c: Let $$ and @$ in %initial-action designate the
10059 look-ahead.
10060 Push them in the stacks.
10061 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
10062
10063 2004-09-20 Akim Demaille <akim@epita.fr>
10064
10065 * doc/bison.texinfo (Initial Action Decl): New.
10066
10067 2004-09-20 Akim Demaille <akim@epita.fr>
10068
10069 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
10070 clearer criterion to define it.
10071 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
10072 When reducing on an empty RHS, use the latest stacked location as
10073 location.
10074 yylloc is not always available.
10075 * data/glr.c: Likewise.
10076 Also, honor initial-actions.
10077
10078 2004-09-20 Akim Demaille <akim@epita.fr>
10079
10080 * data/yacc.c (YY_LOCATION_PRINT): New.
10081 Define when we know YYLTYPE's structure, i.e., when the default
10082 YYLLOC_DEFAULT is used.
10083 * data/c.m4 (b4_yysymprint_generate): Use it.
10084 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
10085 value of the result.
10086 (error_start_): Replace with...
10087 (error_range_): this location array.
10088 This allows to replace code relying on the implementation of
10089 locations by portable code.
10090 * data/yacc.c (yylerrsp): Replace with...
10091 (yyerror_range): this.
10092 Every time a token is popped, update yyerror_range[0], to have an
10093 accurate location for the error token.
10094 * data/glr.c (YY_LOCATION_PRINT): New.
10095 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
10096 deference a pointer.
10097 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
10098 report the location in %printers.
10099
10100 * src/scan-skel.l: Instead of abort, report error messages to ease
10101 understanding skeleton scanning failures.
10102
10103 2004-09-16 Akim Demaille <akim@epita.fr>
10104
10105 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
10106 (iterator, const_iterator): these, to be more in the C++ spirit.
10107 Also, return reverse iterators so that when displaying the stack
10108 we display its bottom first.
10109 (Parser::stack_print_, Parser::reduce_print_): Match the messages
10110 from yacc.c.
10111 We should probably use vector here though.
10112
10113 2004-09-16 Akim Demaille <akim@epita.fr>
10114
10115 Have more complete shift traces.
10116
10117 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
10118 to report Shifts instead of ad hoc YYDPRINTF invocations,
10119 including for the error token.
10120 * data/lalr1.cc (symprint_): Output the location.
10121 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
10122 output the location within the %printer.
10123 Activate GLR tests, at least to make sure they compile properly.
10124 They still don't pass though.
10125 * tests/calc.at: Adjust expect verbose output, since now "Entering
10126 state..." is on a different line than the "Shifting" message.
10127
10128 2004-09-08 Akim Demaille <akim@epita.fr>
10129
10130 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
10131 Bison directive from the Bison file to the invocation of this
10132 macro, so that these directives are passed to
10133 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
10134 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
10135 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
10136 the extra Bison directives instead of the whole series.
10137 Change the grammar so that there are recoverable errors, and
10138 unrecoverable errors. Now we can have the parser give up before
10139 consuming the whole input. As a result we now can observe that
10140 the lookahead is freed when needed.
10141 Change the parser source to parse argv[1] instead of a hard coded
10142 string.
10143 Simplify yylex, and give a value and location to EOF.
10144 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
10145 passed directives already coded in the file.
10146 Add some tests to check the location of "error".
10147 For some tests, the C++ parser is correct, and not yacc.c.
10148 For other tests, they provide different, but unsatisfying, values,
10149 so keep the C++ value so that at least one parser is "correct"
10150 according to the test suite.
10151 (Actions after errors): Remove, this is subsumed by the
10152 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
10153
10154 2004-09-06 Akim Demaille <akim@epita.fr>
10155
10156 * data/lalr1.cc: Adjust the indentation of the labels.
10157 (Parser::pop): New.
10158 Use it.
10159
10160 2004-09-06 Akim Demaille <akim@epita.fr>
10161
10162 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
10163 argument, an informative message.
10164 Call YY_SYMBOL_PRINT.
10165 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
10166 * data/lalr1.cc (destruct_): Likewise.
10167 In addition, no longer depend on b4_yysymprint_generate and
10168 b4_yydestruct_generate to generate these functions, do it "by
10169 hand".
10170
10171 2004-09-03 Akim Demaille <akim@epita.fr>
10172
10173 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10174 invoked, yydestruct the lookahead.
10175 * tests/calc.at (Calculator $1): Update the expected lengths of
10176 traces: there is an added line for the discarded lookahead.
10177 * doc/bison.texinfo (Destructor Decl): Some rewording.
10178 Define "discarded" symbols.
10179
10180 2004-09-02 Akim Demaille <akim@epita.fr>
10181
10182 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10183
10184 2004-09-02 Akim Demaille <akim@epita.fr>
10185
10186 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10187 (YYDSYMPRINTF): Rename as...
10188 (YY_SYMBOL_PRINT): this.
10189 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10190 two.
10191 Use it instead of direct symprint_ calls.
10192 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10193 one.
10194
10195 2004-09-02 Akim Demaille <akim@epita.fr>
10196
10197 * data/lalr1.cc (b4_yysymprint_generate): New.
10198 (symprint_): New member function, defined when YYDEBUG.
10199 Use it consistently instead of token/nterm debugging output by
10200 hand.
10201 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10202 %printer calls to use cdebug_ when using lalr1.cc.
10203
10204 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10205
10206 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10207 with #ifdef YYDEBUG.
10208
10209 2004-08-26 Akim Demaille <akim@epita.fr>
10210
10211 * doc/bison.texinfo (Implementing Loops): Rename as...
10212 (Implementing Gotos/Loops): this.
10213
10214 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10215
10216 Adjust to latest gnulib.
10217 * bootstrap (gnulib_modules): Add xalloc-die.
10218 Set LC_ALL=C so that file names sort consistently.
10219 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10220 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10221 uintmax_t.m4, ulonglong.m4.
10222 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10223 po.m4 since we are now using _gl.m4 instead.
10224
10225 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10226
10227 * src/scan-action.l: Remove. Scanning of semantic actions is
10228 handled in scan-gram.l.
10229
10230 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10231
10232 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10233
10234 * src/location.h (struct): The file member is a uniqstr.
10235 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10236
10237 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10238
10239 Fix bug with non-%union parsers that have printers or destructors,
10240 which led to a Bison core dump. Reported by Peter Fales in
10241 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10242
10243 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10244 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10245 not to our own type.
10246 * src/output.c (symbol_destructors_output, symbol_printers_output):
10247 Don't assume %union.
10248 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10249 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10250 UNION-FLAG. All callers changed.
10251 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10252 Use type char, not unsigned int, when declaring an array of char;
10253 this lets us remove a cast.
10254 (Printers and Destructors): Add non-%union test cases.
10255
10256 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10257
10258 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10259 GLR writeups. E.g., avoid frenchspacing and the future tense,
10260 change "lookahead" to "look-ahead", and change "wrt" to "with
10261 respect to".
10262
10263 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10264
10265 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10266 New sections, split off from the GLR Parsers section. Put the new
10267 Simple GLR Parser near the start of the GLR section, for clarity.
10268 Rewrite connective text.
10269
10270 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10271
10272 * doc/bison.texinfo (Simple GLR Parsers): New section.
10273
10274 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10275
10276 * NEWS, TODO, doc/bison.texinfo:
10277 Use "look-ahead" instead of "lookahead", to be consistent.
10278 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10279 while we're fixing "look-ahead".
10280 * src/conflicts.c (shift_set): Renamed from shiftset.
10281 (look_ahead_set): Renamed from lookaheadset.
10282 * src/print.c: Likewise.
10283 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10284 name for "lookahead".
10285 (report_types, usage): Likewise.
10286 * src/getargs.h (report_look_ahead_tokens): Renamed from
10287 report_lookaheads.
10288 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10289 compute_lookaheads.
10290 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10291 (look_ahead_tokens_print): Renamed from lookaheads_print.
10292 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10293 state_rule_lookaheads_print.
10294 * src/state.h: Likewise.
10295 (reductions.look_ahead_tokens): Renamed from lookaheads.
10296 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10297 AT_DATA_LOOKAHEADS_GRAMMAR.
10298
10299 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10300
10301 * README: Update location of patched M4 distribution.
10302
10303 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10304
10305 Don't assume the C++ compiler takes the same arguments as the C compiler
10306 (trivial change).
10307 * configure.ac (O0CXXFLAGS): New var.
10308 * tests/atlocal.in (CXXFLAGS): Use it.
10309
10310 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10311
10312 Fix some "make check" problems with C++ reported by
10313 Albert Chin-A-Young for Tru64 C++ in this thread:
10314 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10315
10316 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10317 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10318 Output to a .cc file for C++, not to a .c file.
10319 * tests/calc.at (AT_CHECK_CALC): Likewise.
10320 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10321 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10322
10323 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10324
10325 * tests/calc.at, tests/actions.at: Workaround for SGI
10326 C++ compiler. (trivial change)
10327
10328 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10329
10330 Spent a few hours checking out which prerequisite versions the
10331 current sources actually require. I went all the way back to
10332 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10333 a seemingly endless set of combinations of versions more recent
10334 than that. The bottom line is that the current sources require
10335 fairly recent versions of the build tools, and it'll be some work
10336 to change this.
10337 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10338 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10339 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10340 Add comments explaining why those particular versions are
10341 currently needed.
10342
10343 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10344 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10345 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10346
10347 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10348 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10349
10350 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10351
10352 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10353 0.11.5. Suggested by Bruno Haible.
10354 * bootstrap: Remove gettext version checking.
10355
10356 * doc/bison.texinfo (Decl Summary): Also mention that %union
10357 can depend on prerequisite types. Problem reported by Tim
10358 Van Holder.
10359
10360 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10361
10362 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10363 * README-alpha: Don't tell people not to package this.
10364
10365 * bootstrap: Don't assume $(...) works; use `...` instead.
10366 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10367 gettext better.
10368
10369 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10370 put into the -d output file, and mention what to do if YYSTYPE is
10371 defined as a macro.
10372
10373 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10374
10375 Undo change made earlier today: it caused autopoint to not bring
10376 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10377 autopoint's.
10378
10379 * bootstrap: Check that gettext version matches what's in
10380 configure.ac. Warn users to ignore robots.txt ERROR 404.
10381 * bootstrap: Undo today's earlier change (logged below).
10382 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10383
10384 The gettext version checking is causing more trouble than it's
10385 curing; remove it. Problem reported by Paul Hilfinger.
10386
10387 * bootstrap: Issue a warning that one can expect a message
10388 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10389 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10390
10391 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10392
10393 Ensure that the C++ compiler used for testing actually works on a
10394 simple test program; if not, skip the C++-related tests. Problem
10395 reported by Vin Shelton in:
10396 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10397
10398 * m4/cxx.m4: New file.
10399 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10400 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10401 * tests/local.at (AT_COMPILE_CXX): Use it.
10402
10403 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10404
10405 * data/glr.c (yylloc): Output this macro even if locations are not
10406 being generated, as the GLR parser needs it even in that case.
10407 Problem reported by Troy A. Johnson
10408 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10409
10410 * configure.ac (AC_INIT): Update to 1.875e.
10411
10412 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10413
10414 * NEWS: Version 1.875d.
10415 * configure.ac (AC_INIT): Likewise.
10416 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10417
10418 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10419 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10420 lalr1.cc runs afoul of the first, and the last two are no longer
10421 supported by GCC 3.4.0.
10422 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10423 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10424
10425 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10426
10427 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10428 unsigned int, for compatibility with latest gnulib hash module.
10429 * src/state.c (state_hash, state_hasher): Likewise.
10430 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10431 * src/uniqstr.c (hash_uniqstr): Likewise.
10432
10433 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10434
10435 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10436
10437 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10438 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10439 character and string literals.
10440 (unexpected_end): New function.
10441 (unexpected_eof): Use it.
10442 (unexpected_newline): New function.
10443 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10444 actions.
10445
10446 * NEWS: Document %expect-rr.
10447
10448 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10449 Fix typo by replacing $1 with $option.
10450 Remove more 'intl'-related files.
10451 Don't DEFUN AM_INTL_SUBDIR twice.
10452
10453 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10454 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10455 strtoul.c.
10456 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10457 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10458 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10459 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10460 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10461 * src/.cvsignore: Add *.output.
10462
10463 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10464 gets copied to the output file.
10465
10466 2004-04-28 Paul Eggert <eggert@twinsun.com>
10467
10468 Get files from the gnulib and po repositories, instead of relying
10469 on them being in our CVS. Upgrade to latest versions of gnulib
10470 and Automake.
10471
10472 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10473 * bootstrap: Bootstrap from gnulib and po repositories.
10474 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10475 * README-cvs: Document these changes. Remove version numbers from
10476 mentions of build tools, since they change so often. Mention Flex.
10477
10478 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10479 (gl_USE_SYSTEM_EXTENSIONS): Add.
10480 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10481 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10482 does this for us.
10483 (AC_ISC_POSIX): Remove; we no longer support this
10484 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10485 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10486 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10487 Do not check for C89 headers, except for locale.h which is used
10488 by the Yacc library and must port to K&R hosts.
10489 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10490 Do not check for C89 functions, except for setlocale which is
10491 used by the Yacc library.
10492 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10493 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10494 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10495 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10496 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10497 AM_GNU_GETTEXT): Remove; now done by:
10498 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10499 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10500 for us.
10501
10502 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10503 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10504 Define to empty, as gnulib.mk will do the rest for us.
10505 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10506 for us.
10507 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10508 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10509
10510 * src/files.c: Include gnulib's xstrndup.h.
10511
10512 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10513 (REALLOC): Use xnrealloc, for likewise.
10514 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10515 (strnlen, memrchr): Remove decls; functions no longer used.
10516 Include <stpcpy.h>.
10517
10518 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10519 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10520 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10521 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10522 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10523 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10524 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10525 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10526 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10527 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10528 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10529 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10530 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10531 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10532 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10533 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10534 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10535 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10536 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10537 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10538 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10539 Remove, as these files are now generated automatically
10540 by bootstrap or automake.
10541
10542 * po/ChangeLog: Remove: all but one entry was a duplicate
10543 of this file, and I moved that 2000-11-02 entry here.
10544
10545 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10546 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10547 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10548 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10549 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10550 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10551 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10552 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10553 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10554 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10555 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10556 xstrndup.h.
10557 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10558 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10559 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10560 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10561 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10562 * src/.cvsignore: Remove *_.c.
10563
10564
10565 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10566 support it. (The latest stable gzip doesn't.)
10567
10568 2004-04-27 Paul Eggert <eggert@twinsun.com>
10569
10570 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10571 case, as stos_ is now used by destructors due to the 2004-02-09
10572 change.
10573
10574 Remove more K&R C support.
10575 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10576 * lib/subpipe.c (errno): Remove decl.
10577 Include <stdlib.h> unconditionally.
10578 (EXIT_FAILURE): Remove macro.
10579 * src/complain.c (vfprintf, strerror): Remove.
10580 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10581 unconditionally.
10582 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10583 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10584 (strchr, strspn, memchr): Remove decls.
10585 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10586 unconditionally. Do not declare perror.
10587 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10588 unconditionally.
10589
10590 * src/complain.c (_): Remove useless defn, as system.h defines this.
10591
10592 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10593 with latest obstack.h.
10594 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10595 to procedure types, as obstack.h now does that for us.
10596 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10597
10598 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10599 so that this include file can stand alone.
10600 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10601 does this now. Include subpipe.h first after config.h, to
10602 test whether it can stand alone.
10603
10604 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10605 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10606 unused declaration.
10607
10608 * tests/synclines.at (%union synch line): Put a dummy member in
10609 the union, because empty unions aren't allowed in C. Caught
10610 by GCC 3.4.0.
10611
10612 2004-04-13 Jim Meyering <jim@meyering.net>
10613
10614 * src/conflicts.c (conflicts_print): Correct format string typo:
10615 use `%%' to produce literal `%'. (trivial change)
10616
10617 2004-03-30 Paul Eggert <eggert@twinsun.com>
10618
10619 * src/getargs.c (version): Update copyright year to 2004.
10620
10621 * data/c.m4 (b4_int_type): Use 'short int' rather than
10622 'short', and similarly for 'long', 'unsigned', etc.
10623 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10624 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10625 yy_yypstack, yydumpstack): Likewise.
10626 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10627 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10628 Likewise.
10629 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10630 yy_stack_print, yyparse): Likewise.
10631 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10632 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10633 * lib/bitset.c (bitset_print): Likewise.
10634 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10635 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10636 * lib/bitsetv.c (bitsetv_dump): Likewise.
10637 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10638 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10639 Likewise.
10640 * src/LR0.c (allocate_itemsets): Likewise.
10641 * src/gram.h (rule_number, rule): Likewise.
10642 * src/lalr.h (goto_number): Likewise.
10643 * src/nullable.c (nullable_compute): Likewise.
10644 * src/output.c (prepare_rules): Likewise.
10645 * src/relation.c (relation_print, relation_digraph): Likewise.
10646 * src/relation.h (relation_node): Likewise.
10647 * src/state.h (state_number, transitions, errs, reductions,
10648 struct state): Likewise.
10649 * src/symtab.h (symbol_number, struct symbol): Likewise.
10650 * src/tables.c (vector_number, tally, action_number,
10651 default_goto, goto_actions): Likewise.
10652 * tests/existing.at (GNU Cim Grammar): Likewise.
10653 * tests/regression.at (Web2c Actions): Likewise.
10654
10655 * src/output.c (muscle_insert_short_int_table): Renamed from
10656 muscle_insert_short_table. All uses changed.
10657
10658 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10659
10660 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10661 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10662 Add %expect-rr rule.
10663
10664 * src/scan-gram.l: Recognize %expect-rr.
10665
10666 * src/conflicts.h (expected_sr_conflicts): Rename from
10667 expected_conflicts.
10668 (expected_rr_conflicts): Declare.
10669
10670 * src/conflicts.c (expected_sr_conflicts): Rename from
10671 expected_conflicts.
10672 (expected_rr_conflicts): Define.
10673 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10674 for GLR parsers.
10675 Use expected_sr_conflicts in place of expected_conflicts.
10676 Warn if expected_rr_conflicts used in non-GLR parser.
10677
10678 * doc/bison.texinfo: Add documentation for %expect-rr.
10679
10680 2004-03-08 Paul Eggert <eggert@gnu.org>
10681
10682 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10683 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10684
10685 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10686 in lalr1.cc.
10687 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10688 * src/scan-gram.l (scan_integer): New function.
10689 ({int}): Use it.
10690 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10691 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10692 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10693 Say "long int", not "long", for uniformity with GNU style.
10694
10695 2004-02-25 Paul Eggert <eggert@twinsun.com>
10696
10697 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10698 compilers. This fixes a problem with Intel's C++ compiler being
10699 chatty, reported by Guido Trentalancia in
10700 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10701
10702 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10703
10704 Support %destructor and merge error locations in lalr1.cc.
10705
10706 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10707 (Parser::stos_): Define unconditionally.
10708 (Parser::destruct_): New method. Generate its body with
10709 b4_yydestruct_generate.
10710 (Parser::error_start_): New attribute.
10711 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10712 token which are discarded.
10713 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10714 error_start_ when erroneous token are discarded.
10715 (Parser::parse) <yyerrlab1>: Compute the location of the error
10716 token so that it covers all the discarded tokens.
10717 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10718 it can be called with `%skeleton "lalr1.cc"', and do that.
10719
10720 2004-02-02 Paul Eggert <eggert@twinsun.com>
10721
10722 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10723 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10724 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10725 There's no need to mention top_builddir since Automake does that
10726 for us.
10727 (INCLUDES): Remove, as Automake says it's obsolescent.
10728 Contents migrated into AM_CPPFLAGS as described above.
10729 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10730
10731 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10732
10733 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10734 (yyreportSyntaxError): Handle case where lookahead token is
10735 YYEMPTY.
10736
10737 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10738
10739 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10740 resulting parsers are compilable with C++.
10741
10742 2003-12-23 Paul Eggert <eggert@twinsun.com>
10743
10744 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10745 * src/output.c (output_skeleton): Rename local var.
10746 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10747 Bison tokens, as this runs afoul of the 2003-10-07 change that
10748 disallowed NUL bytes in character constants or string literals.
10749
10750 * tests/local.at: Require Autoconf 2.59's Autotest.
10751 * tests/testsuite.at: Don't include local.at, since we now assume
10752 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10753 including it.
10754 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10755 multiple inclusion warnings.
10756
10757 2003-12-02 Akim Demaille <akim@epita.fr>
10758
10759 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10760 conditions.
10761 From Bruno Haible.
10762
10763 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10764
10765 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10766
10767 2003-10-07 Paul Eggert <eggert@twinsun.com>
10768
10769 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10770 if testsuite doesn't exist.
10771
10772 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10773 literals, unfortunately.
10774 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10775 Complain about NUL bytes in character constants or string literals.
10776
10777 2003-10-05 Paul Eggert <eggert@twinsun.com>
10778
10779 * NEWS: Don't document %no-default-prec, as it's still
10780 too experimental.
10781 * doc/bison.texinfo: Document %no-default-prec only if
10782 the defaultprec flag is set. Normally it's not.
10783
10784 2003-10-04 Paul Eggert <eggert@twinsun.com>
10785
10786 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10787 non-modifiable lvalue, instead of a modifiable one.
10788 * doc/bison.texinfo (Actions): Document that $$ can
10789 be assigned to. Do not claim that $$ and $N are
10790 array element references: user code should not rely on this.
10791
10792 2003-10-01 Paul Eggert <eggert@twinsun.com>
10793
10794 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10795 (grammar_declaration): Use it.
10796 * src/scan-gram.l: New token %no-default-prec.
10797 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10798 * NEWS, doc/bison.texinfo: Document the above.
10799
10800 2003-10-01 Akim Demaille <akim@epita.fr>
10801
10802 VCG no longer supports long_straight_phase.
10803
10804 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10805 * src/print_graph.c (print_graph): Adjust.
10806
10807 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10808 and Paul Eggert <eggert@twinsun.com>
10809
10810 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10811 Table of Symbols): Document %default-prec.
10812 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10813 (grammar_declaration): Set default_prec on %default-prec.
10814 * src/scan-gram.l (%default-prec): New token.
10815 * src/reader.h (default_prec): New flag.
10816 * src/reader.c: Likewise.
10817 (packgram): Handle it.
10818 * tests/conflicts.at (%default-prec without %prec,
10819 %default-prec with %prec, %default-prec 1): New tests.
10820
10821 2003-09-30 Paul Eggert <eggert@twinsun.com>
10822
10823 * tests/testsuite.at: Include local.at, not input.at, fixing
10824 a typo in the 2003-08-25 patch.
10825
10826 2003-08-27 Akim Demaille <akim@epita.fr>
10827
10828 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10829 GCC warnings.
10830
10831 2003-08-26 Akim Demaille <akim@epita.fr>
10832
10833 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10834 "<\#" to avoid magic from Gnus when posting parts of this script.
10835
10836 2003-08-26 Akim Demaille <akim@epita.fr>
10837
10838 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10839 (Parser::parse): here.
10840 Adjust: nerrs and errstatus is now replaced by...
10841 (Parser::nerrs_, Parser::errstatus_): New.
10842
10843 2003-08-25 Akim Demaille <akim@epita.fr>
10844
10845 * config/announce-gen, Makefile.cfg: New.
10846 * Makefile.am: Adjust.
10847 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10848 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10849
10850 2003-08-25 Akim Demaille <akim@epita.fr>
10851
10852 When reducing initial empty rules, Bison parser read an initial
10853 location that is not defined. This results in garbage, and that
10854 affects Bison's own parser. Therefore we need (i) to extend Bison
10855 to support a means to initialize this location, and (ii) to use
10856 this CVS Bison to fix CVS Bison's parser.
10857
10858 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10859 with...
10860 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10861 * src/parse-gram.y: Adjust.
10862 (%initial-action): New.
10863 (%error-verbose): Since we require CVS Bison, there is no reason
10864 not to use it.
10865 * src/scan-gram.l: Adjust.
10866 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10867 * data/yacc.c (yyparse): Use b4_initial_action.
10868
10869 2003-08-25 Akim Demaille <akim@epita.fr>
10870
10871 * doc/bison.texinfo: Don't promote stdout for error messages.
10872
10873 2003-08-25 Akim Demaille <akim@epita.fr>
10874
10875 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10876 From Alexandre Duret-Lutz.
10877
10878 2003-08-25 Akim Demaille <akim@epita.fr>
10879
10880 Version 1.875c.
10881
10882 2003-08-25 Akim Demaille <akim@epita.fr>
10883
10884 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10885 Use them.
10886
10887 2003-08-25 Akim Demaille <akim@epita.fr>
10888
10889 * data/lalr1.cc (Parser::reduce_print_): New.
10890 Use it.
10891
10892 2003-08-25 Akim Demaille <akim@epita.fr>
10893
10894 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10895 error recovery loops. This patch is based on
10896 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10897 Also, augment the similarity between lalr1.cc and yacc.c.
10898 Note: the locations of error recovery rules are not correct yet.
10899
10900 * data/lalr1.cc: Comment changes to augment the similarity between
10901 lalr1.cc and yacc.c.
10902 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10903 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10904 yyerrlab), when hitting EOF, pop the whole stack here instead of
10905 merely falling thru the default error handling mechanism.
10906 (yyerrorlab): New label, with the old contents of YYERROR,
10907 plus the following change: pop the stack of rhs corresponding
10908 to the production that invoked YYERROR. That is how Yacc
10909 behaves (required by POSIX).
10910 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10911 fail.
10912
10913 2003-08-25 Akim Demaille <akim@epita.fr>
10914
10915 Tune local.at so that people can "autom4te -l autotest calc.at -o
10916 calc" for instance, to extract a sub test suite.
10917
10918 * tests/testsuite.at: Move the initialization, Autotest version
10919 requirement, and AT_TESTED invocation into...
10920 * tests/local.at: here.
10921 * tests/testsuite.at: Include it for compatibility with Autoconf
10922 2.57.
10923 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10924 be ignore.
10925
10926 2003-08-04 Paul Eggert <eggert@twinsun.com>
10927
10928 Rework code slightly to avoid gcc -Wtraditional warnings.
10929 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10930 The returned value is now stored in *YY0. All callers changed.
10931 * src/output.c (merge_output): Adjust to the above change.
10932
10933 2003-07-26 Paul Eggert <eggert@twinsun.com>
10934
10935 * data/glr.c (YYASSERT): New macro.
10936 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10937 yyresolveStates, yyprocessOneStack):
10938 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10939 Derived from a suggestion by Frank Heckenbach.
10940
10941 2003-07-25 Paul Eggert <eggert@twinsun.com>
10942
10943 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10944 for portability to K&R C (after ansi2knr, presumably). See
10945 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10946 by Frank Heckenbach, though I have omitted the structure-initialization
10947 part of his glr-knr.diff patch since I recall that the Portable
10948 C Compiler didn't require that change.
10949
10950 Let the user specify how to allocate and free memory.
10951 Derived from a suggestion by Frank Heckenbach in
10952 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10953 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10954 All uses of free, malloc, realloc changed to use these macros,
10955 and unnecessary casts removed.
10956 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10957
10958 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10959
10960 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10961 use s.empty() rather than s == "" to test for empty string; see
10962 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10963 (trivial change)
10964
10965 2003-06-25 Akim Demaille <akim@epita.fr>
10966
10967 * config/depcomp, config/install-sh: Update from masters.
10968
10969 2003-06-20 Paul Eggert <eggert@twinsun.com>
10970
10971 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10972 and return properly parenthesized result.
10973 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10974 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10975 Remove unnecessary parentheses from uses.
10976 * doc/bison.texinfo (Location Default Action): Describe the
10977 conventions for parentheses.
10978
10979 2003-06-19 Paul Eggert <eggert@twinsun.com>
10980
10981 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10982 yyreportTree): Do not assume that size_t is the same width as int,
10983 when printing sizes. Print sizes using an unsigned format.
10984 Problem reported by Frank Heckenbach in
10985 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10986
10987 Port to Forte Developer 7 C compiler.
10988 * data/glr.c (struct YYLTYPE): If locations are not being used,
10989 declare a single dummy member, as empty structs do not conform
10990 to the C standard.
10991 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10992 the Forte Developer 7 C compiler complains that end-of-loop
10993 code is not reached.
10994
10995 2003-06-17 Paul Eggert <eggert@twinsun.com>
10996
10997 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10998 avoid warnings from picky compilers about redefinition of PARAMS.
10999
11000 2003-06-17 Paul Eggert <eggert@twinsun.com>
11001
11002 Version 1.875b.
11003
11004 * NEWS: Document 1.875b.
11005
11006 * lib/bbitset.h: Do not include config.h; that's the includer's job.
11007 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
11008 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
11009 Don't use 'index' in comments, as it's a builtin fn on some hosts.
11010 * lib/bitset_stats.c: Include gettext.h unconditionally, as
11011 per recent gettext manual's suggestion.
11012 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
11013 Use prototypes, not old-style definitions.
11014 * lib/lbitset.c (lbitset_unused_clear): Likewise.
11015 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
11016 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
11017 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
11018 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
11019 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
11020 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
11021 vbitset_or_and_cmp, vbitset_copy): Likewise.
11022
11023 * lib/libiberty.h: Do not include config.h; that's the includer's job.
11024 Do not include <stdlib.h>.
11025 (PARAMS): Define unconditionally for C89.
11026 (ATTRIBUTE_NORETURN): Remove.
11027 (ATTRIBUTE_UNUSED): Define unconditionally.
11028
11029 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
11030 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
11031 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
11032 * lib/vbitset.c, lib/vbitset.h: New files.
11033 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
11034 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
11035 from libbitset.
11036
11037 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
11038 `How Can I Reset @code{yyparse}', since texinfo does not allow
11039 arbitrary @ in node names.
11040
11041 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
11042 shouldn't be needed according to the gettext 0.12.1 documentation
11043 but which seem to be needed anyway: codeset.m4 glibc21.m4
11044 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
11045 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
11046 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
11047
11048 * lib/.cvsignore: Add stdbool.h.
11049 * m4/.cvsignore: Add nls.m4, po.m4.
11050
11051 Upgrade to CVS gnulib.
11052 * stdbool_.h: File renamed from stdbool.h.in.
11053 * configure.ac (AM_STDBOOL_H): Invoke this instead of
11054 AC_HEADER_STDBOOL.
11055 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
11056 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
11057 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
11058 (MOSTLYCLEANFILES): New var.
11059 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
11060 (stdbool.h): New rule.
11061 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
11062 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
11063 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
11064 m4/quote.m4: Upgrade to today's gnulib.
11065
11066 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
11067 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
11068 the tests right now.
11069 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
11070 yyerror are declared before use; C99 requires this.
11071
11072 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11073
11074 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
11075 first.
11076 (yyrecoverSyntaxError): Correct the logic for setting and testing
11077 yyerrState.
11078 Correct comment on handling EOF.
11079 Allow states with only a default reduction, rather than failing
11080 (I can't quite reconstruct why these were not allowed before).
11081
11082 Fixes to avoid problem that $-N rules in GLR parsers can cause
11083 buffer overruns, corrupting state.
11084
11085 * src/output.c (prepare_rules): Output max_left_semantic_context
11086 definition.
11087 * src/reader.h (max_left_semantic_context): New variable declaration.
11088 * src/scan-gram.l (max_left_semantic_context): Define.
11089 (handle_action_dollar): Update max_left_semantic_context.
11090 * data/glr.c (YYMAXLEFT): New definition.
11091 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
11092 (yyresolveAction): Ditto.
11093
11094 Fixes to problems with location handling in GLR parsers reported by
11095 Frank Heckenbach (2003/06/05).
11096
11097 * data/glr.c (YYLTYPE): Make trivial if locations not used.
11098 (YYRHSLOC): Add parentheses, and define only if locations used.
11099 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
11100 locations not used.
11101 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
11102 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
11103
11104 * tests/cxx-type.at: Exercise location information; update tests
11105 to differentiate output with and without locations.
11106 Remove forward declarations of yylex and yyerror---caused errors
11107 because default YYLTYPE not yet defined.
11108 Change semantic actions to compute strings, rather than printing
11109 them directly (to test proper passing of semantics values). Change
11110 output to prefix notation and update test data and expected results.
11111 (yylex): Track locations.
11112 (stmtMerge): Return value rather than printing, and include arguments
11113 in value.
11114
11115 2003-06-03 Paul Eggert <eggert@twinsun.com>
11116
11117 Avoid warnings generated by GCC 2.95.4 when Bison is
11118 configured with --enable-gcc-warnings.
11119 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
11120 yy::]b4_parser_class_name[::translate_,
11121 yy::Stack::operator[] (unsigned),
11122 yy::Stack::operator[] (unsigned) const,
11123 yy::Slice::operator[] (unsigned),
11124 yy::Slice::operator[] (unsigned) const):
11125 Rename local vars to avoid warnings.
11126 * tests/glr-regression.at (Improper handling of embedded actions
11127 and $-N in GLR parsers): Remove unused local variable from yylex.
11128 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
11129 (void) as arg when not pure, since we now assume C89 when building
11130 Bison. Pacify GCC by using parameter.
11131
11132 2003-06-02 Paul Eggert <eggert@twinsun.com>
11133
11134 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
11135 yy::Location::lines, yy::Location::columns): Rename arguments
11136 to avoid shadowing; this removes a warning generated by GCC 3.3.
11137
11138 2003-06-01 Paul Eggert <eggert@twinsun.com>
11139
11140 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
11141 to g++, as GCC 3.3 complains if you do it.
11142 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
11143 everything that WARNING_CFLAGS has, except omit warnings
11144 not suitable for C++.
11145 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
11146 * tests/atlocal.in (CXXFLAGS): New var.
11147 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
11148
11149 Fix a GLR parser bug I reported in February; see
11150 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
11151 The problem was that GLR parsers did not conform to the C standard,
11152 because actions like { $1 = $2 + $3; } expanded to expressions
11153 that invoked YYFILL in separate subexpressions, and YYFILL assigned
11154 to a local variable. The C standard says that expressions
11155 like (var = f ()) + (var = f ()) have undefined behavior.
11156 Another problem was that GCC sometimes issues warnings that
11157 yyfill and its parameters are unused.
11158
11159 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
11160 as possibly unused.
11161 (yyfill): New function.
11162 (YYFILL): Use it.
11163 (yyuserAction): Change type of yynormal to bool, so that it matches
11164 the new yyfill signature. Mark it as possibly unused.
11165
11166
11167 Follow up on a bug I reported in February, where a Bison-generated
11168 parser can loop. Provide a test case and a fix for yacc.c. I
11169 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11170 The original bug report is in:
11171 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11172
11173 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11174 macro's size was becoming unwieldy.
11175 (yyerrlab): Do not discard an empty lookahead symbol, as this
11176 might destroy garbage.
11177 (yyerrorlab): New label, with the old contents of YYERROR,
11178 plus the following change: pop the stack of rhs corresponding
11179 to the production that invoked YYERROR. That is how Yacc
11180 behaves, and POSIX requires this behavior.
11181 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11182 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11183 Define 'alarm' to do nothing if unistd.h is not available.
11184 Add a new rule "exp: '-' error;" to test the above change to
11185 data/yacc.c. Use 'alarm' to abort any test taking longer than
11186 10 seconds, as it's probably looping.
11187 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11188 Also, the new yacc.c generates two fewer diagnostics for an
11189 existing test.
11190
11191 2003-05-24 Paul Eggert <eggert@twinsun.com>
11192
11193 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11194 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11195 This fixes a problem reported by John Bowman when the Compaq/HP
11196 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11197 -ansi -Wall -gall).
11198 * data/yacc.c (union yyalloc): Likewise.
11199 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11200
11201 Switch from 'int' to 'bool' where that makes sense.
11202
11203 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11204 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11205 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11206 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11207 Return or accept bool, not int. All callers changed.
11208 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11209 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11210 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11211 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11212 bitset_or_and_cmp_): Likewise.
11213 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11214 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11215 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11216 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11217 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11218 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11219 bitset_stats_or_and_cmp): Likewise.
11220 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11221 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11222 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11223 ebitset_xor_cmp): Likewise.
11224 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11225 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11226 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11227 lbitset_xor_cmp): Likewise.
11228 * lib/bbitset.h: Include <stdbool.h>.
11229 (struct bitset_vtable): The following members now return bool, not
11230 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11231 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11232 or_and_cmp).
11233 * src/conflicts.c (count_rr_conflicts): Likewise.
11234 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11235 All uses changed.
11236 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11237 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11238 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11239 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11240 graph_flag): Likewise.
11241 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11242 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11243 graph_flag): Likewise.
11244 * src/output.c (error_verbose): Likewise.
11245 * src/output.h (error_verbose): Likewise.
11246 * src/reader.c (start_flag, typed): Likewise.
11247 * src/reader.h (typed): Likewise.
11248 * src/getargs.c (LOCATIONS_OPTION): New constant.
11249 (long_options, getargs): Use it.
11250 * src/lalr.c (build_relations): Use bool, not int.
11251 * src/nullable.c (nullable_compute): Likewise.
11252 * src/print.c (print_reductions): Likewise.
11253 * src/tables.c (action_row, pack_vector): Likewise.
11254 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11255 * src/output.c (prepare): Use it.
11256 * src/output.c (token_definitions_output,
11257 symbol_destructors_output, symbol_destructors_output): Use string,
11258 not boolean integer, to keep track of whether to output separator.
11259 * src/print_graph.c (print_core): Likewise.
11260 * src/state.c (state_rule_lookaheads_print): Likewise.
11261
11262 * config/install-sh: Sync from automake 1.7.5.
11263
11264 2003-05-14 Paul Eggert <eggert@twinsun.com>
11265
11266 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11267 semicolon after a grammar declaration, in the interest of possible
11268 future changes to the Bison input language.
11269 Do not allow a stray semicolon at the start of the grammar.
11270 (rhses.1): Allow one or more semicolons after any rule, including
11271 just before "|" as required by POSIX.
11272 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11273 grammar.
11274
11275 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11276
11277 %parse-param support for lalr1.cc.
11278
11279 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11280 b4_cc_constructor_calls, b4_cc_constructor_call,
11281 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11282 definitions.
11283 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11284 parse-param arguments.
11285 (yy::b4_parser_class_name): Declare instance variables to
11286 hold parse-param arguments.
11287 * tests/calc.at: s/value/semantic_value/ because value clashes
11288 with a member of yy::b4_parser_class_name. Adjust C++ code
11289 to handle %parse-param. Enable %parse-param test in C++.
11290
11291 2003-05-12 Paul Eggert <eggert@twinsun.com>
11292
11293 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11294 English a bit. Fix fclose typo. Change "const char" to "char
11295 const", and use ANSI C rather than K&R for "main". Suggest
11296 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11297 and suggest yy_switch_to_buffer.
11298
11299 2003-05-05 Paul Eggert <eggert@twinsun.com>
11300
11301 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11302 C89. This avoids a diagnostic on compilers that define __STDC__
11303 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11304 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11305
11306 2003-05-03 Paul Eggert <eggert@twinsun.com>
11307
11308 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11309 Do not overrun array bounds.
11310 This should fix a bug reported today by Olatunji Oluwabukunmi in
11311 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11312
11313 2003-04-29 Akim Demaille <akim@epita.fr>
11314
11315 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11316 * src/getargs.c, src/getargs.h: here, as bool, not int.
11317 (nondeterministic_parser): New.
11318 * src/parse-gram.y, src/scan-gram.l: Support
11319 %nondeterministic-parser.
11320 * src/output.c (prepare): Use nondeterministic_parser instead
11321 of glr_parser where appropriate.
11322 * src/tables.c (conflict_row, action_row, save_row)
11323 (token_actions, token_actions, pack_vector): Ditto.
11324
11325 2003-04-29 Akim Demaille <akim@epita.fr>
11326
11327 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11328
11329 2003-04-29 Akim Demaille <akim@epita.fr>
11330
11331 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11332 with %pure-parser and %locations to exercise the patch from Yakov
11333 Markovitch below.
11334
11335 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11336
11337 * data/yacc.c: (b4_lex_param): Corrected for the case where
11338 %lex-param is provided and %pure-parser isn't.
11339
11340 2003-04-27 Paul Eggert <eggert@twinsun.com>
11341
11342 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11343 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11344 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11345 if it is not defined.
11346 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11347
11348 2003-04-26 Paul Eggert <eggert@twinsun.com>
11349
11350 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11351 Declare to be of type suitable for the ninf value itself, not of
11352 type suitable for the corresponding table, since the latter might
11353 be unsigned but the ninf value might be negative. This fixes a
11354 bug reported by Alexandre Duret-Lutz in
11355 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11356
11357 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11358 invokes it. We shouldn't invoke it twice because it will attempt
11359 to put error.o in the archive twice. This fixes a glitch reported
11360 by Martin Mokrejs in
11361 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11362
11363 2003-04-21 Paul Eggert <eggert@twinsun.com>
11364
11365 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11366 to gnulib.
11367
11368 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11369
11370 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11371 Fix obvious typo that results in uncompilable GLR parsers
11372 when both %pure-parser and %locations are used. (trivial change)
11373
11374 2003-04-17 Paul Eggert <eggert@twinsun.com>
11375
11376 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11377 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11378 Do not insert the expected token via unput, as this runs afoul
11379 of a POSIX-compatibility bug in flex 2.5.31.
11380 All uses changed to BEGIN the parent state,
11381 since we no longer insert the expected token via unput.
11382 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11383 that is no longer emitted after the above change.
11384
11385 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11386 the first one. This change is from Paul Hilfinger, and it fixes
11387 regression reported by Werner Lemberg in
11388 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11389
11390 (resolve_sr_conflict): Don't invoke state_errs_set
11391 unless one or more tokens have been explicitly made errors.
11392 Otherwise, the above change causes Bison to abort.
11393
11394 * tests/existing.at (GNU pic Grammar): New test case, taken from
11395 Lemberg's email.
11396
11397 2003-03-31 Akim Demaille <akim@epita.fr>
11398
11399 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11400
11401 2003-03-31 Akim Demaille <akim@epita.fr>
11402
11403 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11404 output.
11405
11406 2003-03-31 Akim Demaille <akim@epita.fr>
11407
11408 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11409 From Paul Hilfinger.
11410
11411 2003-03-29 Akim Demaille <akim@epita.fr>
11412
11413 * m4/error.m4: Do not put under dynamic conditions some code which
11414 expansion is under static control.
11415
11416 2003-03-29 Akim Demaille <akim@epita.fr>
11417
11418 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11419
11420 2003-03-29 Akim Demaille <akim@epita.fr>
11421
11422 * doc/bison.texinfo (Strings are Destroyed): New.
11423
11424 2003-03-13 Paul Eggert <eggert@twinsun.com>
11425
11426 * .cvsignore: Add configure.lineno.
11427 * src/.cvsignore: Add yacc.
11428 * tests/.cvsignore: Add testsuite.log.
11429 * doc/fdl.texi: Sync with latest FSF version.
11430
11431 2003-03-12 Paul Eggert <eggert@twinsun.com>
11432
11433 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11434 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11435 cursor, instead of leaving it undefined. This fixes a bug
11436 reported by Tim Van Holder in
11437 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11438 * tests/input.at (Torturing the Scanner): Test the scanner on
11439 an empty input file, which was Tim Van Holder's test case.
11440
11441 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11442 <sys/resource.h> can be included, include sys/time.h and
11443 sys/times.h first, if available. This works around the SunOS
11444 4.1.4 porting bug reported by Bruce Becker in
11445 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11446
11447 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11448 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11449 AC_HEADER_SYS_WAIT.
11450
11451 Merge changes from gnulib. This was prompted because the CVS
11452 snapshot didn't build on Solaris 7 due to strnlen problems.
11453
11454 These changes need to be merged back into gnulib:
11455 * lib/hash.c: Include <stdbool.h> unconditionally.
11456 * m4/onceonly.m4 (m4_quote): New macro.
11457 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11458 Quote AC_FOREACH variable-expansions properly.
11459 The 2003-01-03 obstack.h change also needs merging.
11460 {end of changes requiring merging}
11461
11462 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11463 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11464 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11465 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11466 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11467 New files, imported from gnulib.
11468 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11469 above.
11470
11471 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11472 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11473 gnulib sources.
11474
11475 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11476 Add.
11477 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11478 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11479 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11480 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11481 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11482 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11483 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11484 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11485 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11486 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11487 (jm_PREREQ_ARGMATCH): Remove.
11488 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11489 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11490
11491 * src/system.h: Include <stdbool.h> unconditionally.
11492
11493 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11494 assuming at least C89 in the bitset code for some time now.
11495
11496 2003-03-03 Akim Demaille <akim@epita.fr>
11497
11498 * ro.po: New.
11499
11500 2003-03-02 Akim Demaille <akim@epita.fr>
11501
11502 * doc/bison.texinfo (Table of Symbols): Reactivate the
11503 documentation for %lex-param, and %parse-param.
11504
11505 2003-03-02 Akim Demaille <akim@epita.fr>
11506
11507 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11508 generate verbose error messages.
11509 Use the number of tokens as an upper bound in yytname, as it
11510 cannot be a non terminal.
11511
11512 2003-03-02 Akim Demaille <akim@epita.fr>
11513
11514 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11515 message.
11516
11517 2003-03-02 Akim Demaille <akim@epita.fr>
11518
11519 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11520 Use them to exercise yycheck overrun.
11521 Based on Andrew Suffield's grammar.
11522
11523 2003-03-02 Akim Demaille <akim@epita.fr>
11524
11525 Create tests/local.at for Bison generic testing macros.
11526
11527 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11528 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11529 This new file.
11530 * tests/calc.at (AT_CHECK_CALC): Adjust.
11531 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11532 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11533 * tests/local.at: here.
11534 (AT_COMPILE_CXX): Tags the tests using it as c++.
11535 Ignore the test if CXX is not functional.
11536
11537 2003-03-01 Paul Eggert <eggert@twinsun.com>
11538
11539 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11540 not loc->end, since loc->end might contain garbage and this leads
11541 to undefined behavior on some platforms.
11542 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11543 depend on *loc, so that the reader doesn't give the the false
11544 impression that *loc is initialized.
11545 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11546 does not survive the return.
11547
11548 2003-03-01 Akim Demaille <akim@epita.fr>
11549
11550 * src/scan-gram.l (code_start): Always initialize it when entering
11551 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11552 yylex invocation. An alternative would be making it static, but
11553 then it starts with the second %%'s beginning, instead of its end.
11554
11555 2003-02-28 Paul Eggert <eggert@twinsun.com>
11556
11557 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11558 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11559 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11560
11561 2003-02-26 Paul Eggert <eggert@twinsun.com>
11562
11563 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11564 Remove Sequent/Pyramid discussion (nobody uses them any more).
11565 Merge VMS and MS-DOS discussion; these ports may well be dead
11566 but let's keep mentioning them for now. Put <> around email
11567 addresses. Add copyright notice.
11568
11569 2003-02-24 Paul Eggert <eggert@twinsun.com>
11570
11571 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11572 to avoid collision with flex use of yylineno.
11573 Problem reported by Bruce Lilly in
11574 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11575 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11576 * data/yacc.c (yy_reduce_print): Likewise.
11577
11578 * config/depcomp: Sync with Automake 1.7.3.
11579
11580 2003-02-21 Akim Demaille <akim@epita.fr>
11581
11582 * data/lalr1.cc: Use temporary variables instead of casts to
11583 change integer types.
11584 Suggested by Paul Eggert.
11585
11586 2003-02-21 Akim Demaille <akim@epita.fr>
11587
11588 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11589 to avoid confusions with lalr1.cc's notion of Position.
11590 Suggested by Paul Eggert.
11591
11592 2003-02-20 Akim Demaille <akim@epita.fr>
11593
11594 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11595 before initial_columns.
11596 (location.hh): Use consistent variable names when defining the
11597 operator<<.
11598 Use "last" so that we subtract from Positions, not from unsigned.
11599
11600 2003-02-20 Akim Demaille <akim@epita.fr>
11601
11602 * data/lalr1.cc (position.hh): New subfile, including the extended
11603 and Doxygen'ed documentation of class Position.
11604 (location.hh): Use it.
11605 Document a` la Doxygen.
11606 With the help of Benoit Perrot.
11607
11608 2003-02-20 Akim Demaille <akim@epita.fr>
11609
11610 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11611 AT_YACC_IF.
11612 Redefine AT_YYERROR_SEES_LOC_IF using it.
11613 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11614 not defined.
11615 Don't use the location in yy::Parser::error_ and
11616 yy::Parser::print_ when not %locations.
11617 Activate more lalr1.cc tests.
11618
11619 2003-02-19 Akim Demaille <akim@epita.fr>
11620
11621 * data/lalr1.cc: When displaying a line number, be sure to make it
11622 an int.
11623
11624 2003-02-19 Akim Demaille <akim@epita.fr>
11625
11626 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11627 Remove, useless.
11628 (YYABORT, YYACCEPT, YYERROR): New.
11629 * tests/calc.at: Renable the lalr1.cc test.
11630
11631 2003-02-19 Akim Demaille <akim@epita.fr>
11632
11633 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11634 error recovery, mixing with/without pops and discarding of the
11635 lookahead.
11636 Exercise YYERROR.
11637 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11638
11639 2003-02-17 Paul Eggert <eggert@twinsun.com>
11640
11641 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11642 * tests/testsuite.at (AT_COMPILE): Use them.
11643 This fixes the testsuite problem reported by Robert Lentz in
11644 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11645
11646 2003-02-12 Paul Eggert <eggert@twinsun.com>
11647
11648 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11649 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11650 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11651 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11652 Check for malloc failure, for consistency with yacc.c.
11653 (yytname_size): Remove, for consistency with yacc.c.
11654
11655 The bug still remains in data/lalr1.cc, as I didn't have time
11656 to fix it there.
11657
11658 2003-02-06 Akim Demaille <akim@epita.fr>
11659
11660 * configure.ac (GXX): Rename as...
11661 (CXX): this, to keep the original Autoconf semantics.
11662 Require 2.57.
11663 * data/lalr1.cc: Fix b4_copyright invocations.
11664 If YYDEBUG is not defined, don't depend upon name_ being defined.
11665 (location.hh): Include string and iostream.
11666 (Position::filename): New member.
11667 (Position::Position ()): New.
11668 (operator<< (Position)): New.
11669 (operator- (Position, int)): New.
11670 (Location::first, Location::last): Rename as...
11671 (Location::begin, Location::end): these, to mock the conventional
11672 iterator names.
11673 (operator<< (Location)): New.
11674 * tests/atlocal.in (CXX): New.
11675 * tests/testsuite.at (AT_COMPILE_CXX): New.
11676 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11677 locations in a more synthetic way.
11678 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11679 lalr1.cc is used.
11680 Adjust the C locations to match those from Emacs: first column is
11681 column 0.
11682 Change all the expected results.
11683 Conform to the GCS: simplify the locations when applicable.
11684 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11685 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11686 these CPP macros with the m4 macros new defined by...
11687 (AT_CHECK_PUSHDEFS): this, i.e.:
11688 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11689 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11690 New macros.
11691 (AT_CHECK_POPDEFS): Undefine them.
11692 (AT_CHECK_CALC_LALR1_CC): New.
11693 Use it for the first lalr1.cc test.
11694
11695 2003-02-04 Akim Demaille <akim@epita.fr>
11696
11697 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11698 Location as is defined.
11699
11700 2003-02-04 Akim Demaille <akim@epita.fr>
11701
11702 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11703 name_ being defined.
11704
11705 2003-02-03 Paul Eggert <eggert@twinsun.com>
11706
11707 * src/gram.h (start_symbol): Remove unused decl.
11708
11709 Use more-consistent naming conventions for local vars.
11710
11711 * src/derives.c (derives_compute): Change type of local var from
11712 int to rule_number.
11713 * src/gram.c (grammar_rules_partial_print): Likewise.
11714 * src/print.c (print_core): Likewise.
11715 * src/reduce.c (reduce_grammar_tables): Likewise.
11716
11717 * src/gram.c (grammar_dump): Change name of item_number *
11718 local var from r to rp.
11719 * src/nullable.c (nullable_compute): Likewise.
11720
11721 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11722
11723 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11724 for symbol or symbol_number var.
11725 * src/reader.c (grammar_start_symbol_set): Likewise.
11726 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11727 Likewise.
11728 * src/state.c (transitions_to): Likewise.
11729 * src/state.h: Likewise.
11730 * src/tables.c (symbol_number_to_vector_number): Likewise.
11731
11732 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11733 char * var.
11734
11735 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11736 var.
11737
11738 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11739 var.
11740
11741 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11742 Use str, not s, for char * var. Use ch, not c, for character var.
11743 Use size for size var.
11744
11745 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11746 char * var.
11747 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11748 uniqstr var.
11749 * src/uniqstr.h: Likewise.
11750
11751 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11752 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11753 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11754 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11755 param to have same name as that of enum, so that we don't use
11756 "s" to stand for a non-state.
11757
11758 2003-02-02 Akim Demaille <akim@epita.fr>
11759
11760 * src/scan-skel.l: Scan more than one inert character per yylex
11761 invocation.
11762
11763 2003-02-01 Paul Eggert <eggert@twinsun.com>
11764
11765 Version 1.875a.
11766
11767 * po/LINGUAS: Add ms.
11768
11769 2003-01-30 Akim Demaille <akim@epita.fr>
11770
11771 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11772
11773 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11774
11775 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11776 of $1.
11777
11778 Changes in response to error report by S. Eken: GLR mode does not
11779 handle negative $ indices or $ indices in embedded rules correctly.
11780 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11781
11782 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11783 (b4_rhs_location): Ditto.
11784 (yyfill): New function to copy from stack tree into array
11785 incrementally.
11786 (yyuserAction): Modify to allow incremental move of semantic values
11787 to rhs array when in GLR mode.
11788 Define YYFILL to use in user-defined actions to fill semantic array
11789 as needed.
11790 Remove dummy use of yystack, as there is now a guaranteed use.
11791 (yydoAction): Modify to allow incremental move of semantic values
11792 to rhs array when in GLR mode.
11793 (yyresolveAction): Ditto.
11794 (yyglrShiftDefer): Update comment.
11795 (yyresolveStates): Use X == NULL for pointers, not !X.
11796 (yyglrReduce): Ditto.
11797 (yydoAction): Ditto
11798
11799 * tests/glr-regr1.at: Rename to ...
11800 * tests/glr-regression.at: Add new regression test for the problems
11801 described above (adapted from S. Eken).
11802 Update copyright notice.
11803 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11804 * tests/Makefile.am: Ditto.
11805
11806 2003-01-28 Paul Eggert <eggert@twinsun.com>
11807
11808 * data/lalr1.cc: Do not use @output_header_name@ unless
11809 b4_defines_flag is set. This fixes two bugs reported by
11810 Tim Van Holder in
11811 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11812 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11813
11814 2003-01-21 Paul Eggert <eggert@twinsun.com>
11815
11816 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11817 we don't need to worry about yyerrlab1 being reported as an
11818 "unused label" by non-GCC C compilers. The downside is that if
11819 locations are used then a couple of statements are duplicated each
11820 time YYERROR is invoked, but the upside is that the warnings
11821 should vanish.
11822 (yyerrlab1): Move code to YERROR.
11823 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11824 This reverts some of the 2002-12-27 change.
11825
11826 2003-01-17 Paul Eggert <eggert@twinsun.com>
11827
11828 * src/output.c (symbol_printers_output): Fix typo that led
11829 to core dump. Problem reported by Antonio Rus in
11830 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11831
11832 2003-01-13 Akim Demaille <akim@epita.fr>,
11833 Quoc Peyrot <chojin@lrde.epita.fr>,
11834 Robert Anisko <anisko_r@lrde.epita.fr>
11835
11836 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11837 when the stacks contain one element, as the loop would otherwise
11838 free the last state, and then use the top state (the one we just
11839 popped). This means that the initial elements will not be freed
11840 explicitly, as is the case in yacc.c; it is not a problem, as
11841 these elements have fake values.
11842
11843 2003-01-11 Paul Eggert <eggert@twinsun.com>
11844
11845 * NEWS: %expect-violations are now just warnings, reverting
11846 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11847 bootstrapping problem reported by Matthias Klose; see
11848 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11849 * src/conflicts.c (conflicts_print): Likewise.
11850 * tests/conflicts.at (%expect not enough, %expect too much,
11851 %expect with reduce conflicts): Likewise.
11852 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11853 that the warning is enabled if the number of conflicts changes
11854 (not necessarily increases).
11855
11856 * src/getargs.c (version): Update copyright year.
11857
11858 2003-01-09 Akim Demaille <akim@epita.fr>
11859
11860 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11861
11862 2003-01-08 Paul Eggert <eggert@twinsun.com>
11863
11864 * Makefile.maint (WGETFLAGS):
11865 New macro, containing "-C off" to disable proxy caches.
11866 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11867 (rel-check): Use $(WGET) instead of wget.
11868
11869 2003-01-06 Paul Eggert <eggert@twinsun.com>
11870
11871 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11872 the GLR paper of Scott, Johnstone and Hussain.
11873
11874 2003-01-04 Paul Eggert <eggert@twinsun.com>
11875
11876 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11877 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11878 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11879 (EXTRA_LIBRARIES): New var, for liby.a.
11880 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11881 (EXTRA_SCRIPTS): New var, for yacc.
11882
11883 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11884 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11885 Problem reported by Nelson H. F. Beebe.
11886
11887 2003-01-03 Paul Eggert <eggert@twinsun.com>
11888
11889 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11890 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11891 when compiling Bison 1.875's `bitset bset = obstack_alloc
11892 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11893
11894 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11895 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11896 grow to a huge size with typical invocation.
11897
11898 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11899 Use the pattern recommended by Autoconf 2.57, except also protect
11900 against double-definition.
11901 * src/system.h: Likewise.
11902 Portability issues reported by Nelson H. F. Beebe.
11903
11904 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11905 All uses changed. Provide a definition in both C and C++.
11906 (yytrue, yyfalse): Define even if defined (__cplusplus).
11907
11908 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11909 Reported by Nelson H. F. Beebe.
11910
11911 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11912
11913 2003-01-02 Paul Eggert <eggert@twinsun.com>
11914
11915 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11916 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11917 Bug reported by Nelson H. F. Beebe.
11918
11919 2003-01-01 Paul Eggert <eggert@twinsun.com>
11920
11921 * Version 1.875.
11922
11923 2002-12-30 Paul Eggert <eggert@twinsun.com>
11924
11925 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11926 Moved here from...
11927 (<INITIAL>","): Here. This causes stray "," to be treated
11928 more uniformly.
11929
11930 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11931 last brace in braced code when not in Yacc mode, for compatibility
11932 with Bison 1.35. This resurrects the 2001-12-15 patch to
11933 src/reader.c.
11934
11935 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11936 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11937
11938 2002-12-28 Paul Eggert <eggert@twinsun.com>
11939
11940 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11941 that of SYM's type. This fixes Debian bug 168069, reported by
11942 Thomas Olsson.
11943
11944 2002-12-28 Paul Eggert <eggert@twinsun.com>
11945
11946 Version 1.75f.
11947
11948 Switch back to the Yacc style of conflict reports, undoing some
11949 of the 2002-07-30 change.
11950 * doc/bison.texinfo (Understanding): Use Yacc style for
11951 conflict reports. Also, use new way of locating rules.
11952 * src/conflicts.c (conflict_report):
11953 Renamed from conflict_report_yacc, removing the old
11954 'conflict_report'. Translate the entire conflict report at once,
11955 so that we don't assume that "," has the same interpretation in
11956 all languages.
11957 (conflicts_output): Use Yacc-style conflict report for each state,
11958 instead of our more-complicated style.
11959 (conflicts_print): Use Yacc-style conflict report, except print
11960 the input file name when not emulating Yacc.
11961 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11962 Conflicted Reduction, %expect not enough, %expect too much,
11963 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11964 * tests/existing.at (GNU Cim Grammar): Likewise.
11965 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11966
11967 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11968 fatal): Don't invoke fflush; it's not needed and it might even be
11969 harmful for stdout, as stdout might not be open.
11970 * src/reduce.c (reduce_print): Likewise.
11971
11972 2002-12-27 Paul Eggert <eggert@twinsun.com>
11973
11974 Fix a bug where error locations were not being recorded correctly.
11975 This problem was originally reported by Paul Hilfinger in
11976 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11977
11978 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11979 top of the location stack's error locations.
11980 (yyerrlab): Set it. When discarding a token, push its location
11981 onto yylerrsp so that we don't lose track of the error's end.
11982 (yyerrlab1): Now is only the target of YYERROR, so that we can
11983 properly record the location of the action that failed. For GCC
11984 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11985 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11986 (yyerrlab2): New label, which yyerrlab now falls through to.
11987 Compute the error's location by applying YYLLOC_DEFAULT to
11988 the locations of all the symbols that went into the error.
11989 * doc/bison.texinfo (Location Default Action): Mention that
11990 YYLLOC_DEFAULT is also invoked for syntax errors.
11991 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11992 Error locations include the locations of all the tokens that were
11993 discarded, not just the last token.
11994
11995 2002-12-26 Paul Eggert <eggert@twinsun.com>
11996
11997 * src/files.c: Include quote.h.
11998 (compute_output_file_names): Warn if we detect conflicting
11999 outputs to the same file. This should catch the misunderstanding
12000 exemplified by Debian Bug 165349, reported by Bruce Stephens..
12001
12002 * src/conflicts.c (conflicts_print): If the user specifies
12003 "%expect N", report an error if there are any reduce/reduce
12004 conflicts. This is what the manual says should happen.
12005 This fixes Debian bug 130890, reported by Anthony DeRobertis.
12006 * tests/conflicts.at (%expect with reduce conflicts): New test.
12007
12008 Don't use m4_include on relative file names, as it doesn't work as
12009 desired if there happens to be a file with that name under ".".
12010
12011 * m4sugar/version.m4: Remove; it was included but it wasn't used.
12012 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
12013 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
12014 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
12015 * src/output.c (output_skeleton): Use full path names when
12016 specifying a file to include; don't rely on include path, as
12017 it's unreliable when the working file contains a file with
12018 that name.
12019
12020 2002-12-25 Paul Eggert <eggert@twinsun.com>
12021
12022 Remove obsolete references to bison.simple and bison.hairy.
12023 Problem mentioned by Aubin Mahe in
12024 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
12025 * data/glr.c: Comment fix.
12026 * doc/bison.1: Remove references. Also, mention "yacc".
12027
12028 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
12029 with -g option.
12030
12031 * src/parse-gram.y (declaration): Use enum "report_states" rather
12032 than its numeric value 1.
12033
12034 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
12035 opening a new one. This fixes Debian bug 165349, reported by
12036 Bruce Stephens.
12037
12038 2002-12-24 Paul Eggert <eggert@twinsun.com>
12039
12040 Version 1.75e.
12041
12042 * Makefile.maint (cvs-update): Don't assume that the shell
12043 supports $(...), as Solaris sh doesn't.
12044
12045 * src/parse-gram.y (lloc_default): Remove test for empty
12046 nonterminals at the end, since it didn't change the result.
12047
12048 2002-12-24 Paul Eggert <eggert@twinsun.com>
12049
12050 If the user does not define YYSTYPE as a macro, Bison now declares it
12051 using typedef instead of defining it as a macro. POSIX requires this.
12052 For consistency, YYLTYPE is also declared instead of defined.
12053
12054 %union directives can now have a tag before the `{', e.g., the
12055 directive `%union foo {...}' now generates the C code
12056 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
12057 The default union tag is `YYSTYPE', for compatibility with Solaris 9
12058 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
12059 instead of `yyltype'.
12060
12061 `yystype' and `yyltype' are now obsolescent macros instead of being
12062 typedefs or tags; they are no longer documented and will be
12063 withdrawn in a future release.
12064
12065 * data/glr.c (b4_location_type): Remove.
12066 (YYSTYPE): Renamed from yystype.
12067 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
12068 (struct YYLTYPE): Renamed from struct yyltype.
12069 (YYLTYPE): Renamed from yyltype.
12070 (yyltype, yystype): New (and obsolescent) macros,
12071 for backward compatibility.
12072 * data/yacc.c: Likewise.
12073
12074 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
12075 does not specify a union tag. This is for compatibility with
12076 Solaris 9 yacc.
12077
12078 * src/parse-gram.y (add_param): 2nd arg is now char * not char
12079 const *, since it is now modified by stripping surrounding { }.
12080 (current_braced_code): Remove.
12081 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
12082 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
12083 trailing " {...}". Now of type <chars>.
12084 (grammar_declaration): Adjust to bundled tokens.
12085 (code_content): Remove; stripping is now done by add_param.
12086 (print_token_value): Print contents of bundled tokens.
12087 (token_name): New function.
12088
12089 * src/reader.h (braced_code, current_braced_code): Remove.
12090 (token_name): New decl.
12091
12092 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
12093 token_type, not braced_code code_kind. All uses changed.
12094 (SC_PRE_CODE): New state, for scanning after a keyword that
12095 has (or usually has) an immediately-following braced code.
12096 (token_type): New local var, to keep track of which token type
12097 to return when scanning braced code.
12098 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
12099 <INITIAL>"%parse-param", <INITIAL>"%printer",
12100 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
12101 instead of returning a token type immediately.
12102 (<INITIAL>"{"): Set token type.
12103 (<SC_BRACED_CODE>"}"): Use it.
12104 (handle_action_dollar, handle_action_at): Now returns bool
12105 indicating success. Fail if ! current_rule; this prevents a core dump.
12106 (handle_symbol_code_dollar, handle_symbol_code_at):
12107 Remove; merge body into caller.
12108 (handle_dollar, handle_at): Complain in invalid contexts.
12109
12110 * NEWS, doc/bison.texinfo: Document the above.
12111 * NEWS: Fix years and program names in copyright notice.
12112
12113 2002-12-17 Paul Eggert <eggert@twinsun.com>
12114
12115 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
12116 Reporting, Table of Symbols): Omit mentions of %lex-param and
12117 %parse-param from the documentation for now.
12118
12119 2002-12-15 Paul Eggert <eggert@twinsun.com>
12120
12121 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
12122 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
12123 lookahead symbol, and which sets yychar in parser actions) and it
12124 disagreed with the Bison documentation. Bug
12125 reported by Andrew Walrond.
12126
12127 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
12128 as the caller now does that.
12129 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
12130 (YYEMPTY): Parenthesize right hand side, since others use it.
12131 (yyparse): Don't assume that our generated code is the only code
12132 that sets yychar.
12133
12134 2002-12-13 Paul Eggert <eggert@twinsun.com>
12135
12136 Version 1.75d.
12137
12138 POSIX requires a "yacc" command.
12139 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
12140 (MOSTLYCLEANFILES): Add yacc.
12141 (yacc): New rule.
12142 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
12143 as an alias for bison y.
12144
12145 * po/LINGUAS: Add da.
12146
12147 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
12148 problem with latest <getopt.h>.
12149 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
12150
12151 * doc/fdl.texi: Upgrade to 1.2.
12152 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
12153 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
12154 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
12155 gnulib.
12156 * config/install-sh: Sync with autotools.
12157
12158 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
12159 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12160 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
12161 locations are requested.
12162 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
12163 locations are requested.
12164
12165 2002-12-12 Paul Eggert <eggert@twinsun.com>
12166
12167 Remove unportable casts and storage allocation tricks.
12168 While we're at it, remove almost all casts, since they
12169 usually aren't needed and are a sign of trouble.
12170
12171 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12172
12173 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12174 the pointer DSET returned by malloc; this isn't portable.
12175 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12176 Similarly for DERIVES.
12177 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12178 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12179 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12180
12181 * src/derives.c (derives_compute): Do not bother invoking
12182 int_of_rule_number, since rule numbers are integers.
12183
12184 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12185 rather than XMALLOC (char, N).
12186
12187 * src/files.c (filename_split): Rewrite to avoid cast.
12188
12189 * src/gram.h (symbol_number_as_item_number,
12190 item_number_as_symbol_number, rule_number_as_item_number,
12191 item_number_as_rule_number):
12192 Now inline functions rather than macros, to avoid casts.
12193 * src/state.h (state_number_as_int): Likewise.
12194 * src/tables.c (state_number_to_vector_number,
12195 symbol_number_to_vector_number): Likewise.
12196
12197 * src/gram.h (int_of_rule_number): Remove; no longer used.
12198
12199 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12200 since the resulting storage is always stored into.
12201
12202 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12203 where it's needed.
12204
12205 * src/muscle_tab.c (muscle_m4_output):
12206 Now inline. Return bool, not int.
12207 * src/state.c (state_compare): Likewise.
12208 * src/symtab.c (symbol_check_defined,
12209 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12210 hash_compare_symbol, hash_symbol):
12211 Likewise.
12212 * src/uniqstr.c (uniqstr_print): Likewise.
12213 * src/muscle_tab.c (muscle_m4_output_processor):
12214 New function, to avoid casts.
12215 * src/state.c (state_comparator, stage_hasher): Likewise.
12216 * src/symtab.c (symbol_check_defined_processor,
12217 symbol_check_alias_consistency_processor, symbol_pack_processor,
12218 symbol_translation_processor, hash_symbol_comparator,
12219 hash_symbol_hasher): Likewise.
12220 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12221 * src/muscle_tab.c (muscles_m4_output):
12222 Use new functions instead of casting old functions unportably.
12223 * src/state.c (state_hash_new): Likewise.
12224 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12225 symbols_token_translations_init):
12226 Likewise.
12227 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12228
12229 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12230 var instead of casting to long, to avoid casts.
12231 (prepare_states): Use MALLOC rather than alloca, so that we don't
12232 have to worry about alloca.
12233 * src/state.c (state_hash_lookup): Likewise.
12234
12235 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12236 local var instead of casting to unsigned char, to avoid casts.
12237
12238 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12239 STATE_ALLOC): Remove.
12240 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12241 rather than calloc, and use offsetof to avoid allocating slightly
12242 too much storage.
12243 (state_new): Initialize all members.
12244
12245 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12246
12247 * src/symtab.c (symbol_free): Remove; unused.
12248 (symbol_get): Remove cast in lhs of assignment.
12249 (symbols_do): Now static. Accept generic arguments, not
12250 hashing-related ones.
12251
12252 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12253 (symbol_processor): Remove.
12254 (symbols_do): Remove decl; now static.
12255
12256 * src/system.h (alloca): Remove; decl no longer needed.
12257 (<stddef.h>): Include, for offsetof.
12258 (<inttypes.>, <stdint.h>): Include if available.
12259 (uintptr_t): New type, if system lacks it.
12260 (CALLOC, MALLOC, REALLOC): New macros.
12261 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12262 new macros.
12263
12264 * src/tables.c (table_size): Now int, to pacify GCC.
12265 (table_grow, table_ninf_remap): Use signed table size.
12266 (save_row): Don't bother initializing locals when not needed.
12267 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12268 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12269
12270 * src/vcg.h: Correct misspellings.
12271
12272 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12273
12274
12275 * src/getargs.c (getargs): Don't assume EOF == -1.
12276
12277 2002-12-09 Paul Eggert <eggert@twinsun.com>
12278
12279 Change identifier spellings to avoid collisions with names
12280 that are reserved by POSIX.
12281
12282 Don't use names ending in _t, since POSIX reserves them.
12283 For consistency, remove _e and _s endings -- they're weren't
12284 needed to remove ambiguity. All uses changed.
12285 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12286 turn was just renamed from struniq_t.
12287 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12288 which in turn was just renamed from struniq_processor_t.
12289 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12290 in turn was renamed from hash_compare_struniq_t.
12291 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12292 (state_list): Renamed from state_list_t.
12293 * src/assoc.h (assoc): Renamed from assoc_t.
12294 * src/conflicts.c (enum conflict_resolution): Renamed from
12295 enum conflict_resolution_e.
12296 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12297 (rule_list): Renamed from rule_list_t.
12298 * src/getargs.h (enum trace): Renamed from enum trace_e.
12299 (enum report): Renamed from enum report_e.
12300 * src/gram.h (item_number): Renamed from item_number_t.
12301 (rule_number): Renamed from rule_number_t.
12302 (struct rule_s): Remove the "rule_s" part; not used.
12303 (rule): Renamed from rule_t.
12304 (rule_filter): Renamed from rule_filter_t.
12305 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12306 (goto_list): Renamed from goto_list_t.
12307 * src/lalr.h (goto_number): Renamed from goto_number_t.
12308 * src/location.h (location): Renamed from location_t.
12309 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12310 and moved here from:
12311 * src/muscle_tab.h (muscle_entry_t): here.
12312 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12313 (rule_list): Renamed from rule_list_t.
12314 * src/print_graph.c (static_graph): Renamed from graph.
12315 * src/reader.h (braced_code): Renamed from braced_code_t.
12316 Remove brace_code_e tag.
12317 * src/relation.h (relation_node): Renamed from relation_node_t.
12318 (relation_nodes): Renamed from relation_nodes_t.
12319 (relation): Renamed from relation_t.
12320 * src/state.h (state_number): Renamed from state_number_t.
12321 (struct state): Renamed from struct state_s.
12322 (state): Renamed from state_t.
12323 (transitions): Renamed from transitions_t. Unused (and
12324 misspelled) transtion_s tag removed.
12325 (errs): Renamed from errs_t. Unused errs_s tag removed.
12326 (reductions): Renamed from reductions_t. Unused tag
12327 reductions_s removed.
12328 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12329 (struct symbol_list): Renamed from struct symbol_list_s.
12330 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12331 (struct symbol): Renamed from struct symbol_s.
12332 (symbol): Renamed from symbol_t.
12333 * src/tables.c (vector_number): Renamed from vector_number_t.
12334 (action_number): Renamed from action_t.
12335 * src/tables.h (base_number): Renamed from base_t.
12336 * src/vcg.h (enum color): Renamed from enum color_e.
12337 (enum textmode): Renamed from enum textmode_e.
12338 (enum shape): Renamed from enum shape_e.
12339 (struct colorentry): Renamed from struct colorentry_s.
12340 (struct classname): Renamed from struct classname_s.
12341 (struct infoname): Renamed from struct infoname_s.
12342 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12343 (enum decision): Renamed from enum decision_e.
12344 (enum orientation): Renamed from enum orientation_e.
12345 (enum alignment): Renamed from enum alignment_e.
12346 (enum arrow_mode): Renamed from enum arrow_mode_e.
12347 (enum crossing_type): Renamed from enum crossing_type_e.
12348 (enum view): Renamed from enum view_e.
12349 (struct node): Renamed from struct node_s.
12350 (node): Renamed from node_t.
12351 (enum linestyle): Renamed from enum linestyle_e.
12352 (enum arrowstyle): Renamed from enum arrowstyle_e.
12353 (struct edge): Renamed from struct edge.
12354 (edge): Renamed from edge_t.
12355 (struct graph): Renamed from struct graph_s.
12356 (graph): Renamed from graph_t.
12357 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12358 Rename value_t -> value.
12359 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12360 value_t_as_yystype -> value_as_yystype.
12361
12362 Don't include <errno.h> in the mainstream code, since it
12363 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12364 * lib/get-errno.c, lib/get-errno.h: New files.
12365 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12366 get-errno.c.
12367 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12368 * src/output.c (output_skeleton): Likewise.
12369 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12370 instead of errno.
12371 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12372 Likewise.
12373 (handle_action_dollar, handle_action_at): Likewise.
12374 * src/system.h: Do not include <errno.h>.
12375 (TAB_EXT): Renamed from EXT_TAB.
12376 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12377
12378 Avoid str[a-z]*, since <string.h> reserves that name space.
12379 Change all instances of "struniq" in names to "uniqstr", and
12380 likewise for "STRUNIQ" and "UNIQSTR".
12381 * src/uniqstr.c: Renamed from src/struniq.c.
12382 * src/uniqstr.h: Renamed from src/struniq.h.
12383 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12384 * src/files.c (strsuffix): Remove; unused.
12385 (concat2): Renamed from stringappend. Now static.
12386 * src/files.h (strsuffix, stringappend): Remove; unused.
12387 * src/parse-gram.y (<chars>): Renamed from <string>.
12388 (<uniqstr>): Renamed from <struniq>.
12389 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12390 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12391 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12392 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12393 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12394 (N_EXPAND): Renamed from N_STRETCH.
12395
12396 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12397 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12398 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12399 Remove; unused.
12400 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12401 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12402 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12403 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12404 (BASE_MAXIMUM): Renamed from BASE_MAX.
12405 (BASE_MINIMUM): Renamed from BASE_MIN.
12406 (ACTION_MAX): Remove; unused.
12407 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12408 Unnecessary casts removed from above defines.
12409
12410
12411 Fix misspelling in names.
12412 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12413 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12414 G_NODE_ALIGNEMENT.
12415
12416
12417 * lib/timevar.c (timevar_report): Renamed from time_report,
12418 for consistency with other names.
12419 * lib/timevar.h (timevar_report): New decl.
12420 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12421
12422
12423 Sort include-file uses.
12424
12425 Reorder all include files under src to be in the order "system.h".
12426 then the ../lib include files in angle brackets (alphabetized),
12427 then the . include files in double-quotes (alphabetized). Fix
12428 dependency breakages encountered in this process, as follows:
12429 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12430 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12431 * src/state.h: Include "symtab.h".
12432
12433 2002-12-08 Paul Eggert <eggert@twinsun.com>
12434
12435 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12436 since this causes problems when __file__ contains character
12437 sequences like "@" that are treated specially by src/scan-skel.l.
12438 Instead, just use the file's basename. This fixes the bug
12439 reported by Martin Mokrejs in
12440 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12441
12442 2002-12-06 Paul Eggert <eggert@twinsun.com>
12443
12444 Add support for rules that do not have trailing semicolons, as
12445 POSIX requires. Improve the quality of locations in Bison
12446 diagnostics.
12447
12448 * src/location.c: Include <quotearg.h>.
12449 (empty_location): Now const.
12450 (location_print): New function. Follow the recommendation of the
12451 GNU Coding Standards for locations that span file boundaries.
12452 * src/location.h: Do not include <quotearg.h>; no longer needed.
12453 (boundary): New type.
12454 (location_t): Use it. This allows locations to span file boundaries.
12455 All member uses changed: file -> start.file or end.file (as needed),
12456 first_line -> start.line, first_column -> start.column,
12457 last_line -> end.line, last_column -> end.column.
12458 (equal_boundaries): New function.
12459 (LOCATION_RESET, LOCATION_STEP): Remove.
12460 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12461 (empty_location): Now const.
12462 (location_print): New decl.
12463 * src/parse-gram.y (lloc_default): New function, which handles
12464 empty locations more accurately.
12465 (YYLLOC_DEFAULT): Use it.
12466 (%token COLON): Remove.
12467 (%token ID_COLON): New token.
12468 (rules): Use it.
12469 (declarations, rules): Remove trailing semicolon.
12470 (declaration, rules_or_grammar_declaration):
12471 Allow empty (";") declaration.
12472 (symbol_def): Remove empty actions; no longer needed.
12473 (rules_or_grammar_declaration): Remove trailing semicolon.
12474 (semi_colon.opt): Remove.
12475 * src/reader.h: Include location.h.
12476 (scanner_cursor): New decl.
12477 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12478 rolling our own.
12479 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12480 of *loc.
12481 (STEP): Remove. No longer needed, now that adjust_location does
12482 the work. All uses removed.
12483 (scanner_cursor): New var.
12484 (adjust_location): Renamed from extend_location. It now sets
12485 *loc and adjusts the scanner cursor. All uses changed.
12486 Don't bother testing for CR.
12487 (handle_syncline): Remove location arg; now updates scanner cursor.
12488 All callers changed.
12489 (unexpected_end_of_file): Now accepts start boundary of token or
12490 comment, not location. All callers changed. Update scanner cursor,
12491 not the location.
12492 (SC_AFTER_IDENTIFIER): New state.
12493 (context_state): Renamed from c_context. All uses changed.
12494 (id_loc, code_start, token_start): New local vars.
12495 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12496 processing of Yacc white space and equivalents here.
12497 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12498 instead of returning ID immediately, since we need to search for
12499 a subsequent colon.
12500 (<INITIAL>"'", "\""): Save token_start.
12501 (<INITIAL>"%{", "{", "%%"): Save code_start.
12502 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12503 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12504 BEGIN context_state at end, not INITIAL.
12505 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12506 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12507 Return correct token start.
12508 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12509 the start of a character, string or multiline comment is found.
12510 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12511 Reduction): Adjust reported locations to match the more-precise
12512 results now expected.
12513 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12514 * tests/reduce.at (Useless Rules, Reduced Automaton,
12515 Underivable Rules): Likewise.
12516 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12517 or "|"' now that so many other tokens are allowed by the new grammar.
12518
12519 * src/complain.h (current_file): Remove duplicate decl;
12520 current_file is now owned by files.h.
12521 * src/complain.c, src/scan-gram.l: Include files.h.
12522
12523 2002-12-06 Paul Eggert <eggert@twinsun.com>
12524
12525 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12526 promotes to int; it might be unsigned int.
12527 * data/yacc.c (yy_reduce_print): Likewise.
12528
12529 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12530 be #defined in the prologue, not in the Bison declarations.
12531 This fixes Debian Bug 102878, reported by Shaul Karl.
12532
12533 2002-12-02 Paul Eggert <eggert@twinsun.com>
12534
12535 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12536 * lib/strtoul.c: New file, from gnulib.
12537 This fixes a porting bug reported by Peter Klein in
12538 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12539
12540 2002-11-30 Paul Eggert <eggert@twinsun.com>
12541
12542 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12543 and put only a forward declaration in the prologue. This is for
12544 consistency with the other scanner helper functions.
12545
12546 Type clashes now generate warnings, not errors, since it
12547 appears that POSIX may allow some grammars with type clashes.
12548 * src/reader.c (grammar_current_rule_check): Warn about
12549 type clashes instead of complaining.
12550 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12551
12552 Add Yacc library, since POSIX requires it.
12553 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12554 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12555 * lib/main.c, lib/yyerror.c: New files.
12556
12557 gram_error can be static; it need not be extern.
12558 * src/reader.h (gram_error): Remove decl.
12559 * src/parse-gram.y (gram_error): Now static. Add static decl.
12560 (print_token_value): Omit parameter names from forward decl,
12561 for consistency.
12562
12563 2002-11-29 Paul Eggert <eggert@twinsun.com>
12564
12565 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12566 be declared before being used. E.g., one should typically
12567 declare them in the prologue. Use GNU coding style in examples.
12568 Put "const" consistently after the type it modifies. Mention
12569 that C99 supports "inline". Mention that yyerror traditionally
12570 returns "int".
12571
12572 %parse-param and %lex-param now take just one argument, the
12573 declaration; the argument name is deduced from the declaration.
12574
12575 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12576 Reporting, Table of Symbols): Document this.
12577 * src/parse-gram.y (add_param): New function.
12578 (COMMA): Remove.
12579 (declaration): Implement new rule for %parse-param and %lex-param.
12580 * src/scan-gram.l: "," now elicits a warning, rather than being
12581 a token; this is more compatible with byacc.
12582 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12583
12584 2002-11-27 Paul Eggert <eggert@twinsun.com>
12585
12586 Rename identifiers to avoid real and potential collisions.
12587
12588 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12589 to avoid collision with lex macro described by Bruce Lilly in
12590 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12591 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12592 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12593 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12594 All uses changed.
12595 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12596 The name "yycontrol" violates the name space rules, and this stuff
12597 wasn't being used anyway.
12598 (input): Remove action; this stuff wasn't being used.
12599 (gram_error): Rename local variable yylloc -> loc.
12600 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12601 (YY_DECL): Don't use "yy" at start of local variables.
12602 All uses changed, e.g., yylloc -> loc.
12603 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12604 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12605 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12606 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12607
12608 * src/parse-gram.y (gram_error): loc is now const *.
12609 * src/reader.h (gram_error): Likewise.
12610
12611 2002-11-24 Paul Eggert <eggert@twinsun.com>
12612
12613 Version 1.75c.
12614
12615 * tests/actions.at (Actions after errors): Use an output format
12616 more similar to that of the Printers and Destructors test.
12617 Test the position of the ';' token too.
12618 (Printers and Destructors): Likewise.
12619 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12620 unnecessarily alarming people when the test fails.
12621
12622 * data/yacc.c (yyerrlab1): Move this label down, so that the
12623 parser does not discard the lookahead token if the user code
12624 invokes YYERROR. This change is required for POSIX conformance.
12625
12626 * lib/error.c: Sync with gnulib.
12627
12628 2002-11-22 Paul Eggert <eggert@twinsun.com>
12629
12630 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12631 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12632 * lib/xmalloc.c: Likewise.
12633
12634 2002-11-20 Paul Eggert <eggert@twinsun.com>
12635
12636 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12637
12638 2002-11-20 Paul Eggert <eggert@twinsun.com>
12639
12640 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12641 should use `if (! x) abort ();' rather than `assert (x);', and
12642 anyway it's one less thing to worry about configuring.
12643
12644 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12645 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12646 and replace all instances of assert with abort.
12647 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12648 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12649
12650 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12651 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12652 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12653 hash_find_entry, hash_rehash, hash_insert): Likewise.
12654 * src/conflicts.c (resolve_sr_conflict): Likewise.
12655 * src/lalr.c (set_goto_map, map_goto): Likewise.
12656 * src/nullable.c (nullable_compute): Likewise.
12657 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12658 * src/reader.c (packgram, reader): Likewise.
12659 * src/state.c (state_new, state_free, state_transitions_set,
12660 state_reduction_find): Likewise.
12661 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12662 symbol_pack): Likewise.
12663 * src/tables.c (conflict_row, pack_vector): Likewise.
12664 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12665 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12666 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12667 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12668
12669 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12670 (ARGMATCH_CONSTRAINT): New macro.
12671 (ARGMATCH_ASSERT): Use it.
12672
12673 * src/system.h (verify): New macro.
12674 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12675 rather than assert.
12676 * src/tables.c (tables_generate): Likewise.
12677
12678 * src/struniq.c (struniq_assert): Now returns void, and aborts
12679 if the assertion is false.
12680 (struniq_assert_p): Remove.
12681 * src/struniq.h: Likewise.
12682
12683 2002-11-18 Paul Eggert <eggert@twinsun.com>
12684
12685 * data/glr.c (yygetLRActions): Replace `yyindex' with
12686 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12687 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12688 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12689
12690 2002-11-18 Akim Demaille <akim@epita.fr>
12691
12692 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12693 space.
12694 From Tim Van Holder.
12695
12696 2002-11-17 Paul Eggert <eggert@twinsun.com>
12697
12698 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12699 to "SyntaxError" for consistency with my 2002-11-15 change.
12700
12701 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12702 not define to {}, since this breaks the common use of `YYDPRINTF
12703 ((...));' if a single statement is desired (e.g. before `else').
12704 Work around GCC warnings by surrounding corresponding calls with
12705 {} if needed.
12706 (yyhasResolvedValue): Remove unused function.
12707 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12708 loop body.
12709 (yyreportSyntaxError): Renamed from yyreportParseError.
12710 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12711 All uses changed.
12712 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12713 extern when possible. Remove unused initializations.
12714
12715 2002-11-16 Akim Demaille <akim@epita.fr>
12716
12717 Augment the similarity between GLR and LALR traces.
12718
12719 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12720 (YY_REDUCE_PRINT): New.
12721 (yyparse): Use them.
12722 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12723 YYDPRINT here.
12724 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12725 state reached after the reduction/recovery, since...
12726 (yyparse, yyprocessOneStack): Report the state we are entering in.
12727
12728 2002-11-16 Akim Demaille <akim@epita.fr>
12729
12730 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12731 Add support for --trace=skeleton.
12732 * src/scan-skel.l: %option debug.
12733 Scan strings of non-@ or \n instead of character by character.
12734 (scan_skel): Handle trace_skeleton.
12735 (QPUTS): New.
12736 (@output_parser_name@, @output_header_name@): ``Restore'' their
12737 support (used to be M4 macros).
12738 * data/yacc.c: Quote larger chunks, a la glr.c.
12739 * data/lalr1.cc: Likewise.
12740 The header guards are no longer available, so use some other
12741 string than `YYLSP_NEEDED'.
12742
12743 2002-11-16 Akim Demaille <akim@epita.fr>
12744
12745 Make the ``Printers and Destructors'' test more verbose, taking
12746 `yacc.c''s behavior as (possibly wrong) reference.
12747
12748 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12749 instead of fprint on stdout.
12750 Set and report the last_line of the symbols.
12751 Consistently display values and locations.
12752
12753 2002-11-16 Paul Eggert <eggert@twinsun.com>
12754
12755 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12756
12757 2002-11-15 Paul Eggert <eggert@twinsun.com>
12758
12759 * tests/actions.at (Actions after errors): New test case.
12760
12761 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12762 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12763 tests/action.at, tests/calc.at, tests/conflicts.at,
12764 tests/cxx-type.at, tests/regression.at:
12765 "parse error" -> "syntax error" for POSIX compatibility.
12766 "parsing stack overflow..." -> "parser stack overflow" so
12767 that code matches Bison documentation.
12768
12769 2002-11-15 Akim Demaille <akim@epita.fr>
12770
12771 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12772 take two BRACED_CODE, not two string_content.
12773 Free the scanner's obstack when we are done.
12774 (code_content): New.
12775 * tests/calc.at: Adjust.
12776 * doc/bison.texinfo: Adjust.
12777 Also, make sure to include the `,' for these declarations.
12778
12779 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12780
12781 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12782 definition; avoids potential autoreconf problems.
12783
12784 2002-11-15 Akim Demaille <akim@epita.fr>
12785
12786 Always check the value returned by yyparse.
12787
12788 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12789 returned by yyparse.
12790 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12791 Adjust calls.
12792 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12793 returned by yyparse.
12794
12795 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12796
12797 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12798 on input.at test.
12799
12800 2002-11-14 Paul Eggert <eggert@twinsun.com>
12801
12802 * src/output.c (output_skeleton): Call xfopen instead of
12803 duplicating xfopen's body.
12804
12805 Fix bugs reported by Nelson H. F. Beebe in
12806 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12807
12808 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12809 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12810 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12811 file twice in the grammar, as an extra check.
12812
12813 * tests/input.at (Torturing the Scanner): Surround the
12814 backslash-newline tests with "#if 0", to make it less likely that
12815 we'll run into compiler bugs. Bring back solitary \ inside
12816 comment, but add a closing comment to work around HP C bug. Don't
12817 test backslash-newline in C character constant.
12818
12819 2002-11-14 Akim Demaille <akim@epita.fr>
12820
12821 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12822 status of the compiler.
12823 Calling `exit 1' is no longer needed.
12824 Reported by Nelson H. F. Beebe.
12825
12826 2002-11-14 Akim Demaille <akim@epita.fr>
12827
12828 * tests/atlocal.in (CPPFLAGS): We have config.h.
12829 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12830 New.
12831 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12832 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12833 * tests/regression.at, tests/torture.at: Use them for all the
12834 grammars that are to be compiled.
12835 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12836 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12837 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12838
12839 2002-11-14 Akim Demaille <akim@epita.fr>
12840
12841 * doc/bison.texinfo: Various formatting changes (alignments in
12842 samples, additional @group/@end group, GCS in samples.
12843 Use @deffn instead of simple @table to define the directives,
12844 macros, variables etc.
12845
12846 2002-11-13 Paul Eggert <eggert@twinsun.com>
12847
12848 Fix some bugs reported by Albert Chin-A-Young in
12849 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12850
12851 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12852 -o c"; the HP C compiler chatters during compilation.
12853 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12854 * tests/headers.at (export YYLTYPE): Likewise.
12855
12856 * tests/input.at (Torturing the Scanner): Remove lines containing
12857 solitary backslashes, as they tickle a bug in the HP C compiler.
12858
12859 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12860 comments, since they're not portable. Use GNU coding style.
12861
12862 2002-11-13 Akim Demaille <akim@epita.fr>
12863
12864 * data/yacc.c: Leave bigger chunks of quoted text.
12865 (YYDSYMPRINTF): New.
12866 Use it to report symbol activities.
12867 * data/glr.c (YYDSYMPRINTF): New.
12868 Use it.
12869
12870 2002-11-12 Paul Eggert <eggert@twinsun.com>
12871
12872 Version 1.75b.
12873
12874 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12875 (yyglrReduce): Return yyok, not 0.
12876 This should avoid the enumerated-type warnings reported
12877 by Nelson H. F. Beebe in
12878 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12879
12880 * lib/bbitset.h (BITSET_INLINE): Remove.
12881 * lib/bitset.h [! BITSET_INLINE]: Remove.
12882 (bitset_set, bitset_reset, bitset_test): Rename local vars
12883 to avoid shadowing warnings by GCC.
12884
12885 * data/glr.c (inline): Remove #define. It's the user's
12886 responsibility to #define it away, just like 'const'.
12887 This fixes one of the bugs reported by Nelson H. F. Beebe in
12888 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12889
12890 * Makefile.maint (po-check): Scan .l and .y files instead of the
12891 .c and the .h files that they generate. This fixes the bug
12892 reported by Tim Van Holder in:
12893 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12894 Look for N_ as well as for _. Try to avoid matching #define for
12895 N_ and _.
12896 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12897 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12898 * src/scan-gram.l: Revamp regular expressions so that " and '
12899 do not confuse xgettext.
12900
12901 * src/struniq.h (struniq_new): Do not declare the return type
12902 to be 'const'; this violates the C standard.
12903 * src/struniq.c (struniq_new): Likewise.
12904
12905 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12906
12907 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12908 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12909 linker.
12910
12911 2002-11-12 Akim Demaille <akim@epita.fr>
12912
12913 * Makefile.maint: Sync with Autoconf:
12914 (local_updates): New.
12915
12916 2002-11-12 Akim Demaille <akim@epita.fr>
12917
12918 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12919
12920 2002-11-12 Akim Demaille <akim@epita.fr>
12921
12922 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12923 locations.
12924
12925 2002-11-12 Akim Demaille <akim@epita.fr>
12926
12927 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12928 not yyvalue.
12929
12930 2002-11-12 Akim Demaille <akim@epita.fr>
12931
12932 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12933 Use it to test the GLR parser.
12934
12935 2002-11-12 Akim Demaille <akim@epita.fr>
12936
12937 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12938 defines it.
12939 * data/glr.c (yystos): New.
12940 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12941 (YYDSYMPRINT): New.
12942 (yyval): Don't define it, it is handled via M4.
12943 (yyrecoverParseError): Free verbosely the discarded symbols.
12944 * data/yacc.c (yysymprint): Remove, rather...
12945 (b4_yysymprint_generate): invoke.
12946 * data/c.m4 (b4_yysymprint_generate): New.
12947 Accept pointers as arguments, as opposed to the version from
12948 yacc.c.
12949 (b4_yydestruct_generate): Likewise.
12950 * tests/cations.at (Printers and Destructors): Use Bison directives
12951 instead of CPP macros.
12952 Don't rely on internal details.
12953
12954 2002-11-12 Akim Demaille <akim@epita.fr>
12955
12956 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12957 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12958 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12959 it against YYEMPTY and so forth), work on yytoken (i.e., set
12960 it to YYEMPTY etc.).
12961 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12962 (b4_symbol_actions): Remove.
12963 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12964 for 0, end-of-input.
12965
12966 2002-11-12 Akim Demaille <akim@epita.fr>
12967
12968 * doc/bison.texinfo (Destructor Decl): New.
12969
12970 2002-11-12 Akim Demaille <akim@epita.fr>
12971
12972 * src/tables.c (tables_generate): Use free for pointers that
12973 cannot be NULL, not XFREE.
12974 (pack_vector): Use assert, not fatal, for bound violations.
12975 * src/state.c (state_new): Likewise.
12976 * src/reader.c (reader): Likewise.
12977 * src/lalr.c (set_goto_map): Likewise.
12978 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12979 the file name.
12980
12981 2002-11-12 Akim Demaille <akim@epita.fr>
12982
12983 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12984 Restore.
12985 * src/scan-gram.l (last_string): Is global to the file, not to
12986 yylex.
12987 * src/parse-gram.y (input): Don't append the epilogue here,
12988 (epilogue.opt): do it here, and free the scanner's obstack.
12989 * src/reader.c (epilogue_set): Rename as...
12990 (epilogue_augment): this.
12991 * data/c.m4 (b4_epilogue): Defaults to empty.
12992
12993 2002-11-12 Akim Demaille <akim@epita.fr>
12994
12995 * src/getargs.c (long_options): Remove duplicates.
12996 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12997 Remove.
12998 * doc/bison.rnh: Remove.
12999 * doc/bison.texinfo (VMS Invocation): Remove.
13000
13001 2002-11-12 Akim Demaille <akim@epita.fr>
13002
13003 * src/struniq.h, src/struniq.c (struniq_t): Is const.
13004 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
13005
13006 Use struniq for symbols.
13007
13008 * src/symtab.h (symbol_t): The tag member is a struniq.
13009 (symbol_type_set): Adjust.
13010 * src/symtab.c (symbol_new): Takes a struniq.
13011 (symbol_free): Don't free the tag member.
13012 (hash_compare_symbol_t, hash_symbol_t): Rename as...
13013 (hash_compare_symbol, hash_symbol): these.
13014 Use the fact that tags as struniqs.
13015 (symbol_get): Use struniq_new.
13016 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
13017 Returns a strniq.
13018 * src/reader.h (merger_list, grammar_currentmerge_set): The name
13019 and type members are struniqs.
13020 * src/reader.c (get_merge_function)
13021 (grammar_current_rule_merge_set): Adjust.
13022 (TYPE, current_type): Are struniq.
13023
13024 Use struniq for file names.
13025
13026 * src/files.h, src/files.c (infile): Split into...
13027 (grammar_file, current_file): these.
13028 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
13029 * src/reduce.c (reduce_print): Likewise.
13030 * src/getargs.c (getargs): Likewise.
13031 * src/complain.h, src/complain.c: Likewise.
13032 * src/main.c (main): Call struniqs_new early enough to use it for
13033 file names.
13034 Don't free the input file name.
13035
13036 2002-11-12 Akim Demaille <akim@epita.fr>
13037
13038 * src/symtab.c (symbol_free): Remove dead deactivated code:
13039 type_name are properly removed.
13040 Don't use XFREE to free items that cannot be NULL.
13041 * src/struniq.h, src/struniq.c: New.
13042 * src/main.c (main): Initialize/free struniqs.
13043 * src/parse-gram.y (%union): Add astruniq member.
13044 (yyprint): Adjust.
13045 * src/scan-gram.l (<{tag}>): Return a struniq.
13046 Free the obstack bit that used to store it.
13047 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
13048
13049 2002-11-11 Paul Eggert <eggert@twinsun.com>
13050
13051 Revamp to fix many (but not all) of the C- and M4-related quoting
13052 problems. Among other things, this fixes the Bison bug reported
13053 by Jan Hubicka when processing the Bash grammar; see:
13054 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
13055
13056 Use new @ escapes consistently. Represent brackets with @{ and @}
13057 rather than @<:@ and @:>@, since this works a bit better with dumb
13058 editors like vi. Represent @ with @@, since @ is now consistently
13059 an escape. Use @oline@ and @ofile@ rather than __oline__ and
13060 __ofile__, to avoid unexpected expansions. Similarly, use @output
13061 rather than #output.
13062
13063 * data/c.m4 (b4_copyright): Omit file name from comment, since
13064 the file name could contain "*/".
13065 (b4_synclines_flag): Don't quote the 2nd argument; it should already
13066 be quoted. All uses changed.
13067
13068 * data/glr.c: Use new @ escapes consistently.
13069 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
13070 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
13071 Remove, since they couldn't handle arbitrary characters in file
13072 names.
13073 * data/lalr1.cc: Likewise.
13074 * data/yacc.c: Likewise.
13075
13076 * src/files.c (output_infix): Remove; all uses removed.
13077 * src/files.h: Likewise.
13078
13079 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
13080 mishandled funny characters in file names, and anyway it isn't
13081 needed any more.
13082 * data/yacc.c: Likewise.
13083 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
13084
13085 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
13086 * data/yacc.c: Likewise.
13087
13088 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
13089 strings now.
13090 (muscle_init): Quote filename as a C string.
13091 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
13092 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
13093 * src/output.c (escaped_file_name_output): New function.
13094 (prepare_symbols): Quote tokens for M4.
13095 (prepare): Don't insert output_infix, output_prefix,
13096 output_parser_name, output_header_name; this is now down by scan-skel.
13097 Insert skeleton as a C string.
13098
13099 * src/output.c (user_actions_output, symbol_destructors_output,
13100 symbol_printers_output): Quote filenames for C and M4.
13101 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13102
13103 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
13104 escapes other than \\ and \'; this simplifies the code.
13105 (<SC_STRING>): Likewise, for \\ and \".
13106 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
13107 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
13108 Use new escapes @{ and @} for [ and ].
13109
13110 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
13111 them with auto vars.
13112 Switch to new escape scheme, where @ is the escape character uniformly.
13113 Abort if a stray escape character is found. Avoid unbounded input
13114 buffer when parsing non-escaped text.
13115
13116 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
13117 __oline__, #output, $@, and @{ do not have unintended meanings.
13118
13119 2002-11-09 Paul Eggert <eggert@twinsun.com>
13120
13121 Fix the test failure due to GCC warnings described in
13122 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
13123 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
13124 evaluate to 0 if it's impossible for NINF to be in the respective
13125 table.
13126 (yygetLRActions, yyrecoverParseError): Use them.
13127
13128 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
13129 counted in the token inserted at end of file. Now takes
13130 location_t *, not location_t, so that the location can be
13131 adjusted. All uses changed.
13132
13133 * tests/regression.at (Invalid inputs): Adjust wording in
13134 diagnostic to match the new behavior.
13135
13136 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
13137 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
13138 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
13139 abort ();'. This reduces the runtime of the "Many lookaheads"
13140 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
13141 GCC 3.2.
13142
13143 2002-11-07 Paul Eggert <eggert@twinsun.com>
13144
13145 * src/parse-gram.y (CHARACTER): Remove unused token.
13146 All uses removed.
13147
13148 * src/scan-gram.l: Remove stack option. We no longer use the
13149 stack, since the stack was never deeper than 1; instead, use the
13150 new auto var c_context to record the stacked value.
13151
13152 Remove nounput option. At an unexpected end of file, we now unput
13153 the minimal input necessary to end cleanly; this simplifies the
13154 code.
13155
13156 Avoid unbounded token sizes where this is easy.
13157
13158 (unexpected_end_of_file): New function.
13159 Use it to systematize the error message on unexpected EOF.
13160 (last-string): Now auto, not static.
13161 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
13162 (scanner_last_string_free): Remove; not used.
13163 (percent_percent_count): Move decl to just before use.
13164 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
13165 not the (never otherwised-used) CHARACTER.
13166
13167 2002-11-07 Akim Demaille <akim@epita.fr>
13168
13169 Let yyerror always receive the msg as last argument, so that
13170 yyerror can be variadic.
13171
13172 * data/yacc.c (b4_yyerror_args): New.
13173 Use it when calling yyerror.
13174 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13175 Use it when calling yyerror.
13176 * doc/bison.texinfo (Error Reporting): Adjust.
13177 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13178 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13179
13180 2002-11-06 Akim Demaille <akim@epita.fr>
13181
13182 #line should have quoted strings.
13183 Ideally, this should be done by m4_quotearg.
13184
13185 * src/scan-skel.l: Include quotearg.h.
13186 Quote __ofile__.
13187 * src/output.c (symbol_printers_output)
13188 (symbol_destructors_output): Quote the file name.
13189
13190 2002-11-06 Akim Demaille <akim@epita.fr>
13191
13192 * tests/regression.at (Invalid inputs): Adjust to the recent
13193 messages.
13194
13195 2002-11-06 Akim Demaille <akim@epita.fr>
13196
13197 Restore --no-lines.
13198 Reported by Jim Kent.
13199
13200 * data/c.m4 (b4_syncline): New.
13201 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13202 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13203 * src/output.c (user_actions_output): Likewise.
13204 (prepare): Define 'b4_synclines_flag'.
13205 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13206
13207 2002-11-06 Akim Demaille <akim@epita.fr>
13208
13209 * src/main.c (main): Free `infile'.
13210 * src/scan-gram.l (handle_syncline): New.
13211 Recognize `#line'.
13212 * src/output.c (user_actions_output, symbol_destructors_output)
13213 (symbol_printers_output): Use the location's file name, not
13214 infile.
13215 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13216
13217 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13218
13219 * src/tables.c (matching_state): Don't allow states to match if
13220 either has GLR conflict entries.
13221
13222 2002-11-05 Paul Eggert <eggert@twinsun.com>
13223
13224 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13225 "integer out of range" rather than "invalid value".
13226 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13227 accordingly.
13228
13229 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13230 Also, remove one static variable in the scanner.
13231
13232 * src/scan-gram.l (braces_level): Now auto, not static.
13233 Initialize to zero if the compiler is being picky.
13234 (INITIAL): Clear braces_level instead of incrementing it.
13235 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13236 as POSIX 1003.1-2001 requires.
13237 * src/system.h (IF_LINT): New macro, taken from coreutils.
13238 * configure.ac: Define "lint" if --enable-gcc-warnings.
13239
13240 2002-11-05 Akim Demaille <akim@epita.fr>
13241
13242 * src/scan-gram.l: When it starts with `%', complain about the
13243 whole directive, not just that `invalid character: %'.
13244
13245 2002-11-04 Akim Demaille <akim@epita.fr>
13246
13247 * Makefile.maint: Update from Autoconf.
13248 (update, cvs-update, po-update, do-po-update): New.
13249
13250 2002-11-04 Akim Demaille <akim@epita.fr>
13251
13252 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13253 and yyerror.
13254 Have yyerror `use' its arguments.
13255 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13256 returns true when location & yacc & pure & parse-param.
13257 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13258
13259 2002-11-04 Akim Demaille <akim@epita.fr>
13260
13261 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13262 clashes.
13263 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13264 font-lock-mode.
13265 Use complain_at.
13266 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13267 slot 0.
13268
13269 2002-11-03 Paul Eggert <eggert@twinsun.com>
13270
13271 * src/reader.c (get_merge_function, grammar_current_rule_check):
13272 Use consistent diagnostics for reporting type name clashes.
13273 Quote the types with <>, for consistency with Yacc.
13274 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13275
13276 2002-11-03 Akim Demaille <akim@epita.fr>
13277
13278 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13279 New.
13280 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13281 (b4_parse_param): Remove.
13282 Use b4_identification.
13283 Propagate b4_pure_args where needed to pass them to yyerror.
13284 * data/glr.m4 (b4_parse_param): Remove.
13285 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13286 (b4_lpure_formals): New.
13287 Use b4_identification.
13288 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13289 b4_user_formals and b4_user_args.
13290 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13291 (yyreportAmbiguity): When using a pure parser, also need
13292 the location, and the parse-params.
13293 Adjust callers.
13294 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13295 When using a pure parser, also need the parse-params.
13296 Adjust callers.
13297 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13298 (%pure-parser + %parse-param) LALR and GLR parsers.
13299 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13300 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13301 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13302 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13303 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13304 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13305 * doc/bison.texinfo: Untabify the whole file.
13306 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13307 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13308 (Error Reporting): Adjust to these new directives.
13309 Document %error-verbose, deprecate YYERROR_VERBOSE.
13310
13311 2002-11-03 Akim Demaille <akim@epita.fr>
13312
13313 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13314 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13315 command line options.
13316 * tests/cxx-type.at: Formatting changes.
13317
13318 2002-11-03 Paul Eggert <eggert@twinsun.com>
13319
13320 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13321 to count columns correctly, and to check for invalid inputs.
13322
13323 Use mbsnwidth to count columns correctly. Account for tabs, too.
13324 Include mbswidth.h.
13325 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13326 (extend_location): New function.
13327 (YY_LINES): Remove.
13328
13329 Handle CRLF in C code rather than in Lex code.
13330 (YY_INPUT): New macro.
13331 (no_cr_read): New function.
13332
13333 Scan UCNs, even though we don't fully handle them yet.
13334 (convert_ucn_to_byte): New function.
13335
13336 Handle backslash-newline correctly in C code.
13337 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13338 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13339 all uses changed.
13340 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13341 Use {splice} wherever C allows backslash-newline.
13342 YY_STEP after space, newline, vertical-tab.
13343 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13344
13345 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13346
13347 ({int}, handle_action_dollar, handle_action_at): Check for integer
13348 overflow.
13349
13350 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13351
13352 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13353 as well as \000. Check for UCHAR_MAX, not 255.
13354 Allow \x with an arbitrary positive number of digits, as in C.
13355 Check for overflow here.
13356 Allow \? and UCNs, for compatibility with C.
13357
13358 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13359 with quote slot used by complain_at.
13360
13361 * tests/input.at: Add tests for backslash-newline, m4 quotes
13362 in symbols, long literals, and funny escapes in strings.
13363
13364 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13365 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13366 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13367 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13368 * m4/mbswidth.m4: New file, from GNU coreutils.
13369
13370 * doc/bison.texinfo (Grammar Outline): Document // comments.
13371 (Symbols): Document that trigraphs have no special meaning in Bison,
13372 nor is backslash-newline allowed.
13373 (Actions): Document that trigraphs have no special meaning.
13374
13375 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13376 no longer used.
13377
13378 2002-11-02 Paul Eggert <eggert@twinsun.com>
13379
13380 * src/reader.c: Don't include quote.h; not needed.
13381 (get_merge_function): Reword warning to be consistent with
13382 type clash diagnostic in grammar_current_rule_check.
13383
13384 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13385 bug in trigraph handling.
13386
13387 * src/output.c (prepare_symbols): When printing token names,
13388 escape "[" as "@<:@" and likewise for "]".
13389
13390 * src/system.h (errno): Remove declaration, as we are now
13391 assuming C89 or better, and C89 guarantees errno.
13392
13393 2002-10-30 Paul Eggert <eggert@twinsun.com>
13394
13395 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13396 Check for close failures.
13397 * src/files.h (xfclose): Return void, not int, since it always
13398 returned zero.
13399 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13400 indicates one.
13401 * src/output.c (output_skeleton): Use xfclose rather than fclose
13402 and ferror. xfclose now checks ferror.
13403
13404 * data/glr.c (YYLEFTMOST_STATE): Remove.
13405 (yyreportTree): Use a stack-based leftmost state. This avoids
13406 our continuing battles with bogus warnings about initializers.
13407
13408 2002-10-30 Akim Demaille <akim@epita.fr>
13409
13410 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13411 #if.
13412
13413 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13414
13415 * tests/glr-regr1.at: New test for reported regressions.
13416 * tests/testsuite.at: Add glr-regr1.at test.
13417 * tests/Makefile.am: Add glr-regr1.at test.
13418
13419 2002-10-24 Paul Eggert <eggert@twinsun.com>
13420
13421 Version 1.75a.
13422
13423 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13424 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13425 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13426 Don't assume strdup exists; POSIX says its an XSI extension.
13427 Check for buffer overflow on input.
13428
13429 2002-10-24 Akim Demaille <akim@epita.fr>
13430
13431 * src/output.c (output_skeleton): Don't disable M4sugar comments
13432 too soon: it results in comments being expanded.
13433 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13434 first output.
13435
13436 2002-10-24 Akim Demaille <akim@epita.fr>
13437
13438 * data/yacc.c (m4_int_type): New.
13439 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13440 char' as only yacc.c wants K&R portability.
13441 * data/glr.c (yysigned_char): Remove.
13442 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13443 Reported by Quoc Peyrot.
13444
13445 2002-10-23 Paul Eggert <eggert@twinsun.com>
13446
13447 * src/main.c (main): With --trace=time, report times even if a
13448 non-fatal error occurs. Formerly, the times were reported in some
13449 such cases but not in others.
13450 * src/reader.c (reader): Just return if a complaint has been issued,
13451 instead of exiting, so that 'main' can report times.
13452
13453 2002-10-22 Akim Demaille <akim@epita.fr>
13454
13455 * src/system.h: Include sys/types.
13456 Reported by Bert Deknuydt.
13457
13458 2002-10-23 Paul Eggert <eggert@twinsun.com>
13459
13460 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13461 Suggested by Art Haas.
13462
13463 2002-10-22 Paul Eggert <eggert@twinsun.com>
13464
13465 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13466 decl; not needed any more.
13467 * src/main.c (main): Use return to exit, undoing yesterday's change.
13468 The last OS that we could find where this wouldn't work is
13469 SunOS 3.5, and that's too old to worry about now.
13470
13471 * data/glr.c (struct yyltype): Define members even when not
13472 doing locations. This is more consistent with yacc.c, and it
13473 works around the following bug reports:
13474 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13475 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13476
13477 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13478 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13479 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13480
13481 2002-10-22 Akim Demaille <akim@epita.fr>
13482
13483 * data/README: New.
13484
13485 2002-10-21 Paul Eggert <eggert@twinsun.com>
13486
13487 Be consistent about 'bool'; the old code used an enum in one
13488 module and an int in another, and this violates the C standard.
13489 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13490 * configure.ac (AC_HEADER_STDBOOL): Add.
13491 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13492 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13493 * src/symtab.c (hash_compare_symbol_t): Likewise.
13494 * src/system.h (bool, false, true): Use a definition consistent
13495 with ../lib/hash.c. All uses changed.
13496
13497 * src/complain.c (warning_issued): Renamed from warn_message_count,
13498 so that we needn't worry about integer overflow (!).
13499 Now of type bool. All uses changed.
13500 (complaint_issued): Renamed from complain_message_count; likewise.
13501
13502 * src/main.c (main): Use exit to exit with failure.
13503
13504 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13505 rather than 1 and 0.
13506 * src/main.c (main): Likewise.
13507 * src/getargs.c (getargs): Likewise.
13508 * src/reader.c (reader): Likewise.
13509
13510 * src/getarg.c (getargs): Remove duplicate code for
13511 "Try `bison --help'".
13512
13513 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13514 What was that "2" for?
13515
13516 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13517 * src/getargs.c (usage): Likewise.
13518
13519 * src/getargs.c (getargs): When there are too few operands, report
13520 the last one. When there are too many, report the first extra
13521 one. This is how diffutils does it.
13522
13523 2002-10-20 Paul Eggert <eggert@twinsun.com>
13524
13525 Remove K&R vestiges.
13526 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13527 * src/complain.c (VA_START): Remove. Assume prototypes.
13528 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13529 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13530 fatal): Assume prototypes.
13531 * src/complain.h: Assume prototypes.
13532 * src/system.h (PARAMS): Remove.
13533 Include <limits.h> unconditionally, since it's guaranteeed even
13534 for a freestanding C89 compiler.
13535 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13536 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13537
13538 2002-10-20 Akim Demaille <akim@epita.fr>
13539
13540 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13541 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13542 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13543 (yyresolveStates, yyresolveAction, yyresolveStack)
13544 (yyprocessOneStack): Use them.
13545 (yy_reduce_print): New.
13546 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13547
13548 2002-10-20 Akim Demaille <akim@epita.fr>
13549
13550 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13551 arguments and output `void'.
13552 (b4_c_function): Rename as...
13553 (b4_c_function_def): this.
13554 (b4_c_function_decl, b4_c_ansi_function_def)
13555 (b4_c_ansi_function_decl): New.
13556 Change the interpretation of the arguments: before `int, foo', now
13557 `int foo, foo'.
13558 * data/yacc.c (yyparse): Prototype and define thanks to these.
13559 Adjust b4_c_function_def uses.
13560 * data/glr.c (yyparse): Likewise, but ANSI only.
13561
13562 2002-10-20 Akim Demaille <akim@epita.fr>
13563
13564 * src/output.c (prepare): Move the definition of `tokens_number',
13565 `nterms_number', `undef_token_number', `user_token_number_max'
13566 to...
13567 (prepare_tokens): Here.
13568 (prepare_tokens): Rename as...
13569 (prepare_symbols): this.
13570 (prepare): Move the definition of `rules_number' to...
13571 (prepare_rules): here.
13572 (prepare): Move the definition of `last', `final_state_number',
13573 `states_number' to...
13574 (prepare_states): here.
13575 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13576
13577 2002-10-20 Akim Demaille <akim@epita.fr>
13578
13579 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13580
13581 2002-10-20 Akim Demaille <akim@epita.fr>
13582
13583 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13584 * data/c.m4: here.
13585
13586 2002-10-20 Akim Demaille <akim@epita.fr>
13587
13588 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13589 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13590 `pair'.
13591 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13592 `name' to...
13593 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13594 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13595 These.
13596
13597 2002-10-19 Paul Eggert <eggert@twinsun.com>
13598
13599 Do not create a temporary file, as that involves security and
13600 cleanup headaches. Instead, use a pair of pipes.
13601 Derived from a suggestion by Florian Krohm.
13602 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13603 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13604 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13605 (BISON_PREREQ_SUBPIPE): Add.
13606 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13607 Add subpipe.h, subpipe.c.
13608 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13609 * po/POTFILES.in: Add lib/subpipe.c.
13610 * src/output.c: Include "subpipe.h".
13611 (m4_invoke): Remove decl.
13612 (scan_skel): New decl.
13613 (output_skeleton): Use pipe rather than temporary file for m4 input.
13614 Check that m4sugar.m4 is readable, to avoid deadlock.
13615 Check for pipe I/O error.
13616 * src/scan-skel.l (readpipe): Remove decl.
13617 (scan_skel): New function, to be used in place of m4_invoke.
13618 Read from stream rather than file.
13619
13620 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13621 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13622 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13623 this generates a more-accurate value anyway.
13624
13625 * lib/timevar.c (timervar_accumulate): Rename locals to
13626 avoid confusion with similarly-named more-global.
13627 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13628
13629 * src/output.c (prepare): Use xstrdup to convert char const *
13630 to char *, to avoid GCC warning.
13631
13632 2002-10-19 Akim Demaille <akim@epita.fr>
13633
13634 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13635 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13636 Use them to have `calc.y' ready for %pure-parser.
13637 * data/yacc.c (YYLEX): Pass a yylex return type to
13638 b4_c_function_call.
13639
13640 2002-10-19 Akim Demaille <akim@epita.fr>
13641
13642 Prototype support of %lex-param and %parse-param.
13643
13644 * src/parse-gram.y: Add the definition of the %lex-param and
13645 %parse-param tokens, plus their rules.
13646 Drop the `_' version of %glr-parser.
13647 Add the "," token.
13648 * src/scan-gram.l (INITIAL): Scan them.
13649 * src/muscle_tab.c: Comment changes.
13650 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13651 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13652 (muscle_entry_s): The `value' member is no longer const.
13653 Adjust all dependencies.
13654 * src/muscle_tab.c (muscle_init): Adjust: use
13655 MUSCLE_INSERT_STRING.
13656 Initialize the obstack earlier.
13657 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13658 (muscle_pair_list_grow): New.
13659 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13660 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13661 * tests/calc.at: Use %locations, not --locations.
13662 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13663
13664 2002-10-19 Akim Demaille <akim@epita.fr>
13665
13666 * src/getargs.c (usage): Take status as argument and exit
13667 accordingly.
13668 Report the traditional `Try ... --help' message when status != 0.
13669 (usage, version): Don't take a FILE * as arg, it is pointless.
13670 (getargs): When there is an incorrect number of arguments, make it
13671 an error, and report it GNUlically thanks to `usage ()'.
13672
13673 2002-10-18 Paul Eggert <eggert@twinsun.com>
13674
13675 * data/glr.c (yyreportParseError): Don't assume that sprintf
13676 yields the length of the printed string, as this is not true
13677 on SunOS 4.1.4. Reported by Peter Klein.
13678
13679 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13680 * tests/conflicts.at (%nonassoc and eof): Likewise.
13681 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13682
13683 2002-10-17 Akim Demaille <akim@epita.fr>
13684
13685 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13686 * src/getargs.c (trace_types, trace_args): Adjust.
13687 * src/reader.c (grammar_current_rule_prec_set)
13688 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13689 Standardize error messages.
13690 And s/@prec/%prec/!
13691 (reader): Use trace_flag to enable scanner/parser debugging,
13692 instead of an adhoc scheme.
13693 * src/scan-gram.l: Remove trailing debugging code.
13694
13695 2002-10-16 Paul Eggert <eggert@twinsun.com>
13696
13697 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13698 MUSCLE_TAB_H.
13699
13700 * NEWS: Officially drop support for building Bison with K&R C,
13701 since it didn't work anyway and it's not worth worrying about.
13702 * Makefile.maint (wget_files): Remove ansi2knr.c.
13703 (ansi2knr.c-url_prefix): Remove.
13704 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13705 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13706 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13707
13708 2002-10-15 Paul Eggert <eggert@twinsun.com>
13709
13710 Stop using the "enum_" trick for K&R-style function definitions;
13711 it confused me, and I was the author! Instead, assume that people
13712 who want to use K&R C compilers (when using these modules in GCC,
13713 perhaps?) will run ansi2knr.
13714
13715 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13716 All uses of "enum_" changed to "enum ".
13717 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13718 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13719
13720 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13721 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13722 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13723 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13724 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13725 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13726 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13727 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13728 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13729 Use function prototypes; this removes the need for declaring
13730 static functions simply to provide their prototypes.
13731 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13732 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13733 bitset_count_, bitset_create, bitset_dump, bitset_first,
13734 bitset_free, bitset_init, bitset_last, bitset_next,
13735 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13736 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13737 bitset_print, bitset_release_memory, bitset_toggle_,
13738 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13739 debug_bitset): Likewise.
13740 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13741 * lib/bitset_stats.c (bitset_log_histogram_print,
13742 bitset_percent_histogram_print, bitset_stats_and,
13743 bitset_stats_and_cmp, bitset_stats_and_or,
13744 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13745 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13746 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13747 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13748 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13749 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13750 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13751 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13752 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13753 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13754 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13755 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13756 bitset_stats_zero): Likewise.
13757 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13758 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13759 bitsetv_dump, debug_bitsetv): Likewise.
13760 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13761 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13762 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13763 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13764 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13765 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13766 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13767 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13768 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13769 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13770 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13771 Likewise.
13772 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13773 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13774 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13775 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13776 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13777 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13778 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13779 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13780 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13781 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13782 lbitset_xor_cmp, lbitset_zero): Likewise.
13783
13784 2002-10-14 Akim Demaille <akim@epita.fr>
13785
13786 Version 1.75.
13787
13788 2002-10-14 Akim Demaille <akim@epita.fr>
13789
13790 * tests/Makefile.am (maintainer-check-posix): New.
13791
13792 2002-10-14 Akim Demaille <akim@epita.fr>
13793
13794 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13795 member.
13796
13797 2002-10-14 Akim Demaille <akim@epita.fr>
13798
13799 * src/tables.c (table_ninf_remap): base -> tab.
13800 Reported by Matt Rosing.
13801
13802 2002-10-14 Paul Eggert <eggert@twinsun.com>
13803
13804 * tests/action.at, tests/calc.at, tests/conflicts.at,
13805 tests/cxx-type.at, tests/headers.at, tests/input.at,
13806 tests/regression.at, tests/synclines.at, tests/torture.at:
13807 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13808 so that the tests still work even if POSIXLY_CORRECT is set.
13809 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13810
13811 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13812 for portability to K&R hosts. Fix typo: signed char is guaranteed
13813 only to 127, not to 128.
13814 * data/glr.c (yysigned_char): New type.
13815 * data/yacc.c (yysigned_char): Likewise.
13816 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13817
13818 2002-10-13 Paul Eggert <eggert@twinsun.com>
13819
13820 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13821 true due to limited range of data type" warning from GCC.
13822
13823 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13824 by wrapping enum yytokentype's definition inside #ifndef
13825 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13826
13827 2002-10-13 Akim Demaille <akim@epita.fr>
13828
13829 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13830 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13831
13832 2002-10-13 Akim Demaille <akim@epita.fr>
13833
13834 * Makefile.maint: Update from Autoconf 2.54.
13835 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13836
13837 2002-10-13 Akim Demaille <akim@epita.fr>
13838
13839 * src/print.c (print_state): Separate the list of solved conflicts
13840 from the other items.
13841 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13842
13843 2002-10-13 Akim Demaille <akim@epita.fr>
13844
13845 Let nondeterministic skeletons be usable with deterministic
13846 tables.
13847
13848 With the patch, GAWK compiled by GCC without -O2 passes its test
13849 suite using a GLR parser driven by LALR tables. It fails with -O2
13850 because `struct stat' gives two different answers on my machine:
13851 88 (definition of an auto var) and later 96 (memset on this var).
13852 Hence the stack is badly corrumpted. The headers inclusion is to
13853 blame: if I move the awk.h inclusion before GLR's system header
13854 inclusion, the two struct stat have the same size.
13855
13856 * src/tables.c (pack_table): Always create conflict_table.
13857 (token_actions): Always create conflict_list.
13858 * data/glr.c (YYFLAG): Remove, unused.
13859
13860 2002-10-13 Akim Demaille <akim@epita.fr>
13861
13862 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13863 (O0FLAGS): New.
13864 (VALGRIND, GXX): New.
13865 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13866 * tests/bison.in: Run $PREBISON a pre-command.
13867 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13868 (maintainer-check-g++): New.
13869 * Makefile.am (maintainer-check): New.
13870
13871 2002-10-13 Akim Demaille <akim@epita.fr>
13872
13873 * data/glr.c: Formatting changes.
13874 Tweak some trace messages to match yacc.c's.
13875
13876 2002-10-13 Akim Demaille <akim@epita.fr>
13877
13878 GLR parsers sometimes raise parse errors instead of performing the
13879 default reduction.
13880 Reported by Charles-Henry de Boysson.
13881
13882 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13883 check the length of the traces when %glr.
13884 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13885 GLR's traces.
13886 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13887 Test GLR parsers.
13888 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13889 (yyltype): Remove the yy prefix from the member names.
13890 (yytable): Complete its comment.
13891 (yygetLRActions): Map error action number from YYTABLE from
13892 YYTABLE_NINF to 0.
13893 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13894 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13895 not satisfying as we could compare an YYACTION computed from
13896 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13897 only value for error actions.
13898 (yyreportParseError): In verbose parse error messages, don't issue
13899 `error' in the list of expected tokens.
13900 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13901 next action to perform to match glr.c's decoding.
13902 (yytable): Complete its comment.
13903
13904 2002-10-13 Paul Eggert <eggert@twinsun.com>
13905
13906 Fix problem reported by Henrik Grubbstroem in
13907 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13908 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13909 because the Bison parser reads the second action before reducing
13910 the first one.
13911 * src/scan-gram.l (rule_length): New static var.
13912 Use it to keep track of the rule length in the scanner, since
13913 we can't expect the parser to be in lock-step sync with the scanner.
13914 (handle_action_dollar, handle_action_at): Use this var.
13915 * tests/actions.at (Exotic Dollars): Test for the problem.
13916
13917 2002-10-12 Paul Eggert <eggert@twinsun.com>
13918
13919 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13920 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13921 Include <sys/time.h> when checking for clock_t and struct tms.
13922 Use same include order as source.
13923 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13924 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13925
13926 * lib/timevar.c: Update copyright date and clarify comments.
13927 (get_time) [IN_GCC]: Keep the GCC version for reference.
13928
13929 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13930 GCC version as of today, then merge Bison's changes.
13931 Change "GCC" to "Bison" in copyright notice. timevar.def's
13932 author is Akim, so change that too.
13933
13934 * src/reader.c (grammar_current_rule_check):
13935 Don't worry about the default action if $$ is untyped.
13936 Prevents bogus warnings reported by Jim Gifford in
13937 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13938
13939 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13940 * data/glr.c, data/lalr1.cc, data/yacc.c:
13941 Output token definitions before the first part of user declarations.
13942 Fixes compatibility problem reported by Jim Gifford for kbd in
13943 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13944
13945 2002-10-11 Paul Eggert <eggert@twinsun.com>
13946
13947 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13948 (yyparse): here. This undoes some of the 2002-07-25 change.
13949 Compatibility problem reported by Ralf S. Engelschall with
13950 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13951
13952 2002-10-11 Akim Demaille <akim@epita.fr>
13953
13954 * tests/regression.at Characters Escapes): New.
13955 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13956 characters.
13957 Reported by Jan Nieuwenhuizen.
13958
13959 2002-10-11 Akim Demaille <akim@epita.fr>
13960
13961 * po/id.po: New.
13962
13963 2002-10-10 Paul Eggert <eggert@twinsun.com>
13964
13965 Portability fixes for bitsets; this also avoids several GCC
13966 warnings.
13967
13968 * lib/abitset.c: Include <stddef.h>, for offsetof.
13969 * lib/lbitset.c: Likewise.
13970
13971 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13972 properly for vectors of objects. Do not assume that adding a
13973 header size to a multiple of a word size yields a value that is
13974 properly aligned for the whole union.
13975 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13976
13977 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13978 unique names for structures.
13979 * lib/ebitset.c (ebitset_bytes): Likewise.
13980 * lib/lbitset.c (lbitset_bytes): Likewise.
13981
13982 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13983 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13984 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13985 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13986 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13987 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13988 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13989 to improve the type-checking that GCC can do.
13990 * lib/bitset.c (bitset_op4_cmp): Likewise.
13991 * lib/bitset_stats.c (bitset_stats_count,
13992 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13993 bitset_stats_copy, bitset_stats_disjoint_p,
13994 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13995 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13996 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13997 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13998 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13999 bitset_stats_andn_or_cmp, bitset_stats_or_and,
14000 bitset_stats_or_and_cmp): Likewise.
14001 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
14002 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
14003 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
14004 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
14005
14006 * lib/abitset.h: Include bitset.h, not bbitset.h.
14007 * lib/ebitset.h: Likewise.
14008 * lib/lbitset.h: Likewise.
14009
14010 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
14011 All instances of parameters of type enum bitset_opts are now of
14012 type enum_bitset_opts, to conform to the C Standard, and similarly
14013 for enum_bitset_type.
14014 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
14015 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
14016
14017 Do not use "struct bitset_struct" to mean different things in
14018 different modules. Not only is this confusing, it violates
14019 the C Standard, which requires that structure types in different
14020 modules must be compatible if one is to be passed to the other.
14021 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
14022 All instances of "struct bitset_struct *" replaced with "bitset".
14023 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
14024 (union bitset_union, struct abitset_struct, struct ebitset_struct,
14025 struct lbitset_struct, struct bitset_stats_struct): New types.
14026 All uses of struct bitset_struct changed to union bitset_union,
14027 etc.
14028 * lib/abitset.c (struct abitset_struct, abitset,
14029 struct bitset_struct): Remove.
14030 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
14031 struct bitset_struct): Remove.
14032 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
14033 bitset_struct): Remove.
14034 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
14035 Likewise.
14036
14037 Do not call a function of type T using a call that assumes the
14038 function is of a different type U. Standard C requires that a
14039 function must be called with a type that is compatible with its
14040 definition.
14041 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14042 New decls.
14043 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
14044 New functions.
14045 * lib/ebitset.c (PFV): Remove.
14046 * lib/lbitset.c (PFV): Likewise.
14047 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
14048 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
14049 decls.
14050 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
14051 (ebitset_vtable): Use them.
14052 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
14053 lbitset_xor): New functions.
14054 (lbitset_vtable): Use them.
14055
14056 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
14057 Declare.
14058
14059 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
14060 GCC warning.
14061 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
14062 Use offsetof, for simplicity.
14063
14064 2002-10-06 Paul Eggert <eggert@twinsun.com>
14065
14066 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
14067 the same width as int. This reapplies a hunk of the 2002-08-12 patch
14068 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
14069 which was inadvertently undone by the 2002-09-30 patch.
14070 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
14071 the same width as int.
14072
14073 2002-10-04 Paul Eggert <eggert@twinsun.com>
14074
14075 Version 1.50.
14076
14077 * configure.ac (AC_INIT), NEWS: Increment version number.
14078
14079 * doc/bison.texinfo: Minor spelling, grammar, and white space
14080 fixes.
14081 (Symbols): Mention that any negative value returned from yylex
14082 signifies end-of-input. Warn about negative chars. Mention
14083 the portable Standard C character set.
14084
14085 The GNU coding standard says CFLAGS and YFLAGS are reserved
14086 for the installer to set.
14087 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
14088 * src/Makefile.am (AM_CFLAGS): Likewise.
14089 (AM_YFLAGS): Renamed from YFLAGS.
14090
14091 Fix some MAX and MIN problems.
14092 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
14093 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
14094 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
14095 * src/reader.c (reader): Use it.
14096
14097 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
14098 POSIX 1003.1-2001 has removed fgrep.
14099
14100 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14101
14102 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
14103 interpreted as signed.
14104 * lib/ebitset.c (ebitset_list): Fix bug.
14105
14106 2002-10-01 Paul Eggert <eggert@twinsun.com>
14107
14108 More fixes for 64-bit hosts and large bitsets.
14109
14110 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
14111 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
14112 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
14113 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
14114 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
14115 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
14116 bitset_count_): Likewise.
14117 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
14118 bitset_first, bitset_last): Likewise.
14119 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
14120 bitset_stats_list_reverse, bitset_stats_size,
14121 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
14122 Likewise.
14123 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14124 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
14125 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
14126 bitsetv_reflexive_transitive_closure): Likewise.
14127 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
14128 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
14129 Likewise.
14130 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
14131 Likewise.
14132
14133 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
14134 Use size_t, not unsigned int, to count bytes.
14135 * lib/abitset.h (abitset_bytes): Likewise.
14136 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
14137 Likewise.
14138 * lib/bitset.h (bitset_bytes): Likewise.
14139 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
14140 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
14141 * lib/bitsetv.c (bitsetv_alloc): Likewise.
14142 * lib/ebitset.c (ebitset_bytes): Likewise.
14143 * lib/ebitset.h (ebitset_bytes): Likewise.
14144 * lib/lbitset.c (lbitset_bytes): Likewise.
14145 * lib/lbitset.h (lbitset_bytes): Likewise.
14146
14147 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
14148 abitset_subset_p, abitset_disjoint_p, abitset_and,
14149 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
14150 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
14151 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
14152 abitset_or_and, abitset_or_and_cmp):
14153 Use bitset_windex instead of unsigned int.
14154 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14155 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
14156 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
14157 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
14158 Likewise.
14159 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
14160
14161 * lib/bitset.c (bitset_print):
14162 Use proper printf formats for widths of integer types.
14163 * lib/bitset_stats.c (bitset_percent_histogram_print,
14164 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
14165 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
14166 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14167 * lib/lbitset.c (lbitset_bytes): Likewise.
14168
14169 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14170 BITSET_SIZE_MAX): New macros.
14171 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14172 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14173 to BITSET_WINDEX_MAX.
14174
14175 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14176 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14177 since we now return the bitset_bindex type (not int).
14178
14179 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14180 when computing sizes.
14181 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14182
14183 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14184 and avoid cast to unsigned.
14185
14186 2002-09-30 Akim Demaille <akim@epita.fr>
14187
14188 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14189 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14190 Updates from Michael Hayes.
14191
14192 2002-09-30 Art Haas <ahaas@neosoft.com>
14193
14194 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14195 invocations.
14196 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14197 defined.
14198
14199 2002-09-27 Akim Demaille <akim@epita.fr>
14200
14201 Version 1.49c.
14202
14203 2002-09-27 Akim Demaille <akim@epita.fr>
14204
14205 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14206 (Because of AC_LIBSOURCE).
14207
14208 2002-09-27 Akim Demaille <akim@epita.fr>
14209
14210 Playing with Autoscan.
14211
14212 * configure.ac: Remove the old LIBOBJ tweaks.
14213 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14214 * lib/strrchr.c: New.
14215 * lib/strtol.c: New, from the Coreutils 4.5.1.
14216
14217 2002-09-27 Akim Demaille <akim@epita.fr>
14218
14219 Playing with Autoscan.
14220
14221 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14222 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14223 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14224 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14225 Coreutils 4.5.1.
14226
14227 2002-09-24 Akim Demaille <akim@epita.fr>
14228
14229 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14230 (Frequently Asked Questions, Parser Stack Overflow): New.
14231
14232 2002-09-13 Akim Demaille <akim@epita.fr>
14233
14234 Playing with autoscan.
14235
14236 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14237 * src/files.c (skeleton_find): Remove, unused.
14238 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14239 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14240
14241 2002-09-13 Akim Demaille <akim@epita.fr>
14242
14243 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14244 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14245
14246 2002-09-13 Akim Demaille <akim@epita.fr>
14247
14248 * configure.ac: Require 2.54.
14249 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14250 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14251 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14252 Remove, provided by Autoconf macros.
14253
14254 2002-09-12 Akim Demaille <akim@epita.fr>
14255
14256 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14257
14258 2002-09-12 Akim Demaille <akim@epita.fr>
14259
14260 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14261 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14262 Reported by Martin Mokrejs.
14263
14264 2002-09-10 Akim Demaille <akim@epita.fr>
14265
14266 * src/parse-gram.y: Associate a human readable string to each
14267 token type.
14268 * tests/regression.at (Invalid inputs): Adjust.
14269
14270 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14271
14272 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14273 with an Autoconf-2.5x style configure.ac.
14274
14275 2002-09-06 Paul Eggert <eggert@twinsun.com>
14276
14277 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14278 exception applies only to yacc.c. This is a modification of a
14279 patch originally suggested by Akim Demaille.
14280
14281 2002-09-06 Akim Demaille <akim@epita.fr>
14282
14283 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14284 here to...
14285 * data/yacc.c: here.
14286
14287 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14288 LocationType.
14289 (b4_ltype): Default to yy::Location from location.hh.
14290
14291 2002-09-04 Jim Meyering <jim@meyering.net>
14292
14293 * data/yacc.c: Guard the declaration of yytoknum also with
14294 `#ifdef YYPRINT', so it is declared only when used.
14295
14296 2002-09-04 Akim Demaille <akim@epita.fr>
14297
14298 * configure.in: Rename as...
14299 * configure.ac: this.
14300 Bump to 1.49c.
14301
14302 2002-09-04 Akim Demaille <akim@epita.fr>
14303
14304 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14305 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14306 translate maintainer only messages.
14307
14308 2002-08-12 Paul Eggert <eggert@twinsun.com>
14309
14310 Version 1.49b.
14311
14312 * Makefile.am (SUBDIRS): Remove intl.
14313 (DISTCLEANFILES): Remove.
14314 * NEWS: Mention that GNU M4 is now required. Clarify what is
14315 meant by "larger grammars". Mention the pt_BR translation.
14316 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14317 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14318 Bump version from 0.11.2 to 0.11.5.
14319 (BISON_PREREQ_STAGE): Remove.
14320 (AM_GNU_GETTEXT): Use external gettext.
14321 (AC_OUTPUT): Remove intl/Makefile.
14322
14323 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14324
14325 * data/glr.c: Include string.h, for strlen.
14326 (yyreportParseError): Use size_t for yysize.
14327 (yy_yypstack): No longer nested inside yypstates, as nested
14328 functions are not portable. Do not assume size_t is the
14329 same width as int.
14330 (yypstates): Do not assume that ptrdiff_t is the same width
14331 as int, and similarly for yyposn and YYINDEX.
14332
14333 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14334
14335 * lib/Makefile.am (INCLUDES): Do not include from the intl
14336 directory, which has been removed.
14337 * src/Makefile.am (INCLUDES): Likewise.
14338
14339 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14340 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14341 New vars.
14342
14343 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14344 * tests/Makefile.am (EXTRA_DIST): Likewise.
14345
14346 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14347 Do not assume that bitset_windex is the same width as unsigned.
14348
14349 * lib/abitset.c (abitset_unused_clear): Do not assume that
14350 bitset_word is the same width as int.
14351 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14352 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14353 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14354 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14355 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14356
14357 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14358 portability to one's complement hosts!).
14359 * lib/ebitset.c (ebitset_op1): Likewise.
14360 * lib/lbitset.c (lbitset_op1): Likewise.
14361
14362 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14363 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14364 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14365 Sync with fileutils.
14366 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14367 lib/gettext.h: Sync with diffutils.
14368
14369 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14370 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14371
14372 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14373 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14374 check for void *.
14375
14376 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14377 size_t; the old version tried to do this but casted improperly.
14378 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14379 (bitset_test): Now returns int, not unsigned long.
14380
14381 * lib/bitset_stats.c: Include "gettext.h".
14382 (_): New macro.
14383 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14384 name locals "index", as it generates unnecessary warnings on some
14385 hosts that have an "index" function.
14386
14387 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14388 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14389 they need translation.
14390 * src/LR0.c (state_list_append, new_itemsets, get_state,
14391 append_states, generate_states): Likewise.
14392 * src/assoc.c (assoc_to_string): Likewise.
14393 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14394 * src/gram.c (grammar_dump): Likewise.
14395 * src/injections.c (injections_compute): Likewise.
14396 * src/lalr.c (lookaheads_print): Likewise.
14397 * src/relation.c (relation_transpose): Likewise.
14398 * src/scan-gram.l: Likewise.
14399 * src/tables.c (table_grow, pack_vector): Likewise.
14400
14401 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14402 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14403 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14404 * m4/mbstate_t.m4: Sync with fileutils.
14405 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14406
14407 * po/LINGUAS: Add pt_BR.
14408 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14409 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14410 lib/timevar.c.
14411 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14412 manual recommends.
14413 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14414
14415 * src/complain.c (strerror_r): Remove decl; not needed.
14416 (strerror): Use same pattern as ../lib/error.c.
14417
14418 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14419
14420 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14421
14422 * src/main.c (main): Cast result of bindtextdomain and textdomain
14423 to void, to avoid a GCC warning when --disable-nls is in effect.
14424
14425 * src/scan-gram.l: Use strings rather than escapes when possible,
14426 to minimize the number of warnings from xgettext.
14427 (handle_action_dollar, handle_action_at): Don't use isdigit,
14428 as it mishandles negative chars and it may not work as expected
14429 outside the C locale.
14430
14431 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14432 this is a GCC extension and is not portable to other compilers.
14433
14434 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14435 Do not include <ctype.h>; no longer needed.
14436 Do not include <malloc.h>; no longer needed (and generates
14437 warnings on OpenBSD 3.0).
14438
14439 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14440 it's not portable.
14441
14442 * tests/regression.at: Do not use 'cc -c input.c -o input';
14443 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14444
14445 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14446 exit status as failure, not just exit status 1. Sun C exits
14447 with status 2 sometimes.
14448
14449 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14450 Use it for the two large tests.
14451
14452 2002-08-02 Akim Demaille <akim@epita.fr>
14453
14454 * src/conflicts.c (conflicts_output): Don't output rules never
14455 reduced here, since anyway that computation doesn't work.
14456 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14457 (rule_useless_p, rule_never_reduced_p): New.
14458 (grammar_rules_partial_print): Use a filter instead of a range.
14459 Display the title only if needed.
14460 (grammar_rules_print): Adjust.
14461 (grammar_rules_never_reduced_report): New.
14462 * src/tables.c (action_row): Move the computation of rules never
14463 reduced to...
14464 (token_actions): here.
14465 * src/main.c (main): Make the parser before making the report, so
14466 that rules never reduced are computed.
14467 Call grammar_rules_never_reduced_report.
14468 * src/print.c (print_results): Report rules never reduced.
14469 * tests/conflicts.at, tests/reduce.at: Adjust.
14470
14471 2002-08-01 Akim Demaille <akim@epita.fr>
14472
14473 Instead of attaching lookaheads and duplicating the rules being
14474 reduced by a state, attach the lookaheads to the reductions.
14475
14476 * src/state.h (state_t): Remove the `lookaheads',
14477 `lookaheads_rule' member.
14478 (reductions_t): Add a `lookaheads' member.
14479 Use a regular array for the `rules'.
14480 * src/state.c (reductions_new): Initialize the lookaheads member
14481 to 0.
14482 (state_rule_lookaheads_print): Adjust.
14483 * src/state.h, src/state.c (state_reductions_find): New.
14484 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14485 (count_rr_conflicts): Adjust.
14486 * src/lalr.c (LArule): Remove.
14487 (add_lookback_edge): Adjust.
14488 (state_lookaheads_count): New.
14489 (states_lookaheads_initialize): Merge into...
14490 (initialize_LA): this.
14491 (lalr_free): Adjust.
14492 * src/main.c (main): Don't free nullable and derives too early: it
14493 is used by --verbose.
14494 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14495
14496 2002-08-01 Akim Demaille <akim@epita.fr>
14497
14498 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14499 `rule_number_t**'.
14500 (set_derives, free_derives): Rename as...
14501 (derives_compute, derives_free): this.
14502 Adjust all dependencies.
14503 * src/nullable.c (set_nullable, free_nullable): Rename as...
14504 (nullable_compute, nullable_free): these.
14505 (rule_list_t): Store rule_t *, not rule_number_t.
14506 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14507 pointers, instead of their numbers.
14508 * src/main.c (main): Call nullable_free, and derives_free earlier,
14509 as they were lo longer used.
14510
14511 2002-08-01 Akim Demaille <akim@epita.fr>
14512
14513 * lib/timevar.c (get_time): Include children time.
14514 * src/lalr.h (LA, LArule): Don't export them: used with the
14515 state_t.
14516 * src/lalr.c (LA, LArule): Static.
14517 * src/lalr.h, src/lalr.c (lalr_free): New.
14518 * src/main.c (main): Call it.
14519 * src/tables.c (pack_vector): Check whether loc is >= to the
14520 table_size, not >.
14521 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14522 (tables_generate): do it, since that's also it which allocates
14523 them.
14524 Don't free LA and LArule, main does.
14525
14526 2002-07-31 Akim Demaille <akim@epita.fr>
14527
14528 Separate parser tables computation and output.
14529
14530 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14531 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14532 (yydefgoto, yydefact, high): Move to...
14533 * src/tables.h, src/tables.c: here.
14534 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14535 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14536 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14537 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14538 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14539 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14540 (action_row, save_row, token_actions, save_column, default_goto)
14541 (goto_actions, sort_actions, matching_state, pack_vector)
14542 (table_ninf_remap, pack_table, prepare_actions): Move to...
14543 * src/tables.c: here.
14544 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14545 * src/output.c (token_actions, output_base, output_conflicts)
14546 (output_check): Merge into...
14547 (prepare_actions): this.
14548 (actions_output): Rename as...
14549 (user_actions_output): this.
14550 * src/main.c (main): Call tables_generate and tables_free.
14551
14552 2002-07-31 Akim Demaille <akim@epita.fr>
14553
14554 Steal GCC's --time-report support.
14555
14556 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14557 stolen/adjusted from GCC.
14558 * m4/stage.m4: Remove time related checks.
14559 * m4/timevar.m4: New.
14560 * configure.in: Adjust.
14561 * src/system.h: Adjust to using timevar.h.
14562 * src/getargs.h, src/getargs.c: Support trace_time for
14563 --trace=time.
14564 * src/main.c (stage): Remove.
14565 (main): Replace `stage' invocations with timevar calls.
14566 * src/output.c: Insert pertinent timevar calls.
14567
14568 2002-07-31 Akim Demaille <akim@epita.fr>
14569
14570 Let --trace have arguments.
14571
14572 * src/getargs.h (enum trace_e): New.
14573 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14574 (long_options, short_options): --trace/-T takes an optional
14575 argument.
14576 Change all the uses of trace_flag to reflect the new flags.
14577 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14578
14579 Strengthen `stage' portability.
14580
14581 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14582 * configure.in: Use it.
14583 Don't check for malloc.h and sys/times.h.
14584 * src/system.h: Include them when appropriate.
14585 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14586 times and struct tms are available.
14587
14588 2002-07-30 Akim Demaille <akim@epita.fr>
14589
14590 In verbose parse error message, don't report `error' as an
14591 expected token.
14592 * tests/actions.at (Printers and Destructors): Adjust.
14593 * tests/calc.at (Calculator $1): Adjust.
14594 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14595 error message, do not report the parser accepts the error token in
14596 that state.
14597
14598 2002-07-30 Akim Demaille <akim@epita.fr>
14599
14600 Normalize conflict related messages.
14601
14602 * src/complain.h, src/complain.c (warn, complain): New.
14603 * src/conflicts.c (conflicts_print): Use them.
14604 (conflict_report_yacc): New, extracted from...
14605 (conflicts_print): here.
14606 * tests/conflicts.at, tests/existing.at: Adjust.
14607
14608 2002-07-30 Akim Demaille <akim@epita.fr>
14609
14610 Report rules which are never reduced by the parser: those hidden
14611 by conflicts.
14612
14613 * src/LR0.c (save_reductions): Don't make the final state too
14614 different: save its reduction (accept) instead of having a state
14615 without any action (no shift or goto, no reduce).
14616 Note: the final state is now a ``regular'' state, i.e., the
14617 parsers now contain `reduce 0' as default reduction.
14618 Nevertheless, since they decide to `accept' when yystate =
14619 final_state, they still will not reduce rule 0.
14620 * src/print.c (print_actions, print_reduction): Adjust.
14621 * src/output.c (action_row): Track reduced rules.
14622 (token_actions): Report rules never reduced.
14623 * tests/conflicts.at, tests/regression.at: Adjust.
14624
14625 2002-07-30 Akim Demaille <akim@epita.fr>
14626
14627 `stage' was accidently included in a previous patch.
14628 Initiate its autoconfiscation.
14629
14630 * configure.in: Look for malloc.h and sys/times.h.
14631 * src/main.c (stage): Adjust.
14632 Report only when trace_flag.
14633
14634 2002-07-29 Akim Demaille <akim@epita.fr>
14635
14636 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14637 state_number_t.
14638 (errs_t): symbol_t*, not symbol_number_t.
14639 (reductions_t): rule_t*, not rule_number_t.
14640 (FOR_EACH_SHIFT): New.
14641 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14642 * src/print.c, src/print_graph.c: Adjust.
14643
14644 2002-07-29 Akim Demaille <akim@epita.fr>
14645
14646 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14647
14648 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14649 (endtoken, accept): these.
14650 * src/reader.c (reader): Set endtoken's default tag to "$end".
14651 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14652 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14653 Adjust.
14654
14655 2002-07-29 Akim Demaille <akim@epita.fr>
14656
14657 * src/reduce.c (reduce_grammar): When the language is empty,
14658 complain about the start symbol, not the axiom.
14659 Use its location.
14660 * tests/reduce.at (Empty Language): New.
14661
14662 2002-07-26 Akim Demaille <akim@epita.fr>
14663
14664 * src/reader.h, src/reader.c (gram_error): ... can't get
14665 yycontrol without making too strong assumptions on the parser
14666 itself.
14667 * src/output.c (prepare_tokens): Use the real 0th value of
14668 token_translations instead of `0'.
14669 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14670 visible here.
14671 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14672 for the time being: %locations ought to provide it to yyerror.
14673
14674 2002-07-25 Akim Demaille <akim@epita.fr>
14675
14676 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14677 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14678 * tests/regression.at (Web2c Actions): Adjust.
14679
14680 2002-07-25 Akim Demaille <akim@epita.fr>
14681
14682 Stop storing rules from 1 to nrules + 1.
14683
14684 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14685 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14686 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14687 Iterate from 0 to nrules.
14688 Use rule_number_as_item_number and item_number_as_rule_number.
14689 Adjust to `derive' now containing possibly 0.
14690 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14691 Handle the `- 1' part in rule numbers from/to item numbers.
14692 * src/conflicts.c (log_resolution): Fix the message which reversed
14693 shift and reduce.
14694 * src/output.c (action_row): Initialize default_rule to -1.
14695 (token_actions): Adjust.
14696 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14697 expected output.
14698 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14699
14700 2002-07-25 Akim Demaille <akim@epita.fr>
14701
14702 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14703 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14704 (b4_c_knr_arg_decl): New.
14705 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14706 yyreport_parse_error.
14707
14708 2002-07-25 Akim Demaille <akim@epita.fr>
14709
14710 * data/yacc.c (yyreport_parse_error): New, extracted from...
14711 (yyparse): here.
14712 (yydestruct, yysymprint): Move above yyparse.
14713 Be K&R compliant.
14714
14715 2002-07-25 Akim Demaille <akim@epita.fr>
14716
14717 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14718 replace...
14719 (b4_sint_type, b4_uint_type): these.
14720 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14721 * tests/regression.at (Web2c Actions): Adjust.
14722
14723 2002-07-25 Akim Demaille <akim@epita.fr>
14724
14725 * src/gram.h (TIEM_NUMBER_MAX): New.
14726 (item_number_of_rule_number, rule_number_of_item_number): Rename
14727 as...
14728 (rule_number_as_item_number, item_number_as_rule_number): these.
14729 Adjust dependencies.
14730 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14731 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14732 (symbol_number_to_vector_number): New.
14733 (order): Of vector_number_t* type.
14734 (base_t, BASE_MAX, BASE_MIN): New.
14735 (froms, tos, width, pos, check): Of base_t type.
14736 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14737 (actrow): Of action_number_t type.
14738 (conflrow): Of unsigned int type.
14739 (table_ninf, base_ninf): New.
14740 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14741 (muscle_insert_int_table, muscle_insert_base_table)
14742 (muscle_insert_rule_number_table): New.
14743 (prepare_tokens): Output `toknum' as int_table.
14744 (action_row): Returns a rule_number_t.
14745 Use ACTION_MIN, not SHRT_MIN.
14746 (token_actions): yydefact is rule_number_t*.
14747 (table_ninf_remap): New.
14748 (pack_table): Use it for `base' and `table'.
14749 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14750 replaced with...
14751 (YYPACT_NINF, YYTABLE_NINF): these.
14752 (yypact, yytable): Compute their types instead of hard-coded
14753 `short'.
14754 * tests/regression.at (Web2c Actions): Adjust.
14755
14756 2002-07-19 Akim Demaille <akim@epita.fr>
14757
14758 * src/scan-gram.l (id): Can start with an underscore.
14759
14760 2002-07-16 Akim Demaille <akim@epita.fr>
14761
14762 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14763 Adjust all former `associativity' dependencies.
14764 * src/symtab.c (symbol_new): Default associativity is `undef', not
14765 `right'.
14766 (symbol_check_alias_consistence): Adjust.
14767
14768 2002-07-09 Akim Demaille <akim@epita.fr>
14769
14770 * doc/bison.texinfo: Properly set the ``header'' part.
14771 Use @dircategory ``GNU programming tools'' as per Texinfo's
14772 documentation.
14773 Use @copying.
14774
14775 2002-07-09 Akim Demaille <akim@epita.fr>
14776
14777 * lib/quotearg.h: Protect against multiple inclusions.
14778 * src/location.h (location_t): Add a `file' member.
14779 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14780 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14781 `error_one_per_line' support.
14782
14783 2002-07-09 Akim Demaille <akim@epita.fr>
14784
14785 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14786 * src/reader.c (lineno): Remove.
14787 Adjust all dependencies.
14788 (get_merge_function): Take a location and use complain_at.
14789 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14790 * tests/regression.at (Invalid inputs, Mixing %token styles):
14791 Adjust.
14792
14793 2002-07-09 Akim Demaille <akim@epita.fr>
14794
14795 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14796 recovery rule, and forbid extensions when --yacc.
14797 (gram_error): Use complain_at.
14798 * src/reader.c (reader): Exit if there were parse errors.
14799
14800 2002-07-09 Akim Demaille <akim@epita.fr>
14801
14802 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14803 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14804 Reported by R Blake <blakers@mac.com>.
14805
14806 2002-07-09 Akim Demaille <akim@epita.fr>
14807
14808 * data/yacc.c: Output the copyright notive in the header.
14809
14810 2002-07-03 Akim Demaille <akim@epita.fr>
14811
14812 * src/output.c (froms, tos): Are state_number_t.
14813 (save_column): sp, sp1, and sp2 are state_number_t.
14814 (prepare): Rename `final' as `final_state_number', `nnts' as
14815 `nterms_number', `nrules' as `rules_number', `nstates' as
14816 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14817 unused.
14818 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14819 * data/lalr1.cc (nsym_): Remove, unused.
14820
14821 2002-07-03 Akim Demaille <akim@epita.fr>
14822
14823 * src/lalr.h, src/lalr.c (goto_number_t): New.
14824 * src/lalr.c (goto_list_t): New.
14825 Propagate them.
14826 * src/nullable.c (rule_list_t): New.
14827 Propagate.
14828 * src/types.h: Remove.
14829
14830 2002-07-03 Akim Demaille <akim@epita.fr>
14831
14832 * src/closure.c (print_fderives): Use rule_rhs_print.
14833 * src/derives.c (print_derives): Use rule_rhs_print.
14834 (rule_list_t): New, replaces `shorts'.
14835 (set_derives): Add comments.
14836 * tests/sets.at (Nullable, Firsts): Adjust.
14837
14838 2002-07-03 Akim Demaille <akim@epita.fr>
14839
14840 * src/output.c (prepare_actions): Free `tally' and `width'.
14841 (prepare_actions): Allocate and free `order'.
14842 * src/symtab.c (symbols_free): Free `symbols'.
14843 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14844 * src/output.c (m4_invoke): Move to...
14845 * src/scan-skel.l: here.
14846 (<<EOF>>): Close yyout, and free its name.
14847
14848 2002-07-03 Akim Demaille <akim@epita.fr>
14849
14850 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14851
14852 * src/LR0.c (new_state): Merge into...
14853 (state_list_append): this.
14854 (new_states): Merge into...
14855 (generate_states): here.
14856 (set_states): Don't ensure a proper `errs' state member here, do it...
14857 * src/conflicts.c (conflicts_solve): here.
14858 * src/state.h, src/state.c: Comment changes.
14859 (state_t): Rename member `shifts' as `transitions'.
14860 Adjust all dependencies.
14861 (errs_new): For consistency, also take the values as argument.
14862 (errs_dup): Remove.
14863 (state_errs_set): New.
14864 (state_reductions_set, state_transitions_set): Assert that no
14865 previous value was assigned.
14866 (state_free): New.
14867 (states_free): Use it.
14868 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14869 temporary storage: use `errs' and `nerrs' as elsewhere.
14870 (set_conflicts): Allocate and free this `errs'.
14871
14872 2002-07-02 Akim Demaille <akim@epita.fr>
14873
14874 * lib/libiberty.h: New.
14875 * lib: Update the bitset implementation from upstream.
14876 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14877 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14878 * src/main.c: Adjust bitset stats calls.
14879
14880 2002-07-01 Paul Eggert <eggert@twinsun.com>
14881
14882 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14883 char, so that negative chars don't collide with $.
14884
14885 2002-06-30 Akim Demaille <akim@epita.fr>
14886
14887 Have the GLR tests be `warning' checked, and fix the warnings.
14888
14889 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14890 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14891 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14892 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14893 (yyaddDeferredAction): static.
14894 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14895 (yyreportParseError): yyprefix is const.
14896 yytokenp is used only when verbose.
14897 (yy__GNUC__): Replace with __GNUC__.
14898 (yypdumpstack): yyi is size_t.
14899 (yypreference): Un-yy local variables and arguments, to avoid
14900 clashes with `yyr1'. Anyway, we are not in the user name space.
14901 (yytname_size): be an int, as is compared with ints.
14902 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14903 Use them.
14904 * tests/cxx-gram.at: Use quotation to protect $1.
14905 Use AT_COMPILE to enable warnings hunts.
14906 Prototype yylex and yyerror.
14907 `Use' argc.
14908 Include `string.h', not `strings.h'.
14909 Produce and prototype stmtMerge only when used.
14910 yylex takes a location.
14911
14912 2002-06-30 Akim Demaille <akim@epita.fr>
14913
14914 We spend a lot of time in quotearg, in particular when --verbose.
14915
14916 * src/symtab.c (symbol_get): Store a quoted version of the key.
14917 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14918 Adjust all callers.
14919
14920 2002-06-30 Akim Demaille <akim@epita.fr>
14921
14922 * src/state.h (reductions_t): Rename member `nreds' as num.
14923 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14924 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14925
14926 2002-06-30 Akim Demaille <akim@epita.fr>
14927
14928 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14929 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14930 (shifts_to): Rename as...
14931 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14932 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14933 (TRANSITION_IS_DISABLED, transitions_to): these.
14934
14935 2002-06-30 Akim Demaille <akim@epita.fr>
14936
14937 * src/print.c (print_shifts, print_gotos): Merge into...
14938 (print_transitions): this.
14939 (print_transitions, print_errs, print_reductions): Align the
14940 lookaheads columns.
14941 (print_core, print_transitions, print_errs, print_state,
14942 print_grammar): Output empty lines separator before, not after.
14943 (state_default_rule_compute): Rename as...
14944 (state_default_rule): this.
14945 * tests/conflicts.at (Defaulted Conflicted Reduction),
14946 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14947 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14948
14949 2002-06-30 Akim Demaille <akim@epita.fr>
14950
14951 Display items as we display rules.
14952
14953 * src/gram.h, src/gram.c (rule_lhs_print): New.
14954 * src/gram.c (grammar_rules_partial_print): Use it.
14955 * src/print.c (print_core): Likewise.
14956 * tests/conflicts.at (Defaulted Conflicted Reduction),
14957 (Unresolved SR Conflicts): Adjust.
14958 (Unresolved SR Conflicts): Adjust and rename as...
14959 (Resolved SR Conflicts): this, as was meant.
14960 * tests/regression.at (Web2c Report): Adjust.
14961
14962 2002-06-30 Akim Demaille <akim@epita.fr>
14963
14964 * src/print.c (state_default_rule_compute): New, extracted from...
14965 (print_reductions): here.
14966 Pessimize, but clarify the code.
14967 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14968
14969 2002-06-30 Akim Demaille <akim@epita.fr>
14970
14971 * src/output.c (action_row): Let default_rule be always a rule
14972 number.
14973
14974 2002-06-30 Akim Demaille <akim@epita.fr>
14975
14976 * src/closure.c (print_firsts, print_fderives, closure):
14977 Use BITSET_EXECUTE.
14978 * src/lalr.c (lookaheads_print): Likewise.
14979 * src/state.c (state_rule_lookaheads_print): Likewise.
14980 * src/print_graph.c (print_core): Likewise.
14981 * src/print.c (print_reductions): Likewise.
14982 * src/output.c (action_row): Likewise.
14983 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14984
14985 2002-06-30 Akim Demaille <akim@epita.fr>
14986
14987 * src/print_graph.c: Use report_flag.
14988
14989 2002-06-30 Akim Demaille <akim@epita.fr>
14990
14991 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14992 to...
14993 * src/relation.h, src/relation.c (traverse, relation_digraph)
14994 (relation_print, relation_transpose): New.
14995
14996 2002-06-30 Akim Demaille <akim@epita.fr>
14997
14998 * src/state.h, src/state.c (shifts_to): New.
14999 * src/lalr.c (build_relations): Use it.
15000
15001 2002-06-30 Akim Demaille <akim@epita.fr>
15002
15003 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
15004 (item_number_of_rule_number, rule_number_of_item_number): New.
15005 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
15006 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
15007 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
15008 Propagate their use.
15009 Much remains to be done, in particular wrt `shorts' from types.h.
15010
15011 2002-06-30 Akim Demaille <akim@epita.fr>
15012
15013 * src/symtab.c (symbol_new): Initialize the `printer' member.
15014
15015 2002-06-30 Akim Demaille <akim@epita.fr>
15016
15017 * src/LR0.c (save_reductions): Remove, replaced by...
15018 * src/state.h, src/state.c (state_reductions_set): New.
15019 (reductions, errs): Rename as...
15020 (reductions_t, errs_t): these.
15021 Adjust all dependencies.
15022
15023 2002-06-30 Akim Demaille <akim@epita.fr>
15024
15025 * src/LR0.c (state_list_t, state_list_append): New.
15026 (first_state, last_state): Now symbol_list_t.
15027 (this_state): Remove.
15028 (new_itemsets, append_states, save_reductions): Take a state_t as
15029 argument.
15030 (set_states, generate_states): Adjust.
15031 (save_shifts): Remove, replaced by...
15032 * src/state.h, src/state.c (state_shifts_set): New.
15033 (shifts): Rename as...
15034 (shifts_t): this.
15035 Adjust all dependencies.
15036 * src/state.h (state_t): Remove the `next' member.
15037
15038 2002-06-30 Akim Demaille <akim@epita.fr>
15039
15040 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
15041 escaped in slot 0.
15042
15043 2002-06-30 Akim Demaille <akim@epita.fr>
15044
15045 Use hash.h for the state hash table.
15046
15047 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
15048 (allocate_storage): Use state_hash_new.
15049 (free_storage): Use state_hash_free.
15050 (new_state, get_state): Adjust.
15051 * src/lalr.h, src/lalr.c (states): Move to...
15052 * src/states.h (state_t): Remove the `link' member, no longer
15053 used.
15054 * src/states.h, src/states.c: here.
15055 (state_hash_new, state_hash_free, state_hash_lookup)
15056 (state_hash_insert, states_free): New.
15057 * src/states.c (state_table, state_compare, state_hash): New.
15058 * src/output.c (output_actions): Do not free states now, since we
15059 still need to know the final_state number in `prepare', called
15060 afterwards. Do it...
15061 * src/main.c (main): here: call states_free after `output'.
15062
15063 2002-06-30 Akim Demaille <akim@epita.fr>
15064
15065 * src/state.h, src/state.c (state_new): New, extracted from...
15066 * src/LR0.c (new_state): here.
15067 * src/state.h (STATE_ALLOC): Move to...
15068 * src/state.c: here.
15069 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
15070 * src/state.h, src/state.c: here.
15071
15072 2002-06-30 Akim Demaille <akim@epita.fr>
15073
15074 * src/reader.c (gensym): Rename as...
15075 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
15076 (getsym): Rename as...
15077 (symbol_get): this.
15078
15079 2002-06-30 Akim Demaille <akim@epita.fr>
15080
15081 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
15082 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
15083 * src/output.c, src/print.c, src/print_graph.c: Propagate.
15084 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
15085
15086 2002-06-30 Akim Demaille <akim@epita.fr>
15087
15088 Make the test suite pass with warnings checked.
15089
15090 * tests/actions.at (Printers and Destructors): Improve.
15091 Avoid unsigned vs. signed issues.
15092 * tests/calc.at: Don't exercise the scanner here, do it...
15093 * tests/input.at (Torturing the Scanner): here.
15094
15095 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15096
15097 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
15098 reorganize first lines parallel to yacc.c.
15099
15100 2002-06-28 Akim Demaille <akim@epita.fr>
15101
15102 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
15103 (b4_token_enum, b4_token_defines): New, factored from...
15104 * data/lalr1.cc, data/yacc.c, glr.c: here.
15105
15106 2002-06-28 Akim Demaille <akim@epita.fr>
15107
15108 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
15109 unused variables.
15110 * src/output.c (merger_output): static.
15111
15112 2002-06-28 Akim Demaille <akim@epita.fr>
15113
15114 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
15115 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
15116 pacify GCC.
15117 * src/output.c (save_row): Initialize all the variables to pacify GCC.
15118
15119 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15120
15121 Accumulated changelog for new GLR parsing features.
15122
15123 * src/conflicts.c (count_total_conflicts): Change name to
15124 conflicts_total_count.
15125 * src/conflicts.h: Ditto.
15126 * src/output.c (token_actions): Use the new name.
15127 (output_conflicts): Change conflp => conflict_list_heads, and
15128 confl => conflict_list for better readability.
15129 * data/glr.c: Use the new names.
15130 * NEWS: Add self to GLR announcement.
15131
15132 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
15133
15134 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
15135 Akim Demaille.
15136
15137 * data/bison.glr: Change name to glr.c
15138 * data/glr.c: Renamed from bison.glr.
15139 * data/Makefile.am: Add glr.c
15140
15141 * src/getargs.c:
15142
15143 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
15144 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
15145
15146 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15147
15148 * data/bison.glr: Be sure to restore the
15149 current #line when returning to the skeleton contents after having
15150 exposed the input file's #line.
15151
15152 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15153
15154 * data/bison.glr: Bring up to date with changes to bison.simple.
15155
15156 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15157
15158 * data/bison.glr: Correct definitions that use b4_prefix.
15159 Various reformatting.
15160 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
15161 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
15162 yytokenp argument; now part of stack.
15163 (yychar): Define to behave as documented.
15164 (yyclearin): Ditto.
15165
15166 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15167
15168 * src/reader.h: Add declaration for free_merger_functions.
15169
15170 * src/reader.c (merge_functions): New variable.
15171 (get_merge_function): New function.
15172 (free_merger_functions): New function.
15173 (readgram): Check for %prec that is not followed by a symbol.
15174 Handle %dprec and %merge declarations.
15175 (packgram): Initialize dprec and merger fields in rules array.
15176
15177 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15178 conflict_list_cnt, conflict_list_free): New variables.
15179 (table_grow): Also grow conflict_table.
15180 (prepare_rules): Output dprec and merger tables.
15181 (conflict_row): New function.
15182 (action_row): Output conflict lists for GLR parser. Don't use
15183 default reduction in conflicted states for GLR parser so that there
15184 are spaces for the conflict lists.
15185 (save_row): Also save conflict information.
15186 (token_actions): Allocate conflict list.
15187 (merger_output): New function.
15188 (pack_vector): Pack conflict table, too.
15189 (output_conflicts): New function to output yyconflp and yyconfl.
15190 (output_check): Allocate conflict_tos.
15191 (output_actions): Output conflict tables, also.
15192 (output_skeleton): Output b4_mergers definition.
15193 (prepare): Output b4_max_rhs_length definition.
15194 Use 'bison.glr' as default skeleton for GLR parsers.
15195
15196 * src/gram.c (glr_parser): New flag.
15197 (grammar_free): Call free_merger_functions.
15198
15199 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15200 all pairs of conflicting reductions, rather than just all tokens
15201 causing conflicts. Needed to size conflict tables.
15202 (conflicts_output): Modify call to count_rr_conflicts for new
15203 interface.
15204 (conflicts_print): Ditto.
15205 (count_total_conflicts): New function.
15206
15207 * src/reader.h (merger_list): New type.
15208 (merge_functions): New variable.
15209
15210 * src/lex.h (tok_dprec, tok_merge): New token types.
15211
15212 * src/gram.h (rule_s): Add dprec and merger fields.
15213 (glr_parser): New flag.
15214
15215 * src/conflicts.h (count_total_conflicts): New function.
15216
15217 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15218
15219 * doc/bison.texinfo (Generalized LR Parsing): New section.
15220 (GLR Parsers): New section.
15221 (Language and Grammar): Mention GLR parsing.
15222 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15223 Correct typo ("tge" -> "the").
15224
15225 * data/bison.glr: New skeleton for GLR parsing.
15226
15227 * tests/cxx-gram.at: New tests for GLR parsing.
15228
15229 * tests/testsuite.at: Include cxx-gram.at.
15230
15231 * tests/Makefile.am: Add cxx-gram.at.
15232
15233 * src/parse-gram.y:
15234
15235 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15236
15237 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15238
15239 2002-06-27 Akim Demaille <akim@epita.fr>
15240
15241 * src/options.h, src/options.c: Remove.
15242 * src/getargs.c (short_options, long_options): New.
15243
15244 2002-06-27 Akim Demaille <akim@epita.fr>
15245
15246 * data/bison.simple, data/bison.c++: Rename as...
15247 * data/yacc.c, data/lalr1.cc: these.
15248 * doc/bison.texinfo (Environment Variables): Remove.
15249
15250 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15251
15252 * src/getargs.c (report_argmatch): Initialize strtok().
15253
15254 2002-06-20 Akim Demaille <akim@epita.fr>
15255
15256 * data/bison.simple (b4_symbol_actions): New, replaces...
15257 (b4_symbol_destructor, b4_symbol_printer): these.
15258 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15259 user token numbers.
15260
15261 2002-06-20 Akim Demaille <akim@epita.fr>
15262
15263 * data/bison.simple (yydestructor): Rename as...
15264 (yydestruct): this.
15265
15266 2002-06-20 Akim Demaille <akim@epita.fr>
15267
15268 * src/symtab.h, src/symtab.c (symbol_type_set)
15269 (symbol_destructor_set, symbol_precedence_set): The location is
15270 the last argument.
15271 Adjust all callers.
15272
15273 2002-06-20 Akim Demaille <akim@epita.fr>
15274
15275 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15276 internals.
15277 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15278 Takes a location.
15279 * src/symtab.h, src/symtab.c (symbol_class_set)
15280 (symbol_user_token_number_set): Likewise.
15281 Adjust all callers.
15282 Promote complain_at.
15283 * tests/input.at (Type Clashes): Adjust.
15284
15285 2002-06-20 Akim Demaille <akim@epita.fr>
15286
15287 * data/bison.simple (YYLEX): Fix the declaration when
15288 %pure-parser.
15289
15290 2002-06-20 Akim Demaille <akim@epita.fr>
15291
15292 * data/bison.simple (yysymprint): Don't print the token number,
15293 just its name.
15294 * tests/actions.at (Destructors): Rename as...
15295 (Printers and Destructors): this.
15296 Also exercise %printer.
15297
15298 2002-06-20 Akim Demaille <akim@epita.fr>
15299
15300 * data/bison.simple (YYDSYMPRINT): New.
15301 Use it to remove many of the #if YYDEBUG/if (yydebug).
15302
15303 2002-06-20 Akim Demaille <akim@epita.fr>
15304
15305 * src/symtab.h, src/symtab.c (symbol_t): printer and
15306 printer_location are new members.
15307 (symbol_printer_set): New.
15308 * src/parse-gram.y (PERCENT_PRINTER): New token.
15309 Handle its associated rule.
15310 * src/scan-gram.l: Adjust.
15311 (handle_destructor_at, handle_destructor_dollar): Rename as...
15312 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15313 * src/output.c (symbol_printers_output): New.
15314 (output_skeleton): Call it.
15315 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15316 since there are already many grammar files with a user `yyprint'.
15317 Replace the calls to YYPRINT to calls to yysymprint.
15318 * tests/calc.at: Adjust.
15319 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15320 taking advantage of parser very internal details (stack size!).
15321
15322 2002-06-20 Akim Demaille <akim@epita.fr>
15323
15324 * src/scan-gram.l: Complete the scanner with the missing patterns
15325 to pacify Flex.
15326 Use `quote' and `symbol_tag_get' where appropriate.
15327
15328 2002-06-19 Akim Demaille <akim@epita.fr>
15329
15330 * tests/actions.at (Destructors): Augment to test locations.
15331 * data/bison.simple (yydestructor): Pass it the current location
15332 if locations are enabled.
15333 Prototype only when __STDC__ or C++.
15334 Change the argument names to move into the yy name space: there is
15335 user code here.
15336
15337 2002-06-19 Akim Demaille <akim@epita.fr>
15338
15339 * data/bison.simple (b4_pure_if): New.
15340 Use it instead of #ifdef YYPURE.
15341
15342 2002-06-19 Akim Demaille <akim@epita.fr>
15343
15344 * data/bison.simple (b4_location_if): New.
15345 Use it instead of #ifdef YYLSP_NEEDED.
15346
15347 2002-06-19 Akim Demaille <akim@epita.fr>
15348
15349 Prepare @$ in %destructor, but currently don't bind it in the
15350 skeleton, as %location use is not cleaned up yet.
15351
15352 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15353 (handle_action_at): New.
15354 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15355 a braced_code_t and a location as additional arguments.
15356 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15357 unquote one when outputting `b4_dollar_dollar'.
15358 Adjust callers.
15359 * data/bison.simple (b4_eval): Remove.
15360 (b4_symbol_destructor): Adjust.
15361 * tests/input.at (Invalid @n): Adjust.
15362
15363 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15364
15365 * doc/bison.texinfo: Document ability to have multiple
15366 prologue sections.
15367
15368 2002-06-18 Akim Demaille <akim@epita.fr>
15369
15370 * src/files.c (compute_base_names): When computing the output file
15371 names from the input file name, strip the directory part.
15372
15373 2002-06-18 Akim Demaille <akim@epita.fr>
15374
15375 * data/bison.simple.new: Comment changes.
15376 Reported by Andreas Schwab.
15377
15378 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15379
15380 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15381 there are no `label `yyoverflowlab' defined but not used' warnings
15382 when yyoverflow is defined.
15383
15384 2002-06-18 Akim Demaille <akim@epita.fr>
15385
15386 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15387 new member.
15388 (symbol_destructor_set): Adjust.
15389 * src/output.c (symbol_destructors_output): Output the destructor
15390 locations.
15391 Output the symbol name.
15392 * data/bison.simple (b4_symbol_destructor): Adjust.
15393
15394 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15395 and Akim Demaille <akim@epita.fr>
15396
15397 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15398 what's left on the stack when the error recovery hits EOF.
15399 * tests/actions.at (Destructors): Complete to exercise this case.
15400
15401 2002-06-17 Akim Demaille <akim@epita.fr>
15402
15403 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15404 arguments is really empty, not only equal to `[]'.
15405 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15406 member.
15407 (symbol_destructor_set): New.
15408 * src/output.c (symbol_destructors_output): New.
15409 * src/reader.h (brace_code_t, current_braced_code): New.
15410 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15411 (handle_dollar): Rename as...
15412 (handle_action_dollar): this.
15413 (handle_destructor_dollar): New.
15414 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15415 (grammar_declaration): Use it.
15416 * data/bison.simple (yystos): Is always defined.
15417 (yydestructor): New.
15418 * tests/actions.at (Destructors): New.
15419 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15420
15421 2002-06-17 Akim Demaille <akim@epita.fr>
15422
15423 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15424 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15425 rule_length only when needed.
15426 * src/output.c (actions_output, token_definitions_output): Output
15427 the full M4 block.
15428 * src/symtab.c: Don't access directly to the symbol tag, use
15429 symbol_tag_get.
15430 * src/parse-gram.y: Use symbol_list_free.
15431
15432 2002-06-17 Akim Demaille <akim@epita.fr>
15433
15434 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15435 (symbol_list_prepend, get_type_name): Move to...
15436 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15437 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15438 Adjust all callers.
15439 (symbol_list_free): New.
15440 * src/scan-gram.l (handle_dollar): Takes a location.
15441 * tests/input.at (Invalid $n): Adjust.
15442
15443 2002-06-17 Akim Demaille <akim@epita.fr>
15444
15445 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15446 (symbol_list_prepend): New.
15447 * src/parse-gram.y (%union): `list' is a new member.
15448 (symbols.1): New, replaces...
15449 (terms_to_prec.1, nterms_to_type.1): these.
15450 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15451 Take a location as additional argument.
15452 Adjust all callers.
15453
15454 2002-06-15 Akim Demaille <akim@epita.fr>
15455
15456 * src/parse-gram.y: Move %token in the declaration section so that
15457 we don't depend upon CVS Bison.
15458
15459 2002-06-15 Akim Demaille <akim@epita.fr>
15460
15461 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15462 * src/print.c (print_core): Use it.
15463
15464 2002-06-15 Akim Demaille <akim@epita.fr>
15465
15466 * src/conflicts.c (log_resolution): Accept the rule involved in
15467 the sr conflicts instead of the lookahead number that points to
15468 that rule.
15469 (flush_reduce): Accept the current lookahead vector as argument,
15470 instead of the index in LA.
15471 (resolve_sr_conflict): Accept the current number of lookahead
15472 bitset to consider for the STATE, instead of the index in LA.
15473 (set_conflicts): Adjust.
15474 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15475
15476 2002-06-15 Akim Demaille <akim@epita.fr>
15477
15478 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15479 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15480 Adjust all dependencies.
15481 * src/lalr.c (initialize_lookaheads): Split into...
15482 (states_lookaheads_count, states_lookaheads_initialize): these.
15483 (lalr): Adjust.
15484
15485 2002-06-15 Akim Demaille <akim@epita.fr>
15486
15487 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15488 out of...
15489 (grammar_rules_print): here.
15490 * src/reduce.c (reduce_output): Use it.
15491 * tests/reduce.at (Useless Rules, Reduced Automaton)
15492 (Underivable Rules): Adjust.
15493
15494 2002-06-15 Akim Demaille <akim@epita.fr>
15495
15496 Copy BYacc's nice way to report the grammar.
15497
15498 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15499 New.
15500 Don't print the rules' location, it is confusing and useless.
15501 (rule_print): Use grammar_rhs_print.
15502 * src/print.c (print_grammar): Use grammar_rules_print.
15503
15504 2002-06-15 Akim Demaille <akim@epita.fr>
15505
15506 Complete and rationalize `useless thing' warnings.
15507
15508 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15509 (symbol_tag_print): New.
15510 Use them everywhere in place of accessing directly the tag member.
15511 * src/gram.h, src/gram.c (rule_print): New.
15512 Use it where a rule used to be printed `by hand'.
15513 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15514 (reduce_grammar_tables): Report the useless rules.
15515 (reduce_print): Useless things are a warning, not an error.
15516 Report it as such.
15517 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15518 (Reduced Automaton, Underivable Rules): Adjust.
15519 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15520 * tests/conflicts.at (Unresolved SR Conflicts)
15521 (Solved SR Conflicts): Adjust.
15522
15523 2002-06-15 Akim Demaille <akim@epita.fr>
15524
15525 Let symbols have a location.
15526
15527 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15528 (getsym): Adjust.
15529 Adjust all callers.
15530 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15531 Use location_t, not int.
15532 * src/symtab.c (symbol_check_defined): Take advantage of the
15533 location.
15534 * tests/regression.at (Invalid inputs): Adjust.
15535
15536 2002-06-15 Akim Demaille <akim@epita.fr>
15537
15538 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15539 (input): Don't try to initialize yylloc here, do it in the
15540 scanner.
15541 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15542 * src/gram.h (rule_t): Change line and action_line into location
15543 and action_location, of location_t type.
15544 Adjust all dependencies.
15545 * src/location.h, src/location.c (empty_location): New.
15546 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15547 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15548 (grammar_current_rule_symbol_append)
15549 (grammar_current_rule_action_append): Expect a location as argument.
15550 * src/reader.c (grammar_midrule_action): Adjust to attach an
15551 action's location as dummy symbol location.
15552 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15553 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15554 the line numbers.
15555
15556 2002-06-14 Akim Demaille <akim@epita.fr>
15557
15558 Grammar declarations may be found in the grammar section.
15559
15560 * src/parse-gram.y (rules_or_grammar_declaration): New.
15561 (declarations): Each declaration may end with a semicolon, not
15562 just...
15563 (grammar_declaration): `"%union"'.
15564 (grammar): Branch to rules_or_grammar_declaration.
15565
15566 2002-06-14 Akim Demaille <akim@epita.fr>
15567
15568 * src/main.c (main): Invoke scanner_free.
15569
15570 2002-06-14 Akim Demaille <akim@epita.fr>
15571
15572 * src/output.c (m4_invoke): Extracted from...
15573 (output_skeleton): here.
15574 Free tempfile.
15575
15576 2002-06-14 Akim Demaille <akim@epita.fr>
15577
15578 * src/parse-gram.y (directives, directive, gram)
15579 (grammar_directives, precedence_directives, precedence_directive):
15580 Rename as...
15581 (declarations, declaration, grammar, grammar_declaration)
15582 (precedence_declaration, precedence_declarator): these.
15583 (symbol_declaration): New.
15584
15585 2002-06-14 Akim Demaille <akim@epita.fr>
15586
15587 * src/files.c (action_obstack): Remove, unused.
15588 (output_obstack): Remove it, and all its dependencies, as it is no
15589 longer needed.
15590 * src/reader.c (epilogue_set): Build the epilogue in the
15591 muscle_obstack.
15592 * src/output.h, src/output.c (muscle_obstack): Move to...
15593 * src/muscle_tab.h, src/muscle_tab.h: here.
15594 (muscle_init): Initialize muscle_obstack.
15595 (muscle_free): New.
15596 * src/main.c (main): Call it.
15597
15598 2002-06-14 Akim Demaille <akim@epita.fr>
15599
15600 * src/location.h: New, extracted from...
15601 * src/reader.h: here.
15602 * src/Makefile.am (noinst_HEADERS): Merge into
15603 (bison_SOURCES): this.
15604 Add location.h.
15605 * src/parse-gram.y: Use location_t instead of Bison's.
15606 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15607 Use location_t instead of ints.
15608
15609 2002-06-14 Akim Demaille <akim@epita.fr>
15610
15611 * data/bison.simple, data/bison.c++: Be sure to restore the
15612 current #line when returning to the skeleton contents after having
15613 exposed the input file's #line.
15614
15615 2002-06-12 Akim Demaille <akim@epita.fr>
15616
15617 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15618 eager.
15619 * tests/actions.at (Exotic Dollars): New.
15620
15621 2002-06-12 Akim Demaille <akim@epita.fr>
15622
15623 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15624 ['"/] too eagerly.
15625 * tests/input.at (Torturing the Scanner): New.
15626
15627 2002-06-11 Akim Demaille <akim@epita.fr>
15628
15629 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15630 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15631 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15632 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15633 * src/reader.c (reader): Use it.
15634
15635 2002-06-11 Akim Demaille <akim@epita.fr>
15636
15637 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15638 Adjust all callers.
15639 (scanner_last_string_free): New.
15640
15641 2002-06-11 Akim Demaille <akim@epita.fr>
15642
15643 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15644 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15645 (last_string, YY_OBS_FREE): New.
15646 Use them when returning an ID.
15647
15648 2002-06-11 Akim Demaille <akim@epita.fr>
15649
15650 Have Bison grammars parsed by a Bison grammar.
15651
15652 * src/reader.c, src/reader.h (prologue_augment): New.
15653 * src/reader.c (copy_definition): Remove.
15654
15655 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15656 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15657 (grammar_current_rule_prec_set, grammar_current_rule_check)
15658 (grammar_current_rule_symbol_append)
15659 (grammar_current_rule_action_append): Export.
15660 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15661 (symbol_list_action_append): Remove.
15662 Hook the routines from reader.
15663 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15664 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15665
15666 * src/reader.c (read_declarations): Remove, unused.
15667
15668 * src/parse-gram.y: Handle the epilogue.
15669 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15670 (grammar_start_symbol_set): this.
15671 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15672 * src/reader.c (readgram): Remove, unused.
15673 (reader): Adjust to insert eoftoken and axiom where appropriate.
15674
15675 * src/reader.c (copy_dollar): Replace with...
15676 * src/scan-gram.h (handle_dollar): this.
15677 * src/parse-gram.y: Remove `%thong'.
15678
15679 * src/reader.c (copy_at): Replace with...
15680 * src/scan-gram.h (handle_at): this.
15681
15682 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15683 New.
15684
15685 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15686 time being.
15687
15688 * src/reader.h, src/reader.c (grammar_rule_end): New.
15689
15690 * src/parse.y (current_type, current_class): New.
15691 Implement `%nterm', `%token' support.
15692 Merge `%term' into `%token'.
15693 (string_as_id): New.
15694 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15695 type name.
15696
15697 * src/parse-gram.y: Be sure to handle properly the beginning of
15698 rules.
15699
15700 * src/parse-gram.y: Handle %type.
15701 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15702
15703 * src/parse-gram.y: More directives support.
15704 * src/options.c: No longer handle source directives.
15705
15706 * src/parse-gram.y: Fix %output.
15707
15708 * src/parse-gram.y: Handle %union.
15709 Use the prologue locations.
15710 * src/reader.c (parse_union_decl): Remove.
15711
15712 * src/reader.h, src/reader.c (epilogue_set): New.
15713 * src/parse-gram.y: Use it.
15714
15715 * data/bison.simple, data/bison.c++: b4_stype is now either not
15716 defined, then default to int, or to the contents of %union,
15717 without `union' itself.
15718 Adjust.
15719 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15720
15721 * src/output.c (actions_output): Don't output braces, as they are
15722 already handled by the scanner.
15723
15724 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15725 characters to themselves.
15726
15727 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15728 that the epilogue has a proper #line.
15729
15730 * src/parse-gram.y: Handle precedence/associativity.
15731
15732 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15733 a terminal.
15734 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15735 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15736 at all to define terminals that cannot be emitted.
15737
15738 * src/scan-gram.l: Escape M4 characters.
15739
15740 * src/scan-gram.l: Working properly with escapes in user
15741 strings/characters.
15742
15743 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15744 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15745 grammar.
15746 Use more modest sizes, as for the time being the parser does not
15747 release memory, and therefore the process swallows a huge amount
15748 of memory.
15749
15750 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15751 stricter %token grammar.
15752
15753 * src/symtab.h (associativity): Add `undef_assoc'.
15754 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15755 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15756
15757 * tests/regression.at (Invalid %directive): Remove, as it is now
15758 meaningless.
15759 (Invalid inputs): Adjust to the new error messages.
15760 (Token definitions): The new grammar doesn't allow too many
15761 eccentricities.
15762
15763 * src/lex.h, src/lex.c: Remove.
15764 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15765 (copy_character, copy_string2, copy_string, copy_identifier)
15766 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15767 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15768 (parse_action): Remove.
15769 * po/POTFILES.in: Adjust.
15770
15771 2002-06-11 Akim Demaille <akim@epita.fr>
15772
15773 * src/reader.c (parse_action): Don't store directly into the
15774 rule's action member: return the action as a string.
15775 Don't require `rule_length' as an argument: compute it.
15776 (grammar_current_rule_symbol_append)
15777 (grammar_current_rule_action_append): New, eved out from
15778 (readgram): here.
15779 Remove `action_flag', `rulelength', unused now.
15780
15781 2002-06-11 Akim Demaille <akim@epita.fr>
15782
15783 * src/reader.c (grammar_current_rule_prec_set).
15784 (grammar_current_rule_check): New, eved out from...
15785 (readgram): here.
15786 Remove `xaction', `first_rhs': useless.
15787 * tests/input.at (Type clashes): New.
15788 * tests/existing.at (GNU Cim Grammar): Adjust.
15789
15790 2002-06-11 Akim Demaille <akim@epita.fr>
15791
15792 * src/reader.c (grammar_midrule_action): New, Eved out from
15793 (readgram): here.
15794
15795 2002-06-11 Akim Demaille <akim@epita.fr>
15796
15797 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15798 New.
15799 (readgram): Use them as replacement of inlined code, crule and
15800 crule1.
15801
15802 2002-06-11 Akim Demaille <akim@epita.fr>
15803
15804 * src/reader.c (grammar_end, grammar_symbol_append): New.
15805 (readgram): Use them.
15806 Make the use of `p' as local as possible.
15807
15808 2002-06-10 Akim Demaille <akim@epita.fr>
15809
15810 GCJ's parser requires the tokens to be defined before the prologue.
15811
15812 * data/bison.simple: Output the token definition before the user's
15813 prologue.
15814 * tests/regression.at (Braces parsing, Duplicate string)
15815 (Mixing %token styles): Check the output from bison.
15816 (Early token definitions): New.
15817
15818 2002-06-10 Akim Demaille <akim@epita.fr>
15819
15820 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15821 assigning twice the same user number to a token, so that we can
15822 use it in...
15823 * src/lex.c (lex): here.
15824 Also use `symbol_class_set' instead of hand written code.
15825 * src/reader.c (parse_assoc_decl): Likewise.
15826
15827 2002-06-10 Akim Demaille <akim@epita.fr>
15828
15829 * src/symtab.c, src/symtab.c (symbol_class_set)
15830 (symbol_user_token_number_set): New.
15831 * src/reader.c (parse_token_decl): Use them.
15832 Use a switch instead of ifs.
15833 Use a single argument.
15834
15835 2002-06-10 Akim Demaille <akim@epita.fr>
15836
15837 Remove `%thong' support as it is undocumented, unused, duplicates
15838 `%token's job, and creates useless e-mail traffic with people who
15839 want to know what it is, why it is undocumented, unused, and
15840 duplicates `%token's job.
15841
15842 * src/reader.c (parse_thong_decl): Remove.
15843 * src/options.c (option_table): Remove "thong".
15844 * src/lex.h (tok_thong): Remove.
15845
15846 2002-06-10 Akim Demaille <akim@epita.fr>
15847
15848 * src/symtab.c, src/symtab.c (symbol_type_set)
15849 (symbol_precedence_set): New.
15850 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15851 (value_components_used): Remove, unused.
15852
15853 2002-06-09 Akim Demaille <akim@epita.fr>
15854
15855 Move symbols handling code out of the reader.
15856
15857 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15858 (axiom): Move to...
15859 * src/symtab.h, src/symtab.c: here.
15860
15861 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15862 * src/reader.c (startval): Rename as...
15863 * src/symtab.h, src/symtab.c (startsymbol): this.
15864 * src/reader.c: Adjust.
15865
15866 * src/reader.c (symbol_check_defined, symbol_make_alias)
15867 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15868 (token_translations_init)
15869 Move to...
15870 * src/symtab.c: here.
15871 * src/reader.c (packsymbols): Move to...
15872 * src/symtab.h, src/symtab.c (symbols_pack): here.
15873 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15874 argument.
15875
15876 2002-06-03 Akim Demaille <akim@epita.fr>
15877
15878 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15879 then statements.
15880
15881 2002-06-03 Akim Demaille <akim@epita.fr>
15882
15883 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15884 structs with non literals.
15885 * src/scan-skel.l: never-interactive.
15886 * src/conflicts.c (enum conflict_resolution_e): No trailing
15887 comma.
15888 * src/getargs.c (usage): Split long literal strings.
15889 Reported by Hans Aberg.
15890
15891 2002-05-28 Akim Demaille <akim@epita.fr>
15892
15893 * data/bison.c++: Use C++ ostreams.
15894 (cdebug_): New member.
15895
15896 2002-05-28 Akim Demaille <akim@epita.fr>
15897
15898 * src/output.c (output_skeleton): Be sure to allocate enough room
15899 for `/' _and_ for `\0' in full_skeleton.
15900
15901 2002-05-28 Akim Demaille <akim@epita.fr>
15902
15903 * data/bison.c++: Catch up with bison.simple:
15904 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15905 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15906 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15907 and popping traces.
15908
15909 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15910
15911 * src/output.c (output_skeleton): Put an explicit path in front of
15912 the skeleton file name, rather than relying on the -I directory,
15913 to partially alleviate effects of having a skeleton file lying around
15914 in the current directory.
15915
15916 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15917
15918 * src/conflicts.c (log_resolution): Correct typo:
15919 obstack_printf should be obstack_fgrow1.
15920
15921 2002-05-26 Akim Demaille <akim@epita.fr>
15922
15923 * src/state.h (state_t): `solved_conflicts' is a new member.
15924 * src/LR0.c (new_state): Set it to 0.
15925 * src/conflicts.h, src/conflicts.c (print_conflicts)
15926 (free_conflicts, solve_conflicts): Rename as...
15927 (conflicts_print, conflicts_free, conflicts_solve): these.
15928 Adjust callers.
15929 * src/conflicts.c (enum conflict_resolution_e)
15930 (solved_conflicts_obstack): New, used by...
15931 (log_resolution): this.
15932 Adjust to attach the conflict resolution to each state.
15933 Complete the description with the precedence/associativity
15934 information.
15935 (resolve_sr_conflict): Adjust.
15936 * src/print.c (print_state): Output its solved_conflicts.
15937 * tests/conflicts.at (Unresolved SR Conflicts)
15938 (Solved SR Conflicts): Exercise --report=all.
15939
15940 2002-05-26 Akim Demaille <akim@epita.fr>
15941
15942 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15943 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15944 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15945 (token_number_t, item_number_as_token_number)
15946 (token_number_as_item_number, muscle_insert_token_number_table):
15947 Rename as...
15948 (symbol_number_t, item_number_as_symbol_number)
15949 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15950 these, since it is more appropriate.
15951
15952 2002-05-26 Akim Demaille <akim@epita.fr>
15953
15954 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15955 `Error:' lines.
15956 * data/bison.simple (yystos) [YYDEBUG]: New.
15957 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15958 error recovery.
15959 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15960
15961 2002-05-25 Akim Demaille <akim@epita.fr>
15962
15963 * doc/bison.texinfo (Debugging): Split into...
15964 (Tracing): this new section, its former contents, and...
15965 (Understanding): this new section.
15966 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15967 by...
15968 (report_flag): this.
15969 Adjust all dependencies.
15970 (report_args, report_types, report_argmatch): New.
15971 (usage, getargs): Report/support -r, --report.
15972 * src/options.h
15973 (struct option_table_struct): Rename as..,
15974 (struct option_table_s): this.
15975 Rename the `set_flag' member to `flag' to match with getopt_long's
15976 struct.
15977 * src/options.c (option_table): Split verbose into an entry for
15978 %verbose, and another for --verbose.
15979 Support --report/-r, so remove -r from the obsolete --raw.
15980 * src/print.c: Attach full item sets and lookaheads reports to
15981 report_flag instead of trace_flag.
15982 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15983
15984 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15985 and Paul Eggert <eggert@twinsun.com>
15986
15987 * data/bison.simple (yyparse): Correct error handling to conform to
15988 POSIX and yacc. Specifically, after syntax error is discovered,
15989 do not reduce further before shifting the error token.
15990 Clean up the code a bit by removing the labels yyerrdefault,
15991 yyerrhandle, yyerrpop.
15992 * NEWS: Document the above.
15993
15994 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15995
15996 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15997 type; it isn't always big enough, since it doesn't necessarily
15998 include non-terminals.
15999 (yytranslate): Expand definition of yy_token_number_type, so that
16000 the latter can be removed.
16001 (yy_token_number_type): Remove, only one use.
16002 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
16003 don't use TokenNumberType as element type.
16004
16005 * tests/regression.at: Modify expected output to agree with change
16006 to yyr1 and yytranslate.
16007
16008 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
16009
16010 * src/reader.c (parse_action): Use copy_character instead of
16011 obstack_1grow.
16012
16013 2002-05-13 Akim Demaille <akim@epita.fr>
16014
16015 * tests/regression.at (Token definitions): Prototype yylex and
16016 yyerror.
16017
16018 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16019
16020 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
16021 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
16022 32-bit arithmetic.
16023 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
16024
16025 2002-05-07 Akim Demaille <akim@epita.fr>
16026
16027 * tests/synclines.at: Be sure to prototype yylex and yyerror to
16028 avoid GCC warnings.
16029
16030 2002-05-07 Akim Demaille <akim@epita.fr>
16031
16032 Kill GCC warnings.
16033
16034 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
16035 over the RHS of each rule.
16036 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
16037 * src/state.h (state_t): Member `nitems' is unsigned short.
16038 * src/LR0.c (get_state): Adjust.
16039 * src/reader.c (packgram): Likewise.
16040 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
16041 `Type'.
16042 (muscle_insert_int_table): Remove, unused.
16043 (prepare_rules): Remove `max'.
16044
16045 2002-05-06 Akim Demaille <akim@epita.fr>
16046
16047 * src/closure.c (print_firsts): Display of the symbol tags.
16048 (bitmatrix_print): Move to...
16049 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
16050 here.
16051 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
16052
16053 2002-05-06 Akim Demaille <akim@epita.fr>
16054
16055 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
16056 hash_do_for_each.
16057
16058 2002-05-06 Akim Demaille <akim@epita.fr>
16059
16060 * src/LR0.c (new_state, get_state): Instead of using the global
16061 `kernel_size' and `kernel_base', have two new arguments:
16062 `core_size' and `core'.
16063 Adjust callers.
16064
16065 2002-05-06 Akim Demaille <akim@epita.fr>
16066
16067 * src/reader.c (packgram): No longer end `ritem' with a 0
16068 sentinel: it is not used.
16069
16070 2002-05-05 Akim Demaille <akim@epita.fr>
16071
16072 New experimental feature: display the lookaheads in the report and
16073 graph.
16074
16075 * src/print (print_core): When --trace-flag, display the rules
16076 lookaheads.
16077 * src/print_graph.c (print_core): Likewise.
16078 Swap the arguments.
16079 Adjust caller.
16080
16081 2002-05-05 Akim Demaille <akim@epita.fr>
16082
16083 * tests/torture.at (Many lookaheads): New test.
16084
16085 2002-05-05 Akim Demaille <akim@epita.fr>
16086
16087 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
16088 (GENERATE_MUSCLE_INSERT_TABLE): this.
16089 (output_int_table, output_unsigned_int_table, output_short_table)
16090 (output_token_number_table, output_item_number_table): Replace with...
16091 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
16092 (muscle_insert_short_table, muscle_insert_token_number_table)
16093 (muscle_insert_item_number_table): these.
16094 Adjust all callers.
16095 (prepare_tokens): Don't free `translations', since...
16096 * src/reader.h, src/reader.c (grammar_free): do it.
16097 Move to...
16098 * src/gram.h, src/gram.c (grammar_free): here.
16099 * data/bison.simple, data/bison.c++: b4_token_number_max is now
16100 b4_translate_max.
16101
16102 2002-05-05 Akim Demaille <akim@epita.fr>
16103
16104 * src/output.c (output_unsigned_int_table): New.
16105 (prepare_rules): `i' is unsigned.
16106 `prhs', `rline', `r2' are unsigned int.
16107 Rename muscle `rhs_number_max' as `rhs_max'.
16108 Output muscles `prhs_max', `rline_max', and `r2_max'.
16109 Free rline and r1.
16110 * data/bison.simple, data/bison.c++: Adjust to use these muscles
16111 to compute types instead of constant types.
16112 * tests/regression.at (Web2c Actions): Adjust.
16113
16114 2002-05-04 Akim Demaille <akim@epita.fr>
16115
16116 * src/symtab.h (SALIAS, SUNDEF): Rename as...
16117 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
16118 Adjust dependencies.
16119 * src/output.c (token_definitions_output): Be sure not to output a
16120 `#define 'a'' when fed with `%token 'a' "a"'.
16121 * tests/regression.at (Token definitions): New.
16122
16123 2002-05-03 Paul Eggert <eggert@twinsun.com>
16124
16125 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
16126 for K&R C.
16127
16128 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
16129
16130 * Makefile.am (SUBDIRS): Remove intl.
16131 (EXTRA_DIST): Add config/config.rpath.
16132
16133 2002-05-03 Akim Demaille <akim@epita.fr>
16134
16135 * data/bison.simple (m4_if): Don't output empty enums.
16136 And actually, output valid enum definitions :(.
16137
16138 2002-05-03 Akim Demaille <akim@epita.fr>
16139
16140 * configure.bat: Remove, completely obsolete.
16141 * Makefile.am (EXTRA_DIST): Adjust.
16142 Don't distribute config.rpath...
16143 * config/Makefile.am (EXTRA_DIST): Do it.
16144
16145 2002-05-03 Akim Demaille <akim@epita.fr>
16146
16147 * configure.in (GETTEXT_VERSION): New.
16148 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
16149
16150 2002-05-03 Akim Demaille <akim@epita.fr>
16151
16152 * data/bison.simple (b4_token_enum): New.
16153 (b4_token_defines): Use it to output tokens both as #define and
16154 enums.
16155 Suggested by Paul Eggert.
16156 * src/output.c (token_definitions_output): Don't output spurious
16157 white spaces.
16158
16159 2002-05-03 Akim Demaille <akim@epita.fr>
16160
16161 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16162
16163 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
16164
16165 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
16166 Update the stack class, give a try to deque as the default container.
16167
16168 2002-05-02 Akim Demaille <akim@epita.fr>
16169
16170 * data/bison.simple (yyparse): Do not implement @$ = @1.
16171 (YYLLOC_DEFAULT): Adjust to do it.
16172 * doc/bison.texinfo (Location Default Action): Fix.
16173
16174 2002-05-02 Akim Demaille <akim@epita.fr>
16175
16176 * src/reader.c (parse_braces): Merge into...
16177 (parse_action): this.
16178
16179 2002-05-02 Akim Demaille <akim@epita.fr>
16180
16181 * configure.in (ALL_LINGUAS): Remove.
16182 * po/LINGUAS, hr.po: New.
16183
16184 2002-05-02 Akim Demaille <akim@epita.fr>
16185
16186 Remove the so called hairy (semantic) parsers.
16187
16188 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16189 * src/gram.h, src/gram.c (semantic_parser): Remove.
16190 (rule_t): Remove the guard and guard_line members.
16191 * src/lex.h (token_t): remove tok_guard.
16192 * src/options.c (option_table): Remove %guard and %semantic_parser
16193 support.
16194 * src/output.c, src/output.h (guards_output): Remove.
16195 (prepare): Adjust.
16196 (token_definitions_output): Don't output the `T'
16197 tokens (???).
16198 (output_skeleton): Don't output the guards.
16199 * src/files.c, src/files.c (attrsfile): Remove.
16200 * src/reader.c (symbol_list): Remove the guard and guard_line
16201 members.
16202 Adjust dependencies.
16203 (parse_guard): Remove.
16204 * data/bison.hairy: Remove.
16205 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16206 BISON_HAIRY.
16207
16208 2002-05-02 Akim Demaille <akim@epita.fr>
16209
16210 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16211 (parse_guard): Rename the formal argument `stack_offset' as
16212 `rule_length', which is more readable.
16213 Adjust callers.
16214 (copy_at, copy_dollar): Instead of outputting the hard coded
16215 values of $$, $n and so forth, output invocation to b4_lhs_value,
16216 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16217 Note: this patch partially drops `semantic-parser' support: it
16218 always does `rule_length - n', where semantic parsers ought to
16219 always use `-n'.
16220 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16221 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16222
16223 2002-05-02 Akim Demaille <akim@epita.fr>
16224
16225 * configure.in (AC_INIT): Bump to 1.49b.
16226 (AM_INIT_AUTOMAKE): Short invocation.
16227
16228 2002-05-02 Akim Demaille <akim@epita.fr>
16229
16230 Version 1.49a.
16231
16232 2002-05-01 Akim Demaille <akim@epita.fr>
16233
16234 * src/skeleton.h: Remove.
16235
16236 2002-05-01 Akim Demaille <akim@epita.fr>
16237
16238 * src/skeleton.h: Fix the #endif.
16239 Reported by Magnus Fromreide.
16240
16241 2002-04-26 Paul Eggert <eggert@twinsun.com>
16242
16243 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16244 Define if we define YYSTYPE and YYLTYPE, respectively.
16245 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16246
16247 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16248
16249 * src/scan-skel.l: Postprocess quadrigraphs.
16250
16251 * src/reader.c (copy_character): New function, used to output
16252 single characters while replacing `[' and `]' with quadrigraphs, to
16253 avoid troubles with M4 quotes.
16254 (copy_comment): Output characters with copy_character.
16255 (read_additionnal_code): Likewise.
16256 (copy_string2): Likewise.
16257 (copy_definition): Likewise.
16258
16259 * tests/calc.at: Exercise M4 quoting.
16260
16261 2002-04-25 Akim Demaille <akim@epita.fr>
16262
16263 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16264 between `!' and the command.
16265 Reported by Paul Eggert.
16266
16267 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16268
16269 * tests/calc.at: Exercise prologue splitting.
16270
16271 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16272 `b4_post_prologue' instead of `b4_prologue'.
16273
16274 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16275 muscles.
16276 (output): Free pre_prologue_obstack and post_prologue_obstack.
16277 * src/files.h, src/files.c (attrs_obstack): Remove.
16278 (pre_prologue_obstack, post_prologue_obstack): New.
16279 * src/reader.c (copy_definition): Add a parameter to specify the
16280 obstack to fill, instead of using attrs_obstack unconditionally.
16281 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16282 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16283
16284 2002-04-23 Paul Eggert <eggert@twinsun.com>
16285
16286 * data/bison.simple: Remove unnecessary commentary and white
16287 space differences from 1_29-branch.
16288 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16289
16290 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16291 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16292 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16293 constructors or destructors.
16294
16295 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16296
16297 2002-04-23 Akim Demaille <akim@epita.fr>
16298
16299 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16300 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16301 location with columns.
16302 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16303 All reported by Paul Eggert.
16304
16305 2002-04-22 Akim Demaille <akim@epita.fr>
16306
16307 * src/reduce.c (dump_grammar): Move to...
16308 * src/gram.h, src/gram.c (grammar_dump): here.
16309 Be sure to separate long item numbers.
16310 Don't read the members of a rule's prec if its nil.
16311
16312 2002-04-22 Akim Demaille <akim@epita.fr>
16313
16314 * src/output.c (table_size, table_grow): New.
16315 (MAXTABLE): Remove, replace uses with table_size.
16316 (pack_vector): Instead of dying when the table is too big, grow it.
16317
16318 2002-04-22 Akim Demaille <akim@epita.fr>
16319
16320 * data/bison.simple (yyr1): Its type is that of a token number.
16321 * data/bison.c++ (r1_): Likewise.
16322 * tests/regression.at (Web2c Actions): Adjust.
16323
16324 2002-04-22 Akim Demaille <akim@epita.fr>
16325
16326 * src/reader.c (token_translations_init): 256 is now the default
16327 value for the error token, i.e., it will be assigned another
16328 number if the user assigned 256 to one of her tokens.
16329 (reader): Don't force 256 to error.
16330 * doc/bison.texinfo (Symbols): Adjust.
16331 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16332 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16333 etc. instead of 10, 20, 30 (which was used to `jump' over error
16334 (256) and undefined (2)).
16335
16336 2002-04-22 Akim Demaille <akim@epita.fr>
16337
16338 Propagate more token_number_t.
16339
16340 * src/gram.h (token_number_as_item_number)
16341 (item_number_as_token_number): New.
16342 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16343 Use it to create output_item_number_table and
16344 output_token_number_table.
16345 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16346 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16347 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16348 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16349
16350 2002-04-22 Akim Demaille <akim@epita.fr>
16351
16352 * src/output.h, src/output.c (get_lines_number): Remove.
16353
16354 2002-04-19 Akim Demaille <akim@epita.fr>
16355
16356 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16357 as Lex/Flex'.
16358 (Debugging): More details about enabling the debugging features.
16359 (Table of Symbols): Describe $$, $n, @$, and @n.
16360 Suggested by Tim Josling.
16361
16362 2002-04-19 Akim Demaille <akim@epita.fr>
16363
16364 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16365
16366 2002-04-10 Akim Demaille <akim@epita.fr>
16367
16368 * src/system.h: Rely on HAVE_LIMITS_H.
16369 Suggested by Paul Eggert.
16370
16371 2002-04-09 Akim Demaille <akim@epita.fr>
16372
16373 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16374 full stderr, and strip it according to the bison options, instead
16375 of composing the error message from different bits.
16376 This makes it easier to check for several error messages.
16377 Adjust all the invocations.
16378 Add an invocation exercising the error token.
16379 Add an invocation demonstrating a stupid error message.
16380 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16381 Adjust the tests.
16382 Error message are for stderr, not stdout.
16383
16384 2002-04-09 Akim Demaille <akim@epita.fr>
16385
16386 * src/gram.h, src/gram.c (error_token_number): Remove, use
16387 errtoken->number.
16388 * src/reader.c (reader): Don't specify the user token number (2)
16389 for $undefined, as it uselessly prevents using it.
16390 * src/gram.h (token_number_t): Move to...
16391 * src/symtab.h: here.
16392 (state_t.number): Is a token_number_t.
16393 * src/print.c, src/reader.c: Use undeftoken->number instead of
16394 hard coded 2.
16395 (Even though this 2 is not the same as above: the number of the
16396 undeftoken remains being 2, it is its user token number which
16397 might not be 2).
16398 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16399 `user_token_number_max'.
16400 Output `undef_token_number'.
16401 * data/bison.simple, data/bison.c++: Use them.
16402 Be sure to map invalid yylex return values to
16403 `undef_token_number'. This saves us from gratuitous SEGV.
16404
16405 * tests/conflicts.at (Solved SR Conflicts)
16406 (Unresolved SR Conflicts): Adjust.
16407 * tests/regression.at (Web2c Actions): Adjust.
16408
16409 2002-04-08 Akim Demaille <akim@epita.fr>
16410
16411 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16412 Adding #line.
16413 Remove the duplicate `typedefs'.
16414 (RhsNumberType): Fix the declaration and various other typos.
16415 Use __ofile__.
16416 * data/bison.simple: Use __ofile__.
16417 * src/scan-skel.l: Handle __ofile__.
16418
16419 2002-04-08 Akim Demaille <akim@epita.fr>
16420
16421 * src/gram.h (item_number_t): New, the type of item numbers in
16422 RITEM. Note that it must be able to code symbol numbers as
16423 positive number, and the negation of rule numbers as negative
16424 numbers.
16425 Adjust all dependencies (pretty many).
16426 * src/reduce.c (rule): Remove this `short *' pointer: use
16427 item_number_t.
16428 * src/system.h (MINSHORT, MAXSHORT): Remove.
16429 Include `limits.h'.
16430 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16431 (shortcpy): Remove.
16432 (MAXTABLE): Move to...
16433 * src/output.c (MAXTABLE): here.
16434 (prepare_rules): Use output_int_table to output rhs.
16435 * data/bison.simple, data/bison.c++: Adjust.
16436 * tests/torture.at (Big triangle): Move the limit from 254 to
16437 500.
16438 * tests/regression.at (Web2c Actions): Ajust.
16439
16440 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16441 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16442 passes, but produces negative #line number, once fixed, GCC is
16443 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16444 C), it passes.
16445 * src/state.h (state_h): Code input lines on ints, not shorts.
16446
16447 2002-04-08 Akim Demaille <akim@epita.fr>
16448
16449 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16450 and then the grammar.
16451
16452 2002-04-08 Akim Demaille <akim@epita.fr>
16453
16454 * src/system.h: No longer using strndup.
16455
16456 2002-04-07 Akim Demaille <akim@epita.fr>
16457
16458 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16459 * src/output.c (output_table_data): Return the longest number.
16460 (prepare_tokens): Output `token_number_max').
16461 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16462 New.
16463 Use them to define yy_token_number_type/TokenNumberType.
16464 Use this type for yytranslate.
16465 * tests/torture.at (Big triangle): Push the limit from 124 to
16466 253.
16467 * tests/regression.at (Web2c Actions): Adjust.
16468
16469 2002-04-07 Akim Demaille <akim@epita.fr>
16470
16471 * tests/torture.at (Big triangle): New.
16472 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16473 * tests/existing.at: here.
16474
16475 2002-04-07 Akim Demaille <akim@epita.fr>
16476
16477 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16478 nritems.
16479 Adjust dependencies.
16480
16481 2002-04-07 Akim Demaille <akim@epita.fr>
16482
16483 * src/reader.c: Normalize increments to prefix form.
16484
16485 2002-04-07 Akim Demaille <akim@epita.fr>
16486
16487 * src/reader.c, symtab.c: Remove debugging code.
16488
16489 2002-04-07 Akim Demaille <akim@epita.fr>
16490
16491 Rename all the `bucket's as `symbol_t'.
16492
16493 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16494 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16495 * src/symtab.c, src/symtab.h (bucket): Rename as...
16496 (symbol_t): this.
16497 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16498 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16499 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16500 (buckets_new, buckets_free, buckets_do): Rename as...
16501 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16502 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16503 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16504 (symbols_new, symbols_free, symbols_do): these.
16505
16506 2002-04-07 Akim Demaille <akim@epita.fr>
16507
16508 Use lib/hash for the symbol table.
16509
16510 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16511 EOF.
16512 * src/lex.c (lex): Set the `number' member of new terminals.
16513 * src/reader.c (bucket_check_defined, bucket_make_alias)
16514 (bucket_check_alias_consistence, bucket_translation): New.
16515 (reader, grammar_free, readgram, token_translations_init)
16516 (packsymbols): Adjust.
16517 (reader): Number the predefined tokens.
16518 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16519 for predefined tokens.
16520 * src/symtab.h (bucket): Remove all the hash table related
16521 members.
16522 * src/symtab.c (symtab): Replace by...
16523 (bucket_table): this.
16524 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16525 (buckets_new, buckets_do): New.
16526
16527 2002-04-07 Akim Demaille <akim@epita.fr>
16528
16529 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16530 (start_symbol, max_user_token_number, semantic_parser)
16531 (error_token_number): Initialize.
16532 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16533 Initialize.
16534 (reader): Don't.
16535 (errtoken, eoftoken, undeftoken, axiom): Extern.
16536
16537 2002-04-07 Akim Demaille <akim@epita.fr>
16538
16539 * src/gram.h (rule_s): prec and precsym are now pointers
16540 to the bucket giving the priority/associativity.
16541 Member `associativity' removed: useless.
16542 * src/reduce.c, src/conflicts.c: Adjust.
16543
16544 2002-04-07 Akim Demaille <akim@epita.fr>
16545
16546 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16547 Properly escape the symbols' TAG when outputting them.
16548
16549 2002-04-07 Akim Demaille <akim@epita.fr>
16550
16551 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16552
16553 2002-04-07 Akim Demaille <akim@epita.fr>
16554
16555 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16556 (LArule): this, which is an array to rule_t*.
16557 * src/print.c, src/conflicts.c: Adjust.
16558
16559 2002-04-07 Akim Demaille <akim@epita.fr>
16560
16561 * src/gram.h (rule_t): Rename `number' as `user_number'.
16562 `number' is a new member.
16563 Adjust dependencies.
16564 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16565
16566 2002-04-07 Akim Demaille <akim@epita.fr>
16567
16568 As a result of the previous patch, it is no longer needed
16569 to reorder ritem itself.
16570
16571 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16572
16573 2002-04-07 Akim Demaille <akim@epita.fr>
16574
16575 Be sure never to walk through RITEMS, but use only data related to
16576 the rules themselves. RITEMS should be banished.
16577
16578 * src/output.c (output_token_translations): Rename as...
16579 (prepare_tokens): this.
16580 In addition to `translate', prepare the muscles `tname' and
16581 `toknum', which were handled by...
16582 (output_rule_data): this.
16583 Remove, and move the remainder of its outputs into...
16584 (prepare_rules): this new routines, which also merges content from
16585 (output_gram): this.
16586 (prepare_rules): Be sure never to walk through RITEMS.
16587 (output_stos): Rename as...
16588 (prepare_stos): this.
16589 (output): Always invoke prepare_states, after all, just don't use it
16590 in the output if you don't need it.
16591
16592 2002-04-07 Akim Demaille <akim@epita.fr>
16593
16594 * src/LR0.c (new_state): Display `nstates' as the name of the
16595 newly created state.
16596 Adjust to initialize first_state and last_state if needed.
16597 Be sure to distinguish the initial from the final state.
16598 (new_states): Create the itemset of the initial state, and use
16599 new_state.
16600 * src/closure.c (closure): Now that the initial state has its
16601 items properly set, there is no need for a special case when
16602 creating `ruleset'.
16603
16604 As a result, now the rule 0, reducing to $axiom, is visible in the
16605 outputs. Adjust the test suite.
16606
16607 * tests/conflicts.at (Solved SR Conflicts)
16608 (Unresolved SR Conflicts): Adjust.
16609 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16610 * tests/conflicts.at (S/R in initial): New.
16611
16612 2002-04-07 Akim Demaille <akim@epita.fr>
16613
16614 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16615 the RHS of the rules.
16616 * src/output.c (output_gram): Likewise.
16617
16618 2002-04-07 Akim Demaille <akim@epita.fr>
16619
16620 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16621 bucket.
16622 Adjust all dependencies.
16623 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16624 `number' of the buckets too.
16625 * src/gram.h: Include `symtab.h'.
16626 (associativity): Move to...
16627 * src/symtab.h: here.
16628 No longer include `gram.h'.
16629
16630 2002-04-07 Akim Demaille <akim@epita.fr>
16631
16632 * src/gram.h, src/gram.c (rules_rhs_length): New.
16633 (ritem_longest_rhs): Use it.
16634 * src/gram.h (rule_t): `number' is a new member.
16635 * src/reader.c (packgram): Set it.
16636 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16637 the end of `rules', and count them out of `nrules'.
16638 (reduce_output, dump_grammar): Adjust.
16639 * src/print.c (print_grammar): It is no longer needed to check for
16640 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16641 * tests/reduce.at (Reduced Automaton): New test.
16642
16643 2002-04-07 Akim Demaille <akim@epita.fr>
16644
16645 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16646 lacking `+ 1' to nrules, Bison reported as useless a token if it
16647 was used solely to set the precedence of the last rule...
16648
16649 2002-04-07 Akim Demaille <akim@epita.fr>
16650
16651 * data/bison.c++, data/bison.simple: Don't output the current file
16652 name in #line, to avoid useless diffs between two identical
16653 outputs under different names.
16654
16655 2002-04-07 Akim Demaille <akim@epita.fr>
16656
16657 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16658 Normalize loops to using `< nrules + 1', not `<= nrules'.
16659
16660 2002-04-07 Akim Demaille <akim@epita.fr>
16661
16662 * TODO: Update.
16663
16664 2002-04-07 Akim Demaille <akim@epita.fr>
16665
16666 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16667 bucket.value as bucket.number.
16668
16669 2002-04-07 Akim Demaille <akim@epita.fr>
16670
16671 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16672 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16673 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16674 RHS, instead of being an index in RITEMS.
16675
16676 2002-04-04 Paul Eggert <eggert@twinsun.com>
16677
16678 * doc/bison.texinfo: Update copyright date.
16679 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16680 (Symbols): Warn about running Bison in one character set,
16681 but compiling and/or running in an incompatible one.
16682 Warn about character code 256, too.
16683
16684 2002-04-03 Paul Eggert <eggert@twinsun.com>
16685
16686 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16687 YYERROR_VERBOSE is nonzero, not whether it is defined.
16688
16689 Merge changes from bison-1_29-branch.
16690
16691 2002-03-20 Paul Eggert <eggert@twinsun.com>
16692
16693 Merge fixes from Debian bison_1.34-1.diff.
16694
16695 * configure.in (AC_PREREQ): 2.53.
16696
16697 2002-03-20 Akim Demaille <akim@epita.fr>
16698
16699 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16700
16701 2002-03-19 Paul Eggert <eggert@twinsun.com>
16702
16703 * src/bison.simple (YYCOPY): New macro.
16704 (YYSTACK_RELOCATE): Use it.
16705 Remove Type arg; no longer needed. All callers changed.
16706 (yymemcpy): Remove; no longer needed.
16707
16708 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16709 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16710
16711 2002-03-19 Akim Demaille <akim@epita.fr>
16712
16713 Test and fix the #line outputs.
16714
16715 * tests/atlocal.at (GCC): New.
16716 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16717 (Prologue synch line, %union synch line, Postprologue synch line)
16718 (Action synch line, Epilogue synch line): New tests.
16719 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16720 * data/bison.simple, data/bison.c++: Use it.
16721
16722 2002-03-19 Akim Demaille <akim@epita.fr>
16723
16724 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16725 (Solved SR Conflicts, %expect not enough, %expect right)
16726 (%expect too much): Move to...
16727 * tests/conflicts.at: this new file.
16728
16729 2002-03-19 Akim Demaille <akim@epita.fr>
16730
16731 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16732 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16733 that we can move to enums for instance.
16734 * src/output.c (token_definitions_output): Output a list of
16735 `token-name, token-number' instead of the #define.
16736 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16737
16738 2002-03-14 Akim Demaille <akim@epita.fr>
16739
16740 Use Gettext 0.11.1.
16741
16742 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16743
16744 * data/bison.c++: Make the user able to add members to the generated
16745 parser by subclassing.
16746
16747 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16748
16749 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16750 a character.
16751 Reported by Nicolas Tisserand and Nicolas Burrus.
16752
16753 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16754
16755 * src/reader.c: Warn about lacking semi-colons, do not complain.
16756
16757 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16758
16759 * data/bison.c++: Remove a debug line.
16760
16761 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16762
16763 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16764 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16765 provide a default implementation.
16766
16767 2002-03-04 Akim Demaille <akim@epita.fr>
16768
16769 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16770 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16771 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16772 * tests/semantic.at (Parsing Guards): Similarly.
16773 * src/reader.at (readgram): Complain if the last rule is not ended
16774 with a semi-colon.
16775
16776 2002-03-04 Akim Demaille <akim@epita.fr>
16777
16778 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16779 * src/closure.c: here.
16780 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16781 RTC.
16782 * src/warshall.h, src/warshall.c: Remove.
16783 * tests/sets.at (Broken Closure): Adjust.
16784
16785 2002-03-04 Akim Demaille <akim@epita.fr>
16786
16787 * src/output.c (output_skeleton): tempdir is const.
16788 bytes_read is unused.
16789
16790 2002-03-04 Akim Demaille <akim@epita.fr>
16791
16792 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16793 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16794 Update.
16795 From Michael Hayes.
16796
16797 2002-03-04 Akim Demaille <akim@epita.fr>
16798
16799 * src/closure.c (closure): `r' is unused.
16800
16801 2002-03-04 Akim Demaille <akim@epita.fr>
16802
16803 * tests/sets.at (Broken Closure): Add the ending `;'.
16804 * src/reader.at (readgram): Complain if a rule is not ended with a
16805 semi-colon.
16806
16807 2002-03-04 Akim Demaille <akim@epita.fr>
16808
16809 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16810 (count_sr_conflicts): Use bitset_count.
16811 * src/reduce.c (inaccessable_symbols): Ditto.
16812 (bits_size): Remove.
16813 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16814
16815 2002-03-04 Akim Demaille <akim@epita.fr>
16816
16817 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16818 * src/reduce.c: Remove the `bitset_zero's following the
16819 `bitset_create's, as now it is performed by the latter.
16820
16821 2002-03-04 Akim Demaille <akim@epita.fr>
16822
16823 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16824 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16825 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16826 latest sources from Michael.
16827
16828 2002-03-04 Akim Demaille <akim@epita.fr>
16829
16830 * src/output.c (output): Don't free the grammar.
16831 * src/reader.c (grammar_free): New.
16832 * src/main.c (main): Call it and don't free symtab here.
16833
16834 2002-03-04 Akim Demaille <akim@epita.fr>
16835
16836 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16837 before returning.
16838 Reported by Benoit Perrot.
16839
16840 2002-03-04 Akim Demaille <akim@epita.fr>
16841
16842 Use bitset operations when possible, not loops over bits.
16843
16844 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16845 bitset_or.
16846 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16847 * src/reduce.c (useless_nonterminals): Formatting changes.
16848 * src/warshall.c (TC): Use bitset_or.
16849
16850 2002-03-04 Akim Demaille <akim@epita.fr>
16851
16852 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16853 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16854 Ditto.
16855
16856 2002-03-04 Akim Demaille <akim@epita.fr>
16857
16858 * src/lalr.c (F): Now a bitset*.
16859 Adjust all dependencies.
16860
16861 2002-03-04 Akim Demaille <akim@epita.fr>
16862
16863 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16864 Adjust all dependencies.
16865
16866 2002-03-04 Akim Demaille <akim@epita.fr>
16867
16868 * src/L0.c, src/LR0.h (nstates): Be size_t.
16869 Adjust comparisons (signed vs unsigned).
16870 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16871 bitset*.
16872 Adjust all dependencies.
16873
16874 2002-03-04 Akim Demaille <akim@epita.fr>
16875
16876 * src/closure.c (firsts): Now, also a bitset.
16877 Adjust all dependencies.
16878 (varsetsize): Remove, now unused.
16879 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16880
16881 2002-03-04 Akim Demaille <akim@epita.fr>
16882
16883 * src/print.c: Convert to use bitset.h, not hand coded iterations
16884 over ints.
16885
16886 2002-03-04 Akim Demaille <akim@epita.fr>
16887
16888 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16889
16890 2002-03-04 Akim Demaille <akim@epita.fr>
16891
16892 * src/closure.c (ruleset): Be a bitset.
16893 (rulesetsize): Remove.
16894
16895 2002-03-04 Akim Demaille <akim@epita.fr>
16896
16897 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16898 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16899 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16900 * src/closure.c (fderives): Be an array of bitsets.
16901
16902 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16903
16904 * data/bison.c++: Merge the two generated headers. Insert a copyright
16905 notice in each output file.
16906
16907 2002-02-28 Akim Demaille <akim@epita.fr>
16908
16909 * data/bison.c++: Copy the prologue of bison.simple to fetch
16910 useful M4 definitions, such as b4_header_guard.
16911
16912 2002-02-25 Akim Demaille <akim@epita.fr>
16913
16914 * src/getargs.c (version): Give the name of the authors, and use a
16915 translator friendly scheme for the bgr
16916 copyright notice.
16917
16918 2002-02-25 Akim Demaille <akim@epita.fr>
16919
16920 * src/output.c (header_output): Remove, now handled completely via
16921 M4.
16922
16923 2002-02-25 Akim Demaille <akim@epita.fr>
16924
16925 * m4/m4.m4: New, from CVS Autoconf.
16926 * configure.in: Invoke it.
16927 * src/output.c (output_skeleton): Use its result instead of the
16928 hard coded name.
16929
16930 2002-02-25 Akim Demaille <akim@epita.fr>
16931
16932 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16933 Fileutils 4.1.5.
16934 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16935 * src/output.c (output_skeleton): Use mkstemp to create a real
16936 temporary file.
16937 Move the filling of `skeleton' and its muscle to...
16938 (prepare): here.
16939 (output): Move the definition of the prologue muscle to...
16940 (prepare): here.
16941 * src/system.h (DEFAULT_TMPDIR): New.
16942
16943 2002-02-14 Paul Eggert <eggert@twinsun.com>
16944
16945 Remove the support for C++ namespace cleanliness; it was
16946 causing more problems than it was curing, since it didn't work
16947 properly on some nonstandard C++ compilers. This can wait
16948 for a proper C++ parser.
16949
16950 * NEWS: Document this.
16951 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16952 of C++, as it's treated like C now.
16953 * src/bison.simple (YYSTD): Remove.
16954 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16955 Treat C++ just like Standard C instead of trying to support
16956 namespace cleanliness.
16957
16958 2002-02-14 Akim Demaille <akim@epita.fr>
16959
16960 * tests/regression.at (else): Adjust to Andreas' change.
16961
16962 2002-02-14 Akim Demaille <akim@epita.fr>
16963
16964 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16965
16966 2002-02-13 Andreas Schwab <schwab@suse.de>
16967
16968 * src/output.c (output_rule_data): Don't output NULL, it might
16969 not be defined yet.
16970
16971 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16972
16973 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16974 (Copyright notice): Update.
16975
16976 2002-02-11 Akim Demaille <akim@epita.fr>
16977
16978 * tests/regression.at (%nonassoc and eof): Don't include
16979 nonportable headers.
16980
16981 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16982
16983 * data/bison.c++: Correct error recovery. Make the user able to
16984 initialize the starting location.
16985
16986 2002-02-07 Akim Demaille <akim@epita.fr>
16987
16988 * tests/input.at: New.
16989
16990 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16991
16992 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16993 more consistent when naming methods and variables. Put preprocessor
16994 directives around tables only needed for debugging.
16995
16996 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16997
16998 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16999 C++ parsers.
17000 (yy::b4_name::parse): Use print_.
17001
17002 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17003
17004 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
17005
17006 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
17007
17008 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
17009 C++ parsers.
17010 (yy::b4_name::parse): Build verbose error messages, and use error_.
17011
17012 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17013
17014 * data/bison.c++: Fix m4 quoting in comments.
17015
17016 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
17017
17018 * data/bison.c++: Adjust the parser code. Fix some muscles that were
17019 not expanded by m4.
17020
17021 2002-02-05 Akim Demaille <akim@epita.fr>
17022
17023 * data/bison.c++: Adjust to the M4 back end.
17024 More is certainly needed.
17025
17026 2002-02-05 Akim Demaille <akim@epita.fr>
17027
17028 Give a try to M4 as a back end.
17029
17030 * lib/readpipe.c: New, from wdiff.
17031 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
17032 BISON_HAIRY.
17033 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
17034 specific values. Now it is m4 that performs the lookup.
17035 * src/parse-skel.y: Remove.
17036 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
17037 * src/output.c (actions_output, guards_output)
17038 (token_definitions_output): No longer keeps track of the output
17039 line number, hence remove the second argument.
17040 (guards_output): Check against the guard member of a rule, not the
17041 action member.
17042 Adjust callers.
17043 (output_skeleton): Don't look for the skeleton location, let m4 do
17044 that.
17045 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
17046 file will be used.
17047 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
17048 (prepare): Given that for the time being changesyntax is not
17049 usable in M4, rename the muscles using `-' to `_'.
17050 Define `defines_flag', `output_parser_name' and `output_header_name'.
17051 * src/output.h (actions_output, guards_output)
17052 (token_definitions_output): Adjust prototypes.
17053 * src/scan-skel.l: Instead of scanning the skeletons, it now
17054 processes the output of m4: `__oline__' and `#output'.
17055 * data/bison.simple: Adjust to be used by M4(sugar).
17056 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
17057 to date.
17058 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
17059 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
17060 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
17061 shamelessly stolen from CVS Autoconf.
17062
17063 2002-02-05 Akim Demaille <akim@epita.fr>
17064
17065 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
17066 * configure.in: Check for the declarations of free and malloc.
17067 * src/muscle_tab.c: Adjust.
17068
17069 2002-02-05 Akim Demaille <akim@epita.fr>
17070
17071 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
17072 which have no values.
17073
17074 2002-02-05 Akim Demaille <akim@epita.fr>
17075
17076 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
17077 * data/: here.
17078
17079 2002-01-29 Paul Eggert <eggert@twinsun.com>
17080
17081 * src/bison.simple (YYSIZE_T): Do not define merely because
17082 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
17083 On some platforms, <alloca.h> does not declare YYSTD (size_t).
17084
17085 2002-01-27 Akim Demaille <akim@epita.fr>
17086
17087 Fix `%nonassoc and eof'.
17088
17089 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
17090 which were not properly copied! Replace
17091 memcpy (res->errs, src->errs, src->nerrs);
17092 with
17093 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
17094 !!!
17095 * tests/regression.at (%nonassoc and eof): Adjust to newest
17096 Autotest: `.' is not in the PATH.
17097
17098 2002-01-27 Akim Demaille <akim@epita.fr>
17099
17100 * tests/sets.at (AT_EXTRACT_SETS): New.
17101 (Nullable): Use it.
17102 (Firsts): New.
17103
17104 2002-01-26 Akim Demaille <akim@epita.fr>
17105
17106 * tests/actions.at, tests/calc.at, tests/headers.at,
17107 * tests/torture.at: Adjust to the newest Autotest which no longer
17108 forces `.' in the PATH.
17109
17110 2002-01-25 Akim Demaille <akim@epita.fr>
17111
17112 * tests/regression.at (%nonassoc and eof): New.
17113 Suggested by Robert Anisko.
17114
17115 2002-01-24 Akim Demaille <akim@epita.fr>
17116
17117 Bison dumps core when trying to complain about broken input files.
17118 Reported by Cris van Pelt.
17119
17120 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
17121 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
17122 into...
17123 (Invalid inputs): Strengthen: exercise parse_percent_token.
17124
17125 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
17126
17127 * src/Makefile.am: Add bison.c++.
17128 * src/bison.c++: New skeleton.
17129
17130 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
17131
17132 * po/it.po: New.
17133
17134 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
17135
17136 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
17137
17138 2002-01-20 Marc Autret <marc@gnu.org>
17139
17140 * src/files.c (compute_output_file_names): Fix
17141
17142 2002-01-20 Marc Autret <marc@gnu.org>
17143
17144 * tests/output.at: New test.
17145 * src/files.c (compute_base_names): Don't map extensions when
17146 the YACC flag is set, use defaults.
17147 Reported by Evgeny Stambulchik.
17148
17149 2002-01-20 Marc Autret <marc@gnu.org>
17150
17151 * src/system.h: Need to define __attribute__ away for non-GCC
17152 compilers as well (i.e., the vendor C compiler).
17153 Suggested by Albert Chin-A-Young.
17154
17155 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
17156
17157 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
17158 canonical definition.
17159 * src/system.h: Use the canonical definition for PARAMS (avoids
17160 a conflict with the macro from lib/hash.h).
17161
17162 2002-01-11 Akim Demaille <akim@epita.fr>
17163
17164 * configure.in: Use AC_FUNC_STRNLEN.
17165 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
17166
17167 2002-01-09 Akim Demaille <akim@epita.fr>
17168
17169 * src/files.c, src/files.h (output_infix): New.
17170 (tab_extension): Remove.
17171 (compute_base_names): Compute the former, drop the latter.
17172 * src/output.c (prepare): Insert the muscles `output-infix', and
17173 `output-suffix'.
17174 * src/parse-skel.y (string, string.1): New.
17175 (section.header): Use it.
17176 (section.yacc): Remove.
17177 (prefix): Remove too.
17178 * src/scan-skel.l: Adjust.
17179 * src/bison.simple, src/bison.hairy: Adjust.
17180
17181 2002-01-09 Akim Demaille <akim@epita.fr>
17182
17183 * configure.in (WERROR_CFLAGS): Compute it.
17184 * src/Makefile.am (CFLAGS): Pass it.
17185 * tests/atlocal.in (CFLAGS): Idem.
17186 * src/files.c: Fix a few warnings.
17187 (get_extension_index): Remove, unused.
17188
17189 2002-01-08 Akim Demaille <akim@epita.fr>
17190
17191 * src/getargs.c (AS_FILE_NAME): New.
17192 (getargs): Use it to convert DOSish file names.
17193 * src/files.c (base_name): Rename as full_base_name to avoid
17194 clashes with `base_name ()'.
17195 (filename_split): New.
17196 (compute_base_names): N-th rewrite, using filename_split.
17197
17198 2002-01-08 Akim Demaille <akim@epita.fr>
17199
17200 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17201 New, stolen from the Fileutils 4.1.
17202 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17203 * configure.in: Check for the presence of memrchr, and of its
17204 prototype.
17205
17206 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17207
17208 * lib/hash.h (__P): Added definition for this macro.
17209 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17210 BUILT_SOURCES, to ensure they are generated first.
17211 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17212 %error-verbose to allow bootstrapping with bison 1.30x.
17213
17214 2002-01-06 Akim Demaille <akim@epita.fr>
17215
17216 * src/reader.c (parse_braces): Don't fetch the next char, the
17217 convention is to fetch on entry.
17218 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17219 'switch' without a following semicolon.
17220 * tests/regression.at (braces parsing): New.
17221
17222 2002-01-06 Akim Demaille <akim@epita.fr>
17223
17224 Bison is dead wrong in its RR conflict reports.
17225
17226 * tests/torture.at (GNU Cim Grammar): New.
17227 * src/conflicts.c (count_rr_conflicts): Fix.
17228
17229 2002-01-06 Akim Demaille <akim@epita.fr>
17230
17231 Creating package.m4 from configure.ac causes too many problems.
17232
17233 * tests/Makefile.am (package.m4): Create it by hand,
17234 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17235
17236 2002-01-06 Akim Demaille <akim@epita.fr>
17237
17238 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17239 skeleton.h.
17240
17241 2002-01-04 Paul Eggert <eggert@twinsun.com>
17242
17243 * doc/bison.texinfo (Debugging):
17244 Remove YYSTDERR; it's no longer defined or used.
17245 Also, s/cstdio.h/cstdio/.
17246
17247 2002-01-03 Akim Demaille <akim@epita.fr>
17248
17249 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17250
17251 2002-01-03 Akim Demaille <akim@epita.fr>
17252
17253 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17254 tracing code to --trace, wait for a better --trace option, with
17255 args.
17256
17257 2002-01-03 Akim Demaille <akim@epita.fr>
17258
17259 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17260 The ISO C++ standard is extremely clear about it: stderr is
17261 considered a macro, not a regular symbol (see table 94 `Header
17262 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17263 Therefore std:: does not apply to it. It still does with fprintf.
17264 Also, s/cstdio.h/cstdio/.
17265
17266 2002-01-03 Akim Demaille <akim@epita.fr>
17267
17268 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17269 for non system headers.
17270
17271 2002-01-02 Akim Demaille <akim@epita.fr>
17272
17273 Equip the skeleton chain with location tracking, runtime trace,
17274 pure parser and scanner.
17275
17276 * src/parse-skel.y: Request a pure parser, locations, and prefix
17277 renaming.
17278 (%union): Having several members with the same type does not help
17279 type mismatches, simplify.
17280 (YYPRINT, yyprint): New.
17281 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17282 (skel_error): this.
17283 Handle locations.
17284 * src/scan-skel.l: Adjust to these changes.
17285 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17286 (LOCATION_PRINT, skel_control_t): New.
17287
17288 2001-12-30 Akim Demaille <akim@epita.fr>
17289
17290 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17291 replace `gb' with BLANKS.
17292 * src/scan-skel.l: Adjust.
17293
17294 2001-12-30 Akim Demaille <akim@epita.fr>
17295
17296 * src/system.h: We don't need nor want bcopy.
17297 Throw away MS-DOS crap: we don't need getpid.
17298 * configure.in: We don't need strndup. It was even causing
17299 problems: because Flex includes the headers *before* us,
17300 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17301 not visible.
17302 * lib/xstrndup.c: New.
17303 * src/scan-skel.l: Use it.
17304 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17305 * src/parse-skel.y: Use %directives instead of #defines.
17306
17307 2001-12-30 Akim Demaille <akim@epita.fr>
17308
17309 * src/skeleton.h: New.
17310 * src/output.c (output_parser, output_master_parser): Remove, dead
17311 code.
17312 * src/output.h (get_lines_number, actions_output, guards_output)
17313 (token_definitions_output): Prototype them.
17314 * src/parse-skel.y: Add the license notice.
17315 Include output.h and skeleton.h.
17316 (process_skeleton): Returns void, and takes a single parameter.
17317 * src/scan-skel.l: Add the license notice.
17318 Include skeleton.h.
17319 Don't use %option yylineno: it seems that then Flex imagines
17320 REJECT has been used, and therefore it won't reallocate its
17321 buffers (which makes no other sense to me than a bug). It results
17322 in warnings for `unused: yy_flex_realloc'.
17323
17324 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17325
17326 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17327 (MUSCLE_INSERT_PREFIX): ...to there.
17328 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17329 (MUSCLE_INSERT_PREFIX): Move from here...
17330
17331 * src/bison.hairy: Add a section directive. Put braces around muscle
17332 names. This parser skeleton is still broken, but Bison should not
17333 choke on a bad muscle 'syntax'.
17334 * src/bison.simple: Add a section directive. Put braces around muscle
17335 names.
17336
17337 * src/files.h (strsuffix, stringappend): Add declarations.
17338 (tab_extension): Add declaration.
17339 (short_base_name): Add declaration.
17340
17341 * src/files.c (strsuffix, stringappend): No longer static. These
17342 functions are used in the skeleton parser.
17343 (tab_extension): New.
17344 (compute_base_names): Use the computations done in this function
17345 to guess if the generated parsers should have '.tab' in their
17346 names.
17347 (short_base_name): No longer static.
17348
17349 * src/output.c (output_skeleton): New.
17350 (output): Disable call to output_master_parser, and give a try to
17351 a new skeleton handling system.
17352 (guards_output, actions_output): No longer static.
17353 (token_definitions_output, get_lines_number): No longer static.
17354
17355 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17356
17357 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17358 parse-skel.y.
17359
17360 * src/parse-skel.y: New file.
17361 * src/scan-skel.l: New file.
17362
17363 2001-12-29 Akim Demaille <akim@epita.fr>
17364
17365 %name-prefix is broken.
17366
17367 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17368 Adjust all dependencies.
17369 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17370 %name-prefix.
17371
17372 Renaming yylval but not yylloc is not consistent. Now we do.
17373
17374 * src/bison.simple: Prefix yylloc if used.
17375 * doc/bison.texinfo (Decl Summary): Document that.
17376
17377 2001-12-29 Akim Demaille <akim@epita.fr>
17378
17379 * doc/bison.texinfo: Promote `%long-directive' over
17380 `%long_directive'.
17381 Remove all references to fixed-output-files, yacc is enough.
17382
17383 2001-12-29 Akim Demaille <akim@epita.fr>
17384
17385 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17386 user prologue. These are defaults.
17387 * tests/actions.at (Mid-rule actions): Make sure the user can
17388 define YYDEBUG and YYERROR_VERBOSE.
17389
17390 2001-12-29 Akim Demaille <akim@epita.fr>
17391
17392 * src/output.c (header_output): Don't forget to export YYLTYPE and
17393 yylloc.
17394 * tests/headers.at (export YYLTYPE): New, make sure it does.
17395 * tests/regression.at (%union and --defines, Invalid CPP headers):
17396 Move to...
17397 * tests/headers.at: here.
17398
17399 2001-12-29 Akim Demaille <akim@epita.fr>
17400
17401 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17402
17403 2001-12-29 Akim Demaille <akim@epita.fr>
17404
17405 * tests/actions.at (Mid-rule actions): Output on a single line
17406 instead of several.
17407
17408 2001-12-29 Akim Demaille <akim@epita.fr>
17409
17410 * doc/bison.texinfo: Formatting changes.
17411
17412 2001-12-29 Akim Demaille <akim@epita.fr>
17413
17414 Don't store the token defs in a muscle, just be ready to output it
17415 on command. Now possible via `symbols'. Fixes a memory leak.
17416
17417 * src/output.c (token_definitions_output): New.
17418 (output_parser, header_output): Use it.
17419 * src/reader.c (symbols_save): Remove.
17420
17421 2001-12-29 Akim Demaille <akim@epita.fr>
17422
17423 * src/bison.simple: Do not provide a default for YYSTYPE and
17424 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17425 default.
17426
17427 2001-12-29 Akim Demaille <akim@epita.fr>
17428
17429 Mid-rule actions are simply... ignored!
17430
17431 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17432 the empty-rule associated to the dummy symbol, not to the host
17433 rule.
17434 * tests/actions.at (Mid-rule actions): New.
17435
17436 2001-12-29 Akim Demaille <akim@epita.fr>
17437
17438 Memory leak.
17439
17440 * src/reader.c (reader): Free grammar.
17441
17442 2001-12-29 Akim Demaille <akim@epita.fr>
17443
17444 Memory leak.
17445
17446 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17447 since it allocates it for each state, although only one is needed.
17448 (allocate_storage): Do it here.
17449
17450 2001-12-29 Akim Demaille <akim@epita.fr>
17451
17452 * src/options.h, src/options.c (create_long_option_table): Rename
17453 as...
17454 (long_option_table_new): this, with a clearer prototype.
17455 (percent_table): Remove, unused,
17456 * src/getargs.c (getargs): Adjust.
17457
17458 2001-12-29 Akim Demaille <akim@epita.fr>
17459
17460 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17461 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17462 as states.
17463
17464 2001-12-29 Akim Demaille <akim@epita.fr>
17465
17466 * src/lalr.c (build_relations): Rename `states' as `states1'.
17467 Sorry, I don't understand exactly what it is, no better name...
17468
17469 2001-12-29 Akim Demaille <akim@epita.fr>
17470
17471 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17472 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17473 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17474 as rules.
17475
17476 2001-12-29 Akim Demaille <akim@epita.fr>
17477
17478 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17479 ago.
17480
17481 2001-12-29 Akim Demaille <akim@epita.fr>
17482
17483 * src/reader.c, src/reader.h (user_toknums): Remove.
17484 Adjust all users to use symbols[i]->user_token_number.
17485
17486 2001-12-29 Akim Demaille <akim@epita.fr>
17487
17488 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17489 Adjust all users to use symbols[i]->prec or ->assoc.
17490
17491 2001-12-29 Akim Demaille <akim@epita.fr>
17492
17493 * src/reader.c, src/reader.h (tags): Remove.
17494 Adjust all users to use symbols[i]->tag.
17495
17496 2001-12-29 Akim Demaille <akim@epita.fr>
17497
17498 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17499 and rule_table.
17500 * src/reader.c (packsymbols): Fill this table.
17501 Drop sprec.
17502 * src/conflicts.c (resolve_sr_conflict): Adjust.
17503 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17504 single table.
17505 Use symbols[i]->tag instead of tags[i].
17506
17507 2001-12-29 Akim Demaille <akim@epita.fr>
17508
17509 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17510 In addition, put a comment in there, to replace...
17511 * tests/regression.at (%union and C comments): Remove.
17512
17513 2001-12-29 Akim Demaille <akim@epita.fr>
17514
17515 * tests/regression.at (Web2c Actions): Blindly move the actual
17516 output as expected output. The contents *seem* right to me, but I
17517 can't pretend reading perfectly parser tables... Nonetheless, all
17518 the other tests pass correctly, the table look OK, even though the
17519 presence of `$axiom' is to be noted: AFAICS it is useless (but
17520 harmless).
17521
17522 2001-12-29 Akim Demaille <akim@epita.fr>
17523
17524 * src/reader.c (readgram): Don't add the rule 0 if there were no
17525 rules read. In other words, add it _after_ having performed
17526 grammar sanity checks.
17527 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17528
17529 2001-12-29 Akim Demaille <akim@epita.fr>
17530
17531 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17532 visible, and some states have now a different number.
17533
17534 2001-12-29 Akim Demaille <akim@epita.fr>
17535
17536 * src/reader.c (readgram): Bind the initial rule's lineno to that
17537 of the first rule.
17538 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17539 (Solved SR Conflicts): Adjust rule 0's line number.
17540
17541 2001-12-29 Akim Demaille <akim@epita.fr>
17542
17543 Fix the `GAWK Grammar' failure.
17544
17545 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17546 the reductions of the first state which was mistakenly confused
17547 with the final state because precisely final_state was initialized
17548 to 0.
17549 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17550 now noticed by Bison.
17551 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17552 have a reduction on $default.
17553
17554 2001-12-29 Akim Demaille <akim@epita.fr>
17555
17556 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17557 rule line numbers.
17558 * src/closure.c (print_closure): Likewise.
17559 * src/derives.c (print_derives): Likewise.
17560 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17561 now.
17562
17563 2001-12-29 Akim Demaille <akim@epita.fr>
17564
17565 * src/lalr.c (lookaheads_print): New.
17566 (lalr): Call it when --trace-flag.
17567 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17568 are dumped.
17569
17570 2001-12-29 Akim Demaille <akim@epita.fr>
17571
17572 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17573 when walking through ritem, even via rule->rhs.
17574 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17575 (useful_production, useless_nonterminals): Likewise.
17576 (reduce_grammar_tables): Likewise, plus update nritems.
17577 * src/nullable.c (set_nullable): Likewise.
17578 * src/lalr.c (build_relations): Likewise.
17579 * tests/sets.at (Nullable): Adjust.
17580 Fortunately, now, the $axiom is no longer nullable.
17581
17582 2001-12-29 Akim Demaille <akim@epita.fr>
17583
17584 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17585 the 0-sentinel.
17586 * src/gram.c (ritem_longest_rhs): Likewise.
17587 * src/reduce.c (nonterminals_reduce): Likewise.
17588 * src/print_graph.c (print_graph): Likewise.
17589 * src/output.c (output_rule_data): Likewise.
17590 * src/nullable.c (set_nullable): Likewise.
17591
17592 2001-12-29 Akim Demaille <akim@epita.fr>
17593
17594 * src/output.c: Comment changes.
17595
17596 2001-12-27 Paul Eggert <eggert@twinsun.com>
17597
17598 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17599 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17600 Sparc, as they were causing more porting problems than the
17601 (minor) performance improvement was worth.
17602
17603 Also, catch up with 1.31's YYSTD.
17604
17605 2001-12-27 Akim Demaille <akim@epita.fr>
17606
17607 * src/output.c (output_gram): Rely on nritems, not the
17608 0-sentinel. See below.
17609 Use -1 as separator, not 0.
17610 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17611 Rely on -1 as separator in yyrhs, instead of 0.
17612 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17613 twice `Now at end of input', therefore there are two lines less to
17614 expect.
17615
17616 2001-12-27 Akim Demaille <akim@epita.fr>
17617
17618 * tests/regression.at (Unresolved SR Conflicts):
17619 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17620 below.
17621
17622 2001-12-27 Akim Demaille <akim@epita.fr>
17623
17624 * src/LR0.c (new_state): Recognize the final state by the fact it
17625 is reached by eoftoken.
17626 (insert_start_shifting_state, insert_eof_shifting_state)
17627 (insert_accepting_state, augment_automaton): Remove, since now
17628 these states are automatically computed from the initial state.
17629 (generate_states): Adjust.
17630 * src/print.c: When reporting a rule number to the user, substract
17631 1, so that the axiom rule is rule 0, and the first user rule is 1.
17632 * src/reduce.c: Likewise.
17633 * src/print_graph.c (print_core): For the time being, just as for
17634 the report, depend upon --trace-flags to dump the full set of
17635 items.
17636 * src/reader.c (readgram): Once the grammar read, insert the rule
17637 0: `$axiom: START-SYMBOL $'.
17638 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17639 number of the states has changed (the final state is no longer
17640 necessarily the last), catch up.
17641
17642 2001-12-27 Akim Demaille <akim@epita.fr>
17643
17644 Try to make the use of the eoftoken valid. Given that its value
17645 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17646 is used instead of > 0 where appropriate, (ii), depend upon nritems
17647 instead of the 0-sentinel.
17648
17649 * src/gram.h, src/gram.c (nritems): New.
17650 Expected to be duplication of nitems, but for the time being...
17651 * src/reader.c (packgram): Assert nritems and nitems are equal.
17652 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17653 * src/closure.c (print_closure, print_fderives): Likewise.
17654 * src/gram.c (ritem_print): Likewise.
17655 * src/print.c (print_core, print_grammar): Likewise.
17656 * src/print_graph.c: Likewise.
17657
17658 2001-12-27 Akim Demaille <akim@epita.fr>
17659
17660 * src/main.c (main): If there are complains after grammar
17661 reductions, then output the report anyway if requested, then die.
17662 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17663 * src/reader.c (eoftoken): New.
17664 (parse_token_decl): If the token being defined has value `0', it
17665 is the eoftoken.
17666 (packsymbols): No longer hack `tags' to insert `$' by hand.
17667 Be sure to preserve the value of the eoftoken.
17668 (reader): Make sure eoftoken is defined.
17669 Initialize nsyms to 0: now eoftoken is created just like the others.
17670 * src/print.c (print_grammar): Don't special case the eof token.
17671 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17672 lie anyway, albeit pleasant.
17673 * tests/calc.at: Exercise error messages with eoftoken.
17674 Change the grammar so that empty input is invalid.
17675 Adjust expectations.
17676 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17677
17678 2001-12-27 Akim Demaille <akim@epita.fr>
17679
17680 * configure.in: Check the protos of strchr ans strspn.
17681 Replace strchr if needed.
17682 * src/system.h: Provide the protos of strchr, strspn and memchr if
17683 missing.
17684 * lib/strchr.c: New.
17685 * src/reader.c (symbols_save): Use strchr.
17686
17687 2001-12-27 Akim Demaille <akim@epita.fr>
17688
17689 * src/print.c, src/print_graph.c (escape): New.
17690 Use it to quote the TAGS outputs.
17691 * src/print_graph.c (print_state): Now errors are in red, and
17692 reductions in green.
17693 Prefer high to wide: output the state number on a line of its own.
17694
17695 2001-12-27 Akim Demaille <akim@epita.fr>
17696
17697 * src/state.h, src/state.c (reductions_new): New.
17698 * src/LR0.c (set_state_table): Let all the states have a
17699 `reductions', even if reduced to 0.
17700 (save_reductions): Adjust.
17701 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17702 * src/print.c (print_reductions, print_actions): Adjust.
17703 * src/output.c (action_row): Adjust.
17704
17705 2001-12-27 Akim Demaille <akim@epita.fr>
17706
17707 * src/state.h, src/state.c (errs_new, errs_dup): New.
17708 * src/LR0.c (set_state_table): Let all the states have an errs,
17709 even if reduced to 0.
17710 * src/print.c (print_errs, print_reductions): Adjust.
17711 * src/output.c (output_actions, action_row): Adjust.
17712 * src/conflicts.c (resolve_sr_conflict): Adjust.
17713
17714 2001-12-27 Akim Demaille <akim@epita.fr>
17715
17716 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17717
17718 2001-12-27 Akim Demaille <akim@epita.fr>
17719
17720 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17721 * src/print.c: here.
17722 (lookaheadset, shiftset): New, used as additional storage by
17723 print_reductions.
17724 (print_results): Adjust.
17725 (print_shifts, print_gotos, print_errs): New, extracted from...
17726 (print_actions): here.
17727 * src/print_graph.c (print_actions): Remove dead code.
17728
17729 2001-12-27 Akim Demaille <akim@epita.fr>
17730
17731 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17732 `$n' and `@n'.
17733
17734 2001-12-27 Akim Demaille <akim@epita.fr>
17735
17736 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17737 (build_relations): Adjust.
17738
17739 2001-12-27 Akim Demaille <akim@epita.fr>
17740
17741 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17742 duplication.
17743
17744 2001-12-27 Akim Demaille <akim@epita.fr>
17745
17746 * src/reader.c (packgram): Catch nitems overflows.
17747
17748 2001-12-27 Akim Demaille <akim@epita.fr>
17749
17750 * src/files.c, src/files.h (guard_obstack): Remove.
17751 * src/output.c (output): Adjust.
17752 * src/reader.c (parse_braces): New, factoring...
17753 (copy_action, copy_guard): these two which are renamed as...
17754 (parse_action, parse_guard): these.
17755 As a voluntary consequence, using braces around guards is now
17756 mandatory.
17757
17758 2001-12-27 Akim Demaille <akim@epita.fr>
17759
17760 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17761 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17762 members.
17763 (symbol_list_new): Adjust.
17764 (copy_action): action_line is the first line, not the last.
17765 (copy_guard): Just as for actions, store the `action' only, not
17766 the switch/case/break flesh.
17767 Don't parse the user action that might follow the guard, let...
17768 (readgram): do it, i.e., now, there can be an action after a
17769 guard.
17770 In other words the guard is just explicitly optional.
17771 (packgram): Adjust.
17772 * src/output.c (guards_output): New.
17773 (output_parser): Call it when needed.
17774 (output): Also free the guard and attrs obstacks.
17775 * src/files.c, src/files.h (obstack_save): Remove.
17776 (output_files): Remove.
17777 As a result, if one needs the former `.act' file, using an
17778 appropriate skeleton which requires actions and guards is now
17779 required.
17780 * src/main.c (main): Adjust.
17781 * tests/semantic.at: New.
17782 * tests/regression.at: Use `input.y' as input file name.
17783 Avoid 8+3 problems by requiring input.c when the test needs the
17784 parser.
17785
17786 2001-12-27 Akim Demaille <akim@epita.fr>
17787
17788 * src/reader.c (symbol_list_new): Be sure to initialize all the
17789 fields.
17790
17791 2001-12-27 Akim Demaille <akim@epita.fr>
17792
17793 All the hacks using a final pseudo state are now useless.
17794
17795 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17796 * src/lalr.c (nLA): New.
17797 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17798 instead of lookaheadsp from the pseudo state (nstate + 1).
17799
17800 2001-12-27 Akim Demaille <akim@epita.fr>
17801
17802 * src/output.c (action_row, token_actions): Use a state_t instead
17803 of a integer, and nlookaheads instead of the following state's
17804 lookaheadsp.
17805
17806 2001-12-27 Akim Demaille <akim@epita.fr>
17807
17808 * src/conflicts.c (log_resolution, flush_shift)
17809 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17810 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17811 (conflicts_print, print_reductions): Use a state_t instead of an
17812 integer when referring to a state.
17813 As much as possible, depend upon nlookaheads, instead of the
17814 `lookaheadsp' member of the following state (since lookaheads of
17815 successive states are successive, the difference between state n + 1
17816 and n served as the number of lookaheads for state n).
17817 * src/lalr.c (add_lookback_edge): Likewise.
17818 * src/print.c (print_core, print_actions, print_state)
17819 (print_results): Likewise.
17820 * src/print_graph.c (print_core, print_actions, print_state)
17821 (print_graph): Likewise.
17822 * src/conflicts.h: Adjust.
17823
17824 2001-12-27 Akim Demaille <akim@epita.fr>
17825
17826 * src/bison.hairy: Formatting/comment changes.
17827 ANSIfy.
17828 Remove `register' indications.
17829 Add plenty of `static'.
17830
17831 2001-12-27 Akim Demaille <akim@epita.fr>
17832
17833 * src/output.c (prepare): Drop the muscle `ntbase' which
17834 duplicates ntokens.
17835 * src/bison.simple: Formatting/comment changes.
17836 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17837 is an undocumented synonym.
17838
17839 2001-12-22 Akim Demaille <akim@epita.fr>
17840
17841 * src/output.c (output_table_data): Change the prototype to use
17842 `int' for array ranges: some invocations do pass an int, not a
17843 short.
17844 Reported by Wayne Green.
17845
17846 2001-12-22 Akim Demaille <akim@epita.fr>
17847
17848 Some actions of web2c.y are improperly triggered.
17849 Reported by Mike Castle.
17850
17851 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17852 * tests/regression.at (Web2c): Rename as...
17853 (Web2c Report): this.
17854 (Web2c Actions): New.
17855
17856 2001-12-22 Akim Demaille <akim@epita.fr>
17857
17858 Reductions in web2c.y are improperly reported.
17859 Reported by Mike Castle.
17860
17861 * src/conflicts.c (print_reductions): Fix.
17862 * tests/regression.at (Web2c): New.
17863
17864 2001-12-18 Akim Demaille <akim@epita.fr>
17865
17866 Some host fail on `assert (!"foo")', which expands to
17867 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17868 Reported by Nelson Beebee.
17869
17870 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17871 `#define it_succeeded 0' and `assert (it_succeeded)'.
17872
17873 2001-12-17 Marc Autret <autret_m@epita.fr>
17874
17875 * src/bison.simple: Don't hard code the skeleton line and filename.
17876 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17877 New line counter 'skeleton_line' (skeleton-line muscle).
17878
17879 2001-12-17 Paul Eggert <eggert@twinsun.com>
17880
17881 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17882 YYDEBUG must be defined to a nonzero value.
17883
17884 * src/bison.simple (yytname): Do not assume that the user defines
17885 YYDEBUG to a properly parenthesized expression.
17886
17887 2001-12-17 Akim Demaille <akim@epita.fr>
17888
17889 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17890 nlookaheads is a new member.
17891 Adjust all users.
17892 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17893 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17894 state.
17895
17896 2001-12-17 Akim Demaille <akim@epita.fr>
17897
17898 * src/files.h, src/files.c (open_files, close_files): Remove.
17899 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17900 let...
17901 * src/reader.c (reader): Do it.
17902
17903 2001-12-17 Akim Demaille <akim@epita.fr>
17904
17905 * src/conflicts.c (print_reductions): Formatting changes.
17906
17907 2001-12-17 Akim Demaille <akim@epita.fr>
17908
17909 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17910 (flush_reduce): New.
17911 (resolve_sr_conflict): Adjust.
17912
17913 2001-12-17 Akim Demaille <akim@epita.fr>
17914
17915 * src/output.c (output_obstack): Be static and rename as...
17916 (format_obstack): this, to avoid any confusion with files.c's
17917 output_obstack.
17918 * src/reader.h (muscle_obstack): Move to...
17919 * src/output.h: here, since it's defined in output.c.
17920
17921 2001-12-17 Akim Demaille <akim@epita.fr>
17922
17923 * src/output.c (action_row, save_column, default_goto)
17924 (sort_actions, matching_state, pack_vector): Better variable
17925 locality.
17926
17927 2001-12-17 Akim Demaille <akim@epita.fr>
17928
17929 * src/output.c: Various formatting changes.
17930
17931 2001-12-17 Akim Demaille <akim@epita.fr>
17932
17933 * src/files.c (output_files): Free the output_obstack.
17934 * src/main.c (main): Call print and print_graph conditionally.
17935 * src/print.c (print): Work unconditionally.
17936 * src/print_graph.c (print_graph): Work unconditionally.
17937 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17938
17939 2001-12-16 Marc Autret <autret_m@epita.fr>
17940
17941 * src/output.c (actions_output): Fix. When we use %no-lines,
17942 there is one less line per action.
17943
17944 2001-12-16 Marc Autret <autret_m@epita.fr>
17945
17946 * src/bison.simple: Remove a useless #line directive.
17947 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17948 * src/output.c (get_lines_number): New.
17949 (output_parser): Adjust, now takes care about the lines of a
17950 output muscles.
17951 Fix line numbering.
17952 (actions_output): Computes the number of lines taken by actions.
17953 (output_master_parser): Insert new skeleton which is the name of
17954 the output parser file name.
17955
17956 2001-12-15 Marc Autret <autret_m@epita.fr>
17957
17958 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17959
17960 2001-12-15 Marc Autret <autret_m@epita.fr>
17961
17962 * src/output.c (output_gram): Keep track of the hairy one.
17963
17964 2001-12-15 Akim Demaille <akim@epita.fr>
17965
17966 Make `make distcheck' work.
17967
17968 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17969 system.h which uses libgettext.h.
17970
17971 2001-12-15 Akim Demaille <akim@epita.fr>
17972
17973 * src/nullable.c (set_nullable): Useless rules must be skipped,
17974 otherwise, since we range over their symbols, we might look at a
17975 nonterminal which no longer ``exists'', i.e., it is not counted in
17976 `nvars', hence we overflow our arrays.
17977
17978 2001-12-15 Akim Demaille <akim@epita.fr>
17979
17980 The header can also be produced directly, without any obstack!
17981 Yahoo!
17982
17983 * src/files.c, src/files.h (defines_obstack): Remove.
17984 (compute_header_macro): Global.
17985 (defines_obstack_save): Remove.
17986 * src/reader.c (parse_union_decl): No longer output to
17987 defines_obstack: its content can be found in the `stype' muscle
17988 anyway.
17989 (output_token_translations): Merge into...
17990 (symbols_output): this.
17991 Rename as...
17992 (symbols_save): this.
17993 (reader): Adjust.
17994 * src/output.c (header_output): New.
17995 (output): Call it.
17996
17997 2001-12-15 Akim Demaille <akim@epita.fr>
17998
17999 * src/reader.c (parse_union_decl): Instead of handling two obstack
18000 simultaneously, use one to define the `stype' muscle, and use the
18001 value of the latter to fill defines_obstack.
18002 (copy_comment): Remove.
18003 (copy_comment2): Work for a single obstack.
18004 Rename as...
18005 (copy_comment): this.
18006
18007 2001-12-15 Akim Demaille <akim@epita.fr>
18008
18009 * src/lex.c, src/lex.h (xgetc): No longer static.
18010 * src/reader.c (parse_union_decl): Revamp.
18011
18012 2001-12-15 Akim Demaille <akim@epita.fr>
18013
18014 Still making progress in separating Bison into (i) input, (ii)
18015 process, (iii) output: now we can directly output the parser file
18016 without using table_obstack at all.
18017
18018 * src/files.c, src/files.h (table_obstack): Bye bye.
18019 (parser_file_name): New.
18020 * src/files.c (compute_output_file_names): Compute it.
18021 * src/output.c (actions_output, output_parser)
18022 (output_master_parser): To a file instead of an obstack.
18023
18024 2001-12-15 Akim Demaille <akim@epita.fr>
18025
18026 Attach actions to rules, instead of pre-outputting them to
18027 actions_obstack.
18028
18029 * src/gram.h (rule_t): action and action_line are new members.
18030 * src/reader.c (symbol_list): Likewise.
18031 (copy_action): Save the actions within the rule.
18032 (packgram): Save them in rule_table.
18033 * src/output.c (actions_output): New.
18034 (output_parser): Use it on `%%actions'.
18035 (output_rule_data): Don't free rule_table.
18036 (output): Do it.
18037 (prepare): Don't save the `action' muscle.
18038 * src/bison.simple: s/%%action/%%actions/.
18039
18040 2001-12-15 Akim Demaille <akim@epita.fr>
18041
18042 * src/reader.c (copy_action): When --yacc, don't append a `;'
18043 to the user action: let it fail if lacking.
18044 Suggested by Arnold Robbins and Tom Tromey.
18045
18046 2001-12-14 Akim Demaille <akim@epita.fr>
18047
18048 * src/lex.c (literalchar): Simply return the char you decoded, non
18049 longer mess around with obstacks and int pointers.
18050 Adjust all callers.
18051
18052 2001-12-14 Akim Demaille <akim@epita.fr>
18053
18054 * src/lex.c (literalchar): Don't escape the special characters,
18055 just decode them, and keep them as char (before, eol was output as
18056 the 2 char string `\n' etc.).
18057 * src/output.c (output_rule_data): Use quotearg to output the
18058 token strings.
18059
18060 2001-12-13 Paul Eggert <eggert@twinsun.com>
18061
18062 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
18063 Do not infringe on the global user namespace when using C++.
18064 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
18065 All uses of `fprintf' and `stderr' changed.
18066
18067 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
18068
18069 2001-12-13 Akim Demaille <akim@epita.fr>
18070
18071 The computation of nullable is broken: it doesn't handle empty
18072 RHS's properly.
18073
18074 * tests/torture.at (GNU AWK Grammar): New.
18075 * tests/sets.at (Nullable): New.
18076 * src/nullable.c (set_nullable): Instead of blindly looping over
18077 `ritems', loop over the rules, and then over their rhs's.
18078
18079 Work around Autotest bugs.
18080
18081 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
18082 frame, because Autotest understand lines starting with a `+' as
18083 traces from the shell. Then, they are not processed properly.
18084 Admittedly an Autotest bug, but we don't have time to wait for
18085 Autotest to catch up.
18086 * tests/regression.at (Broken Closure): Adjust to the new table
18087 frames.
18088 Move to...
18089 * tests/sets.at: here.
18090
18091 2001-12-13 Akim Demaille <akim@epita.fr>
18092
18093 * src/closure.c (closure): Use nrules instead of playing tricks
18094 with BITS_PER_WORD.
18095
18096 2001-12-13 Akim Demaille <akim@epita.fr>
18097
18098 * src/print.c (print_actions): Output the handling of `$' as the
18099 traces do: shifting the token EOF. Before EOF was treated as a
18100 nonterminal.
18101 * tests/regression.at: Adjust some tests.
18102 * src/print_graph.c (print_core): Complete the set of items via
18103 closure. The next-to-final and final states are still unsatisfying,
18104 but that's to be addressed elsewhere.
18105 No longer output the rule numbers, but do output the state number.
18106 A single loop for the shifts + gotos is enough, but picked a
18107 distinct color for each.
18108 (print_graph): Initialize and finalize closure.
18109
18110 2001-12-13 Akim Demaille <akim@epita.fr>
18111
18112 * src/reader.c (readgram): Remove dead code, an strip useless
18113 braces.
18114 (get_type): Remove, unused.
18115
18116 2001-12-12 Akim Demaille <akim@epita.fr>
18117
18118 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
18119 on that of lib/error.c.
18120
18121 2001-12-12 Akim Demaille <akim@epita.fr>
18122
18123 Some hosts don't like `/' in includes.
18124
18125 * src/system.h: Include libgettext.h without qualifying the path.
18126 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
18127 $(top_srcdir).
18128
18129 2001-12-11 Marc Autret <autret_m@epita.fr>
18130
18131 * src/output.c (output_parser): Remove useless muscle.
18132
18133 2001-12-11 Marc Autret <autret_m@epita.fr>
18134
18135 * src/bison.simple: Remove #line just before %%epilogue. It
18136 is now handled in ...
18137 * src/reader.c (read_additionnal_code): Add the output of a
18138 #line for the epilogue.
18139
18140 2001-12-10 Marc Autret <autret_m@epita.fr>
18141
18142 * src/reader.c (copy_definition): Re-use CPP-outed code which
18143 replace precedent remove.
18144 * src/bison.simple: Remove #line before %%prologue because
18145 %%input-line is wrong at this time.
18146
18147 2001-12-10 Marc Autret <autret_m@epita.fr>
18148
18149 * src/reader.c (symbols_output): Clean up.
18150 * src/output.c (output_gram, output): Clean up.
18151
18152 2001-12-10 Akim Demaille <akim@epita.fr>
18153
18154 * src/lalr.c (initialize_lookaheads): New. Extracted from...
18155 * src/LR0.c (set_state_table): here.
18156 * src/lalr.c (lalr): Call it.
18157
18158 2001-12-10 Akim Demaille <akim@epita.fr>
18159
18160 * src/state.h (shifts): Remove the `number' member: shifts are
18161 attached to state, hence no longer need to be labelled with a
18162 state number.
18163
18164 2001-12-10 Akim Demaille <akim@epita.fr>
18165
18166 Now that states have a complete set of members, the linked list of
18167 shifts is useless: just fill directly the state's shifts member.
18168
18169 * src/state.h (shifts): Remove the `next' member.
18170 * src/LR0.c (first_state, last_state): Remove.
18171 Adjust the callers.
18172 (augment_automaton): Don't look for the shifts that must be added
18173 a shift on EOF: it is those of the state we looked for! But now,
18174 since shifts are attached, it is no longer needed to looking
18175 merely by its id: its number.
18176
18177 2001-12-10 Akim Demaille <akim@epita.fr>
18178
18179 * src/LR0.c (augment_automaton): Better variable locality.
18180 Remove an impossible branch: if there is a state corresponding to
18181 the start symbol being shifted, then there is shift for the start
18182 symbol from the initial state.
18183
18184 2001-12-10 Akim Demaille <akim@epita.fr>
18185
18186 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18187 only when appropriate: when insert_start_shifting_state' is not
18188 invoked.
18189 * tests/regression.at (Rule Line Numbers): Adjust.
18190
18191 2001-12-10 Akim Demaille <akim@epita.fr>
18192
18193 * src/LR0.c (augment_automaton): Now that all states have shifts,
18194 merge the two cases addition shifts to the initial state.
18195
18196 2001-12-10 Akim Demaille <akim@epita.fr>
18197
18198 * src/lalr.c (set_state_table): Move to...
18199 * src/LR0.c: here.
18200 * src/lalr.c (lalr): Don't call it...
18201 * src/LR0.c (generate_states): do it.
18202 * src/LR0.h (first_state): Remove, only the table is used.
18203
18204 2001-12-10 Akim Demaille <akim@epita.fr>
18205
18206 * src/LR0.h (first_shift, first_reduction): Remove.
18207 * src/lalr.c: Don't use first_shift: find shifts through the
18208 states.
18209
18210 2001-12-10 Akim Demaille <akim@epita.fr>
18211
18212 * src/LR0.c: Attach shifts to states as soon as they are
18213 computed.
18214 * src/lalr.c (set_state_table): Instead of assigning shifts to
18215 state, just assert that the mapping was properly done.
18216
18217 2001-12-10 Akim Demaille <akim@epita.fr>
18218
18219 * src/LR0.c (insert_start_shift): Rename as...
18220 (insert_start_shifting_state): this.
18221 (insert_eof_shifting_state, insert_accepting_state): New.
18222 (augment_automaton): Adjust.
18223 Better locality of the variables.
18224 When looking if the start_symbol is shifted from the initial
18225 state, using `while (... symbol != start_symbol ...)' sounds
18226 better than `while (... symbol < start_symbol ...)': If fail
18227 to see how the order between symbols could be relevant!
18228
18229 2001-12-10 Akim Demaille <akim@epita.fr>
18230
18231 * src/getargs.h: Don't declare `spec_name_prefix' and
18232 `spec_file_prefix', declared by src/files.h.
18233 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18234 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18235 * src/output.c (prepare): Adjust.
18236 * src/reader.c (symbols_output): Likewise.
18237 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18238
18239 2001-12-10 Akim Demaille <akim@epita.fr>
18240
18241 * src/muscle_tab.c (muscle_init): NULL is a better default than
18242 `"0"'.
18243
18244 2001-12-10 Akim Demaille <akim@epita.fr>
18245
18246 * src/reader.c (reader): Calling symbols_output once is enough.
18247
18248 2001-12-10 Akim Demaille <akim@epita.fr>
18249
18250 Now that states have a complete set of members, the linked list of
18251 reductions is useless: just fill directly the state's reductions
18252 member.
18253
18254 * src/state.h (struct reductions): Remove member `number' and
18255 `next'.
18256 * src/LR0.c (first_reduction, last_reduction): Remove.
18257 (save_reductions): Don't link the new reductions, store them in
18258 this_state.
18259 * src/lalr.c (set_state_table): No need to attach reductions to
18260 states, it's already done.
18261 * src/output.c (output_actions): No longer free the shifts, then
18262 the reductions, then the states: free all the states and their
18263 members.
18264
18265 2001-12-10 Akim Demaille <akim@epita.fr>
18266
18267 * src/options.c (OPTN, DRTV, BOTH): New.
18268 (option_table): Use them.
18269
18270 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18271 the job of system.h.
18272 * src/options.c: Don't include stdio.h and xalloc.h for the same
18273 reasons.
18274
18275 2001-12-10 Akim Demaille <akim@epita.fr>
18276
18277 * src/output.c (output, prepare): Make sure the values of the
18278 muscles `action' and `prologue' are 0-terminated.
18279
18280 2001-12-10 Akim Demaille <akim@epita.fr>
18281
18282 Clean up GCC warnings.
18283
18284 * src/reader.c (copy_action): `buf' is not used.
18285 (parse_skel_decl): Be static.
18286 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18287 * src/options.h (create_long_option_table): Have a real prototype.
18288 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18289 (hash_delete_at): Return const void *.
18290 Adjust casts to preserve the const.
18291
18292 2001-12-10 Akim Demaille <akim@epita.fr>
18293
18294 * configure.in: Require 2.52g.
18295 M4 is not needed, but AUTOM4TE is.
18296 * m4/m4.m4: Remove.
18297 * tests/Makefile.am: Adjust.
18298
18299 2001-12-10 Akim Demaille <akim@epita.fr>
18300
18301 One structure for states is enough, even though theoretically
18302 there are LR(0) states and LALR(1) states.
18303
18304 * src/lalr.h (state_t): Remove.
18305 (state_table): Be state_t **, not state_t *.
18306 * src/state.h (core, CORE_ALLOC): Rename as...
18307 (state_t, STATE_ALLOC): this.
18308 Add the LALR(1) members: shifts, reductions, errs.
18309 * src/LR0.c (state_table): Rename as...
18310 (state_hash): this, to avoid name clashes with the global
18311 `state_table'.
18312 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18313 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18314
18315 2001-12-10 Akim Demaille <akim@epita.fr>
18316
18317 Bison dumps core on bash.y.
18318 Reported by Pascal Bart.
18319
18320 * src/warshall.c (bitmatrix_print): New.
18321 (TC): Use it.
18322 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18323 j must be the outer loop.
18324 * tests/regression.at (Broken Closure): New.
18325
18326 2001-12-05 Akim Demaille <akim@epita.fr>
18327
18328 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18329 its argument.
18330 Reported by Peter Hamorsky.
18331
18332 2001-12-05 Akim Demaille <akim@epita.fr>
18333
18334 * src/conflicts.c (err_table): Remove.
18335 (resolve_sr_conflict): Adjust.
18336 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18337 Rename as...
18338 (state_t.reductions, state_t.shifts): this.
18339
18340 2001-12-05 Akim Demaille <akim@epita.fr>
18341
18342 * src/reduce.c (reduce_grammar_tables): No longer disable the
18343 removal of useless rules via CPP but via `if (0)', so that the
18344 compiler still check the code is valid.
18345 For instance, it should have noticed `rline' no longer exists: use
18346 the `line' member of rule_t.
18347 * src/gram.c (dummy, rline): Remove, unused.
18348
18349 2001-12-05 Akim Demaille <akim@epita.fr>
18350
18351 * src/output.c (pack_vector): Use assert, not berror.
18352 * src/main.c (berror): Remove, unused.
18353
18354 2001-12-05 Akim Demaille <akim@epita.fr>
18355
18356 New experimental feature: if --verbose --trace output all the
18357 items of a state, not only its kernel.
18358
18359 * src/print.c (print_core): If `trace_flag', then invoke closure
18360 before outputting the items of the state (print_core is no longer
18361 a correct name them).
18362 (print_results): Invoke new_closure/free_closure if needed.
18363
18364 2001-12-05 Akim Demaille <akim@epita.fr>
18365
18366 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18367 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18368 (nitemset): for consistency with the rest of the project.
18369
18370 2001-12-05 Akim Demaille <akim@epita.fr>
18371
18372 * src/closure.c (print_closure): Improve.
18373 (closure): Use it for printing input and output.
18374
18375 2001-12-05 Akim Demaille <akim@epita.fr>
18376
18377 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18378 indexed by nonterminals.
18379
18380 2001-12-05 Akim Demaille <akim@epita.fr>
18381
18382 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18383 what it was!).
18384 * src/warshall.h: Remove accidental duplication of the content.
18385
18386 2001-12-05 Akim Demaille <akim@epita.fr>
18387
18388 * src/closure.c (set_fderives): De-obfuscate.
18389
18390 2001-12-05 Akim Demaille <akim@epita.fr>
18391
18392 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18393
18394 2001-12-05 Akim Demaille <akim@epita.fr>
18395
18396 * src/closure.c (set_firsts): De-obfuscate.
18397
18398 2001-12-05 Akim Demaille <akim@epita.fr>
18399
18400 * src/output.c (action_row): De-obfuscate
18401 using the good o' techniques: arrays not pointers, variable
18402 locality, BITISSET, RESETBIT etc.
18403
18404 2001-12-05 Akim Demaille <akim@epita.fr>
18405
18406 Pessimize the code to simplify it: from now on, all the states
18407 have a valid SHIFTS, which NSHIFTS is possibly 0.
18408
18409 * src/LR0.c (shifts_new): Be global and move to..
18410 * src/state.c, src/state.h: here.
18411 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18412 * src/print_graph: Adjust.
18413
18414 2001-12-05 Akim Demaille <akim@epita.fr>
18415
18416 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18417 * src/conflicts.c: Use it.
18418 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18419 incorrectly ``simplified''.
18420
18421 2001-12-05 Akim Demaille <akim@epita.fr>
18422
18423 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18424 using the good o' techniques: arrays not pointers, variable
18425 locality, BITISSET, RESETBIT etc.
18426
18427 2001-12-05 Akim Demaille <akim@epita.fr>
18428
18429 * src/state.h (SHIFT_SYMBOL): New.
18430 * src/conflicts.c: Use it to deobfuscate.
18431
18432 2001-12-05 Akim Demaille <akim@epita.fr>
18433
18434 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18435 (print_reductions): De-obfuscate using the good o' techniques:
18436 arrays not pointers, variable locality, BITISSET.
18437
18438 2001-12-05 Akim Demaille <akim@epita.fr>
18439
18440 * src/conflicts.c (print_reductions): Arrays, not pointers.
18441 Use BITISSET.
18442
18443 2001-12-05 Akim Demaille <akim@epita.fr>
18444
18445 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18446
18447 2001-12-05 Akim Demaille <akim@epita.fr>
18448
18449 * src/conflicts.c (print_reductions): Improve variable locality.
18450
18451 2001-12-05 Akim Demaille <akim@epita.fr>
18452
18453 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18454
18455 2001-12-05 Akim Demaille <akim@epita.fr>
18456
18457 * src/conflicts.c (print_reductions): Improve variable locality.
18458
18459 2001-12-05 Akim Demaille <akim@epita.fr>
18460
18461 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18462 * src/lalr.c: Use them.
18463
18464 2001-12-05 Akim Demaille <akim@epita.fr>
18465
18466 * src/LR0.c (augment_automaton): Formatting changes.
18467 Better variable locality.
18468
18469 2001-12-05 Akim Demaille <akim@epita.fr>
18470
18471 * src/lalr.c (matrix_print): New.
18472 (transpose): Use it.
18473 Use arrays instead of pointers.
18474
18475 2001-12-05 Akim Demaille <akim@epita.fr>
18476
18477 * src/lalr.c (maxrhs): Move to...
18478 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18479 * src/lalr.c (build_relations): Adjust.
18480
18481 2001-12-05 Akim Demaille <akim@epita.fr>
18482
18483 * src/lalr.c (transpose): Free the memory allocated to the
18484 argument, as it is replaced by the results by the unique caller.
18485 (build_relations): Merely invoke transpose: it handles the memory
18486 deallocation.
18487 Improve variable locality.
18488 Avoid variables used as mere abbreviations.
18489 (compute_lookaheads): Use arrays instead of pointers.
18490
18491 2001-12-05 Akim Demaille <akim@epita.fr>
18492
18493 * src/lalr.c (initialize_F): Improve variable locality.
18494 Avoid variables used as mere abbreviations.
18495
18496 2001-12-05 Akim Demaille <akim@epita.fr>
18497
18498 * src/derives.c (print_derives): Display the ruleno.
18499 * src/lalr.c (initialize_F, transpose): Better variable locality
18500 to improve readability.
18501 Avoid variables used as mere abbreviations.
18502
18503 2001-12-05 Akim Demaille <akim@epita.fr>
18504
18505 * src/lalr.c (traverse): Use arrays instead of pointers.
18506
18507 2001-12-05 Akim Demaille <akim@epita.fr>
18508
18509 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18510 the handling of squeue.
18511 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18512
18513 2001-12-05 Akim Demaille <akim@epita.fr>
18514
18515 Because useless nonterminals are now kept alive (instead of being
18516 `destroyed'), we now sometimes examine them, and store information
18517 related to them. Hence we need to know their number, and adjust
18518 memory allocations.
18519
18520 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18521 static.
18522 * src/LR0.c (allocate_itemsets): The memory allocated to
18523 `symbol_count' was used for two different purpose: once to count
18524 the number of occurrences of each symbol, and later reassigned to
18525 `shift_symbol', containing the symbol that can be shifted from a
18526 given state.
18527 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18528 only, and...
18529 (new_itemsets): Allocate `shift_symbol' here.
18530 (allocate_itemsets): symbol_count includes useless nonterminals.
18531 Make room for them.
18532 (free_storage): Use `free', not `XFREE', for pointers that cannot
18533 be null.
18534
18535 2001-12-05 Akim Demaille <akim@epita.fr>
18536
18537 * src/nullable.c (set_nullable): Deobfuscate the handling of
18538 ritem.
18539 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18540
18541 2001-12-05 Akim Demaille <akim@epita.fr>
18542
18543 * src/gram.c, src/gram.h (ritem_print): New.
18544 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18545 (This useless function was defined only to work around VMS linkers
18546 that can't handle compilation units with variables only).
18547 * src/reduce.c (dump_grammar): Use it to trace the construction of
18548 ritem.
18549
18550 2001-12-04 Paul Eggert <eggert@twinsun.com>
18551
18552 * src/bison.simple (union yyalloc): Change member names
18553 to be the same as the stack names.
18554 (yyparse): yyptr is now union yyalloc *, not char *.
18555 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18556 and may generate better code on some machines.
18557 (yystpcpy): Use prototype if __STDC__ is defined, not just
18558 if __cplusplus is defined.
18559
18560 2001-11-30 Akim Demaille <akim@epita.fr>
18561
18562 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18563 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18564 Gettext doesn't compile cleanly, and dies with -Werror.
18565 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18566 Include WARNING_CFLAGS here.
18567 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18568 before being defined.
18569
18570 2001-11-27 Paul Eggert <eggert@twinsun.com>
18571
18572 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18573 First arg is int, not unsigned.
18574 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18575 (SIZE_MAX, UINT_MAX): New macros.
18576 (quotearg_n_options): Abort if N is negative.
18577 Avoid overflow check on hosts where size_t is 64 bits and int
18578 is 32 bits, as overflow is impossible there.
18579 Fix off-by-one typo that caused unnecessary reallocation.
18580
18581 2001-11-29 Paul Eggert <eggert@twinsun.com>
18582
18583 Name space cleanup in generated parser.
18584
18585 * doc/bison.texinfo (Bison Parser): Discuss system headers
18586 and their effect on the user name space.
18587
18588 * src/bison.simple:
18589 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18590 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18591 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18592
18593 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18594 on user names when possible.
18595
18596 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18597 Simplify test for whather <alloca.h> exists.
18598
18599 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18600
18601 (<stdio.h>): Include if YYDEBUG.
18602
18603 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18604 ! defined (yyoverflow) && ! defined (yymemcpy).
18605
18606 (yymemcpy, yyparse): Rename local variables as needed so that
18607 they all begin with 'yy'.
18608
18609 (yystrlen, yystpcpy): New functions.
18610
18611 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18612 All uses changed.
18613
18614 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18615 instead of relying on string.h functions. Use YYSTACK_ALLOC
18616 and YYSTACK_FREE instead of malloc and free.
18617
18618 2001-11-30 Akim Demaille <akim@epita.fr>
18619
18620 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18621 before their first uses.
18622 (YYBISON, YYPURE): Move to the top of the output.
18623
18624 2001-11-30 Akim Demaille <akim@epita.fr>
18625
18626 * tests/reduce.at (Useless Nonterminals): Fix.
18627
18628 2001-11-30 Akim Demaille <akim@epita.fr>
18629
18630 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18631 if body instead of `;' to pacify GCC's warnings.
18632
18633 2001-11-30 Akim Demaille <akim@epita.fr>
18634
18635 Instead of mapping the LHS of unused rules to -1, keep the LHS
18636 valid, but flag the rules as invalid.
18637
18638 * src/gram.h (rule_t): `useful' is a new member.
18639 * src/print.c (print_grammar): Adjust.
18640 * src/derives.c (set_derives): Likewise.
18641 * src/reader.c (packgram, reduce_output): Likewise.
18642 * src/reduce.c (reduce_grammar_tables): Likewise.
18643 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18644
18645 2001-11-30 Akim Demaille <akim@epita.fr>
18646
18647 * src/reduce.c (reduce_output): Formatting changes.
18648 * src/print.c (print_results, print_grammar): Likewise.
18649 * tests/regression.at (Rule Line Numbers)
18650 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18651
18652 2001-11-30 Akim Demaille <akim@epita.fr>
18653
18654 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18655 useless nonterminals, move them at the end of the symbol arrays.
18656 (reduce_output): Adjust.
18657 * tests/reduce.at (Useless Nonterminals): Adjust.
18658
18659 2001-11-30 Akim Demaille <akim@epita.fr>
18660
18661 * src/reduce.c: Various comment/formatting changes.
18662 (nonterminals_reduce): New, extracted from...
18663 (reduce_grammar_tables): here.
18664 (reduce_grammar): Call nonterminals_reduce.
18665
18666 2001-11-29 Paul Eggert <eggert@twinsun.com>
18667
18668 * src/bison.simple (YYSTACK_REALLOC): Remove.
18669 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18670 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18671 New macros.
18672 (union yyalloc): New type.
18673 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18674 an arbitrary restriction on hosts where size_t is wider than int.
18675
18676 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18677 a parser stack overflow. Allocate just one block of memory for all
18678 three stacks, instead of allocating three blocks; this typically is
18679 faster and reduces fragmentation.
18680
18681 Do not limit the number of items in the stack to a value that fits
18682 in 'int', as this is an arbitrary limit on hosts with 64-bit
18683 size_t and 32-bit int.
18684
18685 2001-11-29 Marc Autret <autret_m@epita.fr>
18686
18687 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18688 of defining YYERROR_VERBOSE.
18689 [AT_DATA]: $4 is now out of C declarations in the prologue.
18690
18691 2001-11-28 Marc Autret <autret_m@epita.fr>
18692
18693 * src/reader.c (parse_dquoted_param): New.
18694 (parse_skel_decl): Use it.
18695 * src/lex.h: Add its prototype.
18696 * src/lex.c (literalchar): Become not static.
18697
18698 2001-11-28 Marc Autret <autret_m@epita.fr>
18699
18700 * src/output.h: And put its extern declaration here.
18701 * src/output.c (error_verbose): Define here.
18702 (prepare): Echo name modification.
18703 * src/getargs.h: Clean its extern declaration.
18704 * src/getargs.c (error_verbose_flag): Remove.
18705 (getargs): Remove case 'e'.
18706 * src/options.c (option_table): 'error-verbose' is now seen as simple
18707 percent option.
18708 Include output.h.
18709
18710 * src/reader.c (read_declarations): Remove case tok_include.
18711 (parse_include_decl): Remove.
18712 * src/lex.h (token_t): Remove tok_include.
18713 * src/options.c (option_table): 'include' is now a simple command line
18714 option.
18715
18716 2001-11-28 Marc Autret <autret_m@epita.fr>
18717
18718 * src/bison.simple: Adjust muscle names.
18719 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18720 * src/output.c (prepare): s/_/-/ for the muscles names.
18721 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18722
18723 2001-11-28 Marc Autret <autret_m@epita.fr>
18724
18725 * src/bison.simple: Fix debug.
18726 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18727
18728 2001-11-28 Akim Demaille <akim@epita.fr>
18729
18730 * src/LR0.c (shifts_new): New.
18731 (save_shifts, insert_start_shift, augment_automaton): Use it.
18732
18733 2001-11-28 Akim Demaille <akim@epita.fr>
18734
18735 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18736 keep ruleno only.
18737
18738 2001-11-28 Akim Demaille <akim@epita.fr>
18739
18740 * src/closure.c (closure): Instead of looping over word in array
18741 then bits in words, loop over bits in array.
18742
18743 2001-11-28 Akim Demaille <akim@epita.fr>
18744
18745 * src/closure.c (closure): No longer optimize the special case
18746 where all the bits of `ruleset[r]' are set to 0, to make the code
18747 clearer.
18748
18749 2001-11-28 Akim Demaille <akim@epita.fr>
18750
18751 * src/closure.c (closure): `r' and `c' are new variables, used to
18752 de-obfuscate accesses to RULESET and CORE.
18753
18754 2001-11-28 Akim Demaille <akim@epita.fr>
18755
18756 * src/reduce.c (reduce_print): Use ngettext.
18757 (dump_grammar): Improve the trace accuracy.
18758
18759 2001-11-28 Akim Demaille <akim@epita.fr>
18760
18761 * src/reduce.c (dump_grammar): Don't translate trace messages.
18762
18763 2001-11-28 Akim Demaille <akim@epita.fr>
18764
18765 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18766 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18767 as all tags are free'ed afterwards.
18768 From Enrico Scholz.
18769
18770 2001-11-27 Paul Eggert <eggert@twinsun.com>
18771
18772 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18773 use alloca when we didn't want to, and vice versa.
18774
18775 2001-11-27 Marc Autret <autret_m@epita.fr>
18776
18777 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18778 initialization.
18779 * src/output.c (prepare): Remove its update.
18780
18781 2001-11-27 Marc Autret <autret_m@epita.fr>
18782
18783 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18784 Use %error-verbose.
18785
18786 2001-11-27 Marc Autret <autret_m@epita.fr>
18787
18788 * src/bison.simple: Remove YYERROR_VERBOSE using.
18789 Use %%error_verbose.
18790 (yyparse): Likewise.
18791 * src/output.c (prepare): Give its final value.
18792 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18793 * src/getargs.h: Add its extern declaration.
18794 * src/getargs.c (error_verbose_flag): New int.
18795 (getargs): Update to catch new case.
18796 * src/options.c (option_table): 'error-verbose' is a new option.
18797 (shortopts): Update.
18798
18799 2001-11-27 Akim Demaille <akim@epita.fr>
18800
18801 * src/system.h: Use intl/libgettext.h.
18802 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18803
18804 2001-11-27 Akim Demaille <akim@epita.fr>
18805
18806 * tests/torture.at (Exploding the Stack Size with Malloc):
18807 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18808
18809 2001-11-27 Akim Demaille <akim@epita.fr>
18810
18811 * src/files.c: Include error.h.
18812 Reported by Hans Aberg.
18813
18814 2001-11-26 Marc Autret <autret_m@epita.fr>
18815
18816 * src/reader.c (parse_include_decl): New, not yet implemented.
18817 (read_declarations): Add case tok_include.
18818 * src/getargs.h (include): Add its extern definition.
18819 * src/getargs.c (include): New const char *.
18820 (getargs): Add case '-I'.
18821 * src/options.c (option_table): Add include as command line and
18822 percent option.
18823 * src/lex.h (token_t): Add tok_include.
18824
18825 2001-11-26 Akim Demaille <akim@epita.fr>
18826
18827 * src/reader.c (readgram): Make sure rules for mid-rule actions
18828 have a lineno equal to that of their host rule.
18829 Reported by Hans Aberg.
18830 * tests/regression.at (Rule Line Numbers): New.
18831
18832 2001-11-26 Akim Demaille <akim@epita.fr>
18833
18834 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18835 size_ts.
18836
18837 2001-11-26 Akim Demaille <akim@epita.fr>
18838
18839 * src/complain.c, src/complain.h (error): Remove, provided by
18840 lib/error.[ch].
18841
18842 2001-11-26 Akim Demaille <akim@epita.fr>
18843
18844 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18845 issue an error message.
18846 * tests/regression.at (Invalid %directive): New.
18847 Reported by Hans Aberg.
18848
18849 2001-11-26 Akim Demaille <akim@epita.fr>
18850
18851 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18852 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18853
18854 2001-11-26 Akim Demaille <akim@epita.fr>
18855
18856 * src/conflicts.c (conflicts_print): Don't complain at all when
18857 there are no reduce/reduce conflicts, and as many shift/reduce
18858 conflicts as expected.
18859 * tests/regression.at (%expect right): Adjust.
18860
18861 2001-11-23 Akim Demaille <akim@epita.fr>
18862
18863 * lib/alloca.c: Update, from fileutils.
18864
18865 2001-11-23 Akim Demaille <akim@epita.fr>
18866
18867 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18868
18869 2001-11-23 Akim Demaille <akim@epita.fr>
18870
18871 * src/system.h: Include alloca.h.
18872 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18873
18874 2001-11-23 Akim Demaille <akim@epita.fr>
18875
18876 * src/print_graph.c (print_actions): Remove `rule', unused.
18877 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18878 pacify GCC's signed < unsigned warnings.
18879 * src/closure.c (itemsetsize): Likewise.
18880 * src/reader.c (symbol_list_new): Static.
18881
18882 2001-11-23 Akim Demaille <akim@epita.fr>
18883
18884 Attaching lineno to buckets is stupid, since only one copy of each
18885 symbol is kept, only the line of the first occurrence is kept too.
18886
18887 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18888 * src/reader.c (rline_allocated): Remove, unused.
18889 (symbol_list): Have a `line' member.
18890 (symbol_list_new): New.
18891 (readgram): Use it.
18892 * src/print.c (print_grammar): Output the rule line numbers.
18893 * tests/regression.at (Solved SR Conflicts)
18894 (Unresolved SR Conflicts): Adjust.
18895 Reported by Hans Aberg.
18896
18897 2001-11-22 Marc Autret <autret_m@epita.fr>
18898
18899 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18900
18901 2001-11-22 Marc Autret <autret_m@epita.fr>
18902
18903 * src/muscle_tab.c (muscle_init): Remove initialization of
18904 skeleton muscle.
18905 * src/output.c (output_master_parser): Do it here.
18906
18907 2001-11-20 Akim Demaille <akim@epita.fr>
18908
18909 * po/sv.po: New.
18910 * configure.in (ALL_LINGUAS): Adjust.
18911 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18912 longer contains strings to translate.
18913
18914 2001-11-19 Akim Demaille <akim@epita.fr>
18915
18916 * src/conflicts.c (conflicts_print): Add a missing \n.
18917
18918 2001-11-19 Akim Demaille <akim@epita.fr>
18919
18920 * src/nullable.c (nullable_print): New.
18921 (set_nullable): Call it when tracing.
18922 Better locality of variables.
18923
18924 2001-11-19 Akim Demaille <akim@epita.fr>
18925
18926 * src/print.c (print_actions): Better locality of variables.
18927
18928 2001-11-19 Akim Demaille <akim@epita.fr>
18929
18930 * src/derives.c (print_derives): Fix and enrich.
18931 * src/closure.c (print_fderives): Likewise.
18932
18933 2001-11-19 Akim Demaille <akim@epita.fr>
18934
18935 * src/closure.c (itemsetend): Remove, replaced with...
18936 (itemsetsize): new.
18937
18938 2001-11-19 Akim Demaille <akim@epita.fr>
18939
18940 * src/LR0.c (kernel_end): Remove, replaced with...
18941 (kernel_size): new.
18942
18943 2001-11-19 Akim Demaille <akim@epita.fr>
18944
18945 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18946 to clarify.
18947
18948 2001-11-19 Akim Demaille <akim@epita.fr>
18949
18950 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18951
18952 2001-11-19 Akim Demaille <akim@epita.fr>
18953
18954 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18955 trace messages.
18956 * src/LR0.c: Likewise.
18957 (allocate_itemsets): Use arrays instead of pointers to clarify.
18958
18959 2001-11-19 Akim Demaille <akim@epita.fr>
18960
18961 * src/getargs.c (statistics_flag): Replace with...
18962 (trace_flag): New.
18963 (longopts): Accept --trace instead of --statistics.
18964 * src/getargs.h, src/options.c: Adjust.
18965 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18966 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18967
18968 2001-11-19 Akim Demaille <akim@epita.fr>
18969
18970 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18971 pointers to clarify the code.
18972 (save_reductions, save_shifts): Factor common parts of alternatives.
18973
18974 2001-11-19 Akim Demaille <akim@epita.fr>
18975
18976 * src/LR0.c (new_state, get_state): Complete TRACE code.
18977 * src/closure.c: Include `reader.h' to get `tags', needed by the
18978 trace code.
18979 Rename the conditional DEBUG as TRACE.
18980 Output consistently TRACEs to stderr, not stdout.
18981 * src/derives.c: Likewise.
18982 * src/reduce.c: (inaccessable_symbols): Using if is better style
18983 than goto.
18984 Use `#if TRACE' instead of `#if 0' for tracing code.
18985
18986 2001-11-19 Akim Demaille <akim@epita.fr>
18987
18988 * src/system.h (LIST_FREE, shortcpy): New.
18989 * src/LR0.c: Use them.
18990 * src/output.c (free_itemsets, free_reductions, free_shifts):
18991 Remove, replaced by LIST_FREE.
18992
18993 2001-11-19 Akim Demaille <akim@epita.fr>
18994
18995 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18996 (REDUCTIONS_ALLOC): New.
18997 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18998 allocation.
18999
19000 2001-11-19 Akim Demaille <akim@epita.fr>
19001
19002 * src/LR0.c (new_state): Complete trace code.
19003 * src/nullable.c (set_nullable): Don't translate traces.
19004
19005 2001-11-19 Akim Demaille <akim@epita.fr>
19006
19007 * src/print_graph.c (print_core): Better locality of variables.
19008 * src/print.c (print_core): Likewise.
19009
19010 2001-11-19 Akim Demaille <akim@epita.fr>
19011
19012 * src/vcg.c: You do the output, so you are responsible of the
19013 handling of VCG syntax, in particular: use quotearg.
19014 * src/print_graph.c: Don't.
19015 (print_actions): Don't output the actions as part of the nodes,
19016 since that's the job of the edges.
19017 (print_state): Don't output by hand: fill the node description,
19018 and ask for its output.
19019
19020 2001-11-19 Akim Demaille <akim@epita.fr>
19021
19022 * src/bison.simple (yyparse): When verbosely reporting an error,
19023 no longer put additional quotes around token names.
19024 * tests/calc.at: Adjust.
19025
19026 2001-11-19 Akim Demaille <akim@epita.fr>
19027
19028 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
19029 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
19030 * src/output.c: Adjust.
19031
19032 2001-11-19 Akim Demaille <akim@epita.fr>
19033
19034 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
19035 (rule_t): this.
19036 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
19037
19038 2001-11-19 Akim Demaille <akim@epita.fr>
19039
19040 * src/gram.h (rule_t): New.
19041 (rule_table): New.
19042 (rrhs, rlhs): Remove, part of state_t.
19043 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
19044 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
19045 * src/reader.c, src/reduce.c: Adjust.
19046
19047 2001-11-19 Akim Demaille <akim@epita.fr>
19048
19049 * src/reader.c (symbols_output): New, extracted from...
19050 (packsymbols): Here.
19051 (reader): Call it.
19052
19053 2001-11-19 Akim Demaille <akim@epita.fr>
19054
19055 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
19056 (maxrhs): this new function.
19057
19058 2001-11-19 Akim Demaille <akim@epita.fr>
19059
19060 * src/lalr.c (F): New macro to access the variable F.
19061 Adjust.
19062
19063 2001-11-19 Akim Demaille <akim@epita.fr>
19064
19065 * src/lalr.h (LA): New macro to access the variable LA.
19066 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19067 * src/lalr.c: Adjust.
19068
19069 2001-11-19 Akim Demaille <akim@epita.fr>
19070
19071 * src/lalr.c (initialize_LA): Only initialize LA. Let...
19072 (set_state_table): handle the `lookaheads' members.
19073
19074 2001-11-19 Akim Demaille <akim@epita.fr>
19075
19076 * src/lalr.h (lookaheads): Removed array, whose contents is now
19077 a member of...
19078 (state_t): this structure.
19079 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19080 Adjust.
19081
19082 2001-11-19 Akim Demaille <akim@epita.fr>
19083
19084 * src/lalr.h (consistent): Removed array, whose contents is now
19085 a member of...
19086 (state_t): this structure.
19087 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19088 Adjust.
19089
19090 2001-11-19 Akim Demaille <akim@epita.fr>
19091
19092 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
19093 contents are now members of...
19094 (state_t): this structure.
19095 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
19096 Adjust.
19097
19098 2001-11-19 Akim Demaille <akim@epita.fr>
19099
19100 * src/lalr.h (state_t): New.
19101 (state_table): Be a state_t * instead of a core **.
19102 (accessing_symbol): Remove, part of state_t.
19103 * src/lalr.c: Adjust.
19104 (set_accessing_symbol): Merge into...
19105 (set_state_table): this.
19106 * src/print_graph.c, src/conflicts.c: Adjust.
19107
19108 2001-11-14 Akim Demaille <akim@epita.fr>
19109
19110 * tests/calc.at, tests/output.at, tests/regression.at,
19111 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
19112 now the tests are run in private dirs, therefore AC_CLEANUP and
19113 family can be simplified to 0-ary.
19114 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
19115 use abs. path to find config.h.
19116 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
19117 stderr, there can be way too much random noise.
19118 Instead pass -Werror to GCC and rely on the exit status.
19119 Reported by Wolfram Wagner.
19120
19121 2001-11-14 Akim Demaille <akim@epita.fr>
19122
19123 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
19124 defined only if yyoverflow is defined, to avoid `warning: unused
19125 variable `yyvs1''.
19126 Reported by The Test Suite.
19127
19128 2001-11-14 Akim Demaille <akim@epita.fr>
19129
19130 * src/print.c: Include reduce.h.
19131 Reported by Hans Aberg.
19132
19133 2001-11-14 Akim Demaille <akim@epita.fr>
19134
19135 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
19136 Revert a previous patch: these are really const.
19137 * src/conflicts.c (conflict_report): Additional useless pair of
19138 braces to pacify GCC's warnings for `if () if () {} else {}'.
19139 * src/lex.c (parse_percent_token): Replace equal_offset with
19140 arg_offset.
19141 arg is const.
19142 Be sure to strdup `arg' when used, since there is no reason for
19143 token_buffer not to change.
19144
19145 2001-11-14 Akim Demaille <akim@epita.fr>
19146
19147 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
19148 definition.
19149 * src/main.c (main): Use them.
19150 Suggested by Hans Aberg.
19151
19152 2001-11-12 Akim Demaille <akim@epita.fr>
19153
19154 * src/system.h (ngettext): Now that we use ngettext, be sure to
19155 provide a default definition when NLS are not used.
19156
19157 2001-11-12 Akim Demaille <akim@epita.fr>
19158
19159 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
19160 Use @kbd to denote user input.
19161 (Language and Grammar): ANSIfy the example.
19162 Adjust its layout for info/notinfo.
19163 (Location Tracking Calc): Output error messages to stderr.
19164 Output locations in a more GNUtically correct way.
19165 Fix a couple of Englishos.
19166 Adjust @group/@end group pairs.
19167
19168 2001-11-12 Akim Demaille <akim@epita.fr>
19169
19170 %expect was not functioning at all.
19171
19172 * src/conflicts.c (expected_conflicts): Set to -1.
19173 (conflict_report): Use ngettext.
19174 (conflicts_print): Check %expect and make its violation an error.
19175 * doc/bison.texinfo (Expect Decl): Adjust.
19176 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19177 * tests/regression.at (%expect not enough, %expect right)
19178 (%expect too much): New.
19179
19180 2001-11-12 Akim Demaille <akim@epita.fr>
19181
19182 * tests/regression.at (Conflicts): Rename as...
19183 (Unresolved SR Conflicts): this.
19184 (Solved SR Conflicts): New.
19185
19186 2001-11-12 Akim Demaille <akim@epita.fr>
19187
19188 * src/reduce.c (print_results): Rename as...
19189 (reduce_output): This.
19190 Output to OUT, passed as argument, instead of output_obstack.
19191 (dump_grammar): Likewise.
19192 (reduce_free): New.
19193 Also free V1.
19194 (reduce_grammar): No longer call reduce_output, since...
19195 * src/print.c (print_results): do it.
19196 * src/main.c (main): Call reduce_free;
19197
19198 2001-11-12 Akim Demaille <akim@epita.fr>
19199
19200 * src/conflicts.c (print_reductions): Accept OUT as argument.
19201 Output to it, not to output_obstack.
19202 * src/print.c (print_actions): Adjust.
19203
19204 2001-11-12 Akim Demaille <akim@epita.fr>
19205
19206 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19207 the result instead of using...
19208 (src_total, rrc_total, src_count, rrc_count): Remove.
19209 (any_conflicts): Remove.
19210 (print_conflicts): Split into...
19211 (conflicts_print, conflicts_output): New.
19212 * src/conflicts.h: Adjust.
19213 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19214 * src/print.c (print_grammar): Issue `\n' between two rules.
19215 * tests/regression.at (Conflicts): New.
19216 Reported by Tom Lane.
19217
19218 2001-11-12 Akim Demaille <akim@epita.fr>
19219
19220 * tests/regression.at (Invalid input): Remove, duplicate with
19221 ``Invalid input: 1''.
19222
19223 2001-11-12 Akim Demaille <akim@epita.fr>
19224
19225 * tests/torture.at (AT_DATA_STACK_TORTURE)
19226 (Exploding the Stack Size with Alloca)
19227 (Exploding the Stack Size with Malloc): New.
19228
19229 2001-11-12 Akim Demaille <akim@epita.fr>
19230
19231 * src/bison.simple (YYSTACK_REALLOC): New.
19232 (yyparse) [!yyoverflow]: Use it and free the old stack.
19233 Reported by Per Allansson.
19234
19235 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19236
19237 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19238 define CPP macro, which substitute YYSTYPE by yystype.
19239 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19240 with yyltype/YYLTYPE. This allows inclusion of the generated
19241 header within the parser if the compiler, such as GGC, accepts
19242 multiple equivalent #defines.
19243 From Akim.
19244
19245 2001-11-05 Akim Demaille <akim@epita.fr>
19246
19247 * src/reader.c (symbols_output): New, extracted from...
19248 (packsymbols): here.
19249 (reader): Adjust.
19250
19251 2001-11-05 Akim Demaille <akim@epita.fr>
19252
19253 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19254
19255 2001-11-05 Akim Demaille <akim@epita.fr>
19256
19257 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19258 pattern.
19259
19260 2001-11-05 Akim Demaille <akim@epita.fr>
19261
19262 * src/options.h (struct option_table_struct): set_flags is void*.
19263 * src/options.c (longopts): Support `--output' and `%output'.
19264 (usage): Adjust.
19265 * src/lex.h (tok_setopt): Remove, replaced with...
19266 (tok_intopt, tok_stropt): these new guys.
19267 * src/lex.c (getopt.h): Not needed.
19268 (token_buffer, unlexed_token_buffer): Not const.
19269 (percent_table): Promote `-' over `_' in directive names.
19270 Active `%name-prefix', `file-prefix', and `output'.
19271 (parse_percent_token): Accept possible arguments to directives.
19272 Promote `-' over `_' in directive names.
19273
19274 2001-11-04 Akim Demaille <akim@epita.fr>
19275
19276 * doc/bison.texinfo (Decl Summary): Split the list into
19277 `directives for grammars' and `directives for bison'.
19278 Sort'em.
19279 Add description of `%name-prefix', `file-prefix', and `output'.
19280 Promote `-' over `_' in directive names.
19281 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19282 Simplify the description of `--name-prefix'.
19283 Promote `-' over `_' in directive names.
19284 Promote `--output' over `--output-file'.
19285 Fix the description of `--defines'.
19286 * tests/output.at: Exercise %file-prefix and %output.
19287
19288 2001-11-02 Akim Demaille <akim@epita.fr>
19289
19290 * doc/refcard.tex: Update.
19291
19292 2001-11-02 Akim Demaille <akim@epita.fr>
19293
19294 * src/symtab.h (SUNDEF): New.
19295 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19296 stand for `uninitialized', instead of 0.
19297 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19298 * src/lex.c (lex): Adjust.
19299
19300 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19301 Number it 0.
19302 Let yylex return it instead of a plain 0.
19303 Reported by Dick Streefland.
19304
19305 2001-11-02 Akim Demaille <akim@epita.fr>
19306
19307 * tests/regression.at (Mixing %token styles): New test.
19308
19309 2001-11-02 Akim Demaille <akim@epita.fr>
19310
19311 * src/reader.c (parse_thong_decl): Formatting changes.
19312 (token_translations_init): New, extracted from...
19313 (packsymbols): Here.
19314 Adjust.
19315
19316 2001-11-01 Akim Demaille <akim@epita.fr>
19317
19318 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19319 Check that `9foo.y' produces correct cpp guards.
19320 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19321 guards.
19322 Reported by Wwp.
19323
19324 2001-11-01 Akim Demaille <akim@epita.fr>
19325
19326 * tests/regression.at (Invalid input: 2): New.
19327 * src/lex.c (unlexed_token_buffer): New.
19328 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19329 too.
19330 Reported by Wwp.
19331
19332 2001-11-01 Akim Demaille <akim@epita.fr>
19333
19334 * tests/calc.at: Catch up with 1.30.
19335 * configure.in: Bump to 1.49a.
19336 Adjust to newer Autotest.
19337
19338 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19339
19340 * src/conflicts.c: Move global variables rrc_total and src_total ...
19341 (print_conflicts): here.
19342 * src/output.c (output): Free global variable user_toknums.
19343 * src/lex.c (token_obstack): Become static.
19344
19345 2001-10-18 Akim Demaille <akim@epita.fr>
19346
19347 * tests/atlocal.in (GCC): Add.
19348 * tests/calc.at: s/m4_match/m4_bmatch/.
19349 s/m4_patsubst/m4_bpatsubst/.
19350 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19351 * configure.in: AC_SUBST(GCC).
19352
19353 2001-10-14 Marc Autret <autret_m@epita.fr>
19354
19355 * src/options.c (create_long_option_table): Fix.
19356
19357 2001-10-10 Akim Demaille <akim@epita.fr>
19358
19359 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19360
19361 2001-10-04 Akim Demaille <akim@epita.fr>
19362
19363 * src/reader.c (parse_union_decl): Push the caracters in
19364 union_obstack, not attrs_obstack.
19365
19366 2001-10-04 Akim Demaille <akim@epita.fr>
19367
19368 Merge in the branch 1.29.
19369
19370 * src/reader.c (packsymbols): Use a temporary obstack for
19371 `%%tokendef', since output_stack is already used elsewhere.
19372
19373 2001-10-02 Akim Demaille <akim@epita.fr>
19374
19375 Bump 1.29d.
19376
19377 2001-10-02 Akim Demaille <akim@epita.fr>
19378
19379 Version 1.29c.
19380
19381 2001-10-02 Akim Demaille <akim@epita.fr>
19382
19383 * tests/regression.at (Invalid CPP headers): New.
19384 From Alexander Belopolsky.
19385 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19386
19387 2001-10-02 Akim Demaille <akim@epita.fr>
19388
19389 * tests/regression.at (Invalid input): New.
19390 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19391 Reported by Shura.
19392
19393 2001-10-02 Akim Demaille <akim@epita.fr>
19394
19395 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19396
19397 2001-10-02 Akim Demaille <akim@epita.fr>
19398
19399 * src/output.c (output_parser): Assert `skeleton'.
19400 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19401 systems.
19402 From Shura.
19403
19404 2001-10-01 Marc Autret <autret_m@epita.fr>
19405
19406 * src/lex.h: Echo modifications.
19407 * src/lex.c (unlex): Parameter is now token_t.
19408 From Hans Aberg.
19409
19410 2001-10-01 Marc Autret <autret_m@epita.fr>
19411
19412 * src/main.c: Include lex.h.
19413 From Hans Aberg.
19414
19415 2001-09-29 Akim Demaille <akim@epita.fr>
19416
19417 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19418
19419 2001-09-28 Akim Demaille <akim@epita.fr>
19420
19421 * tests/testsuite.at: Update to newer Autotest.
19422 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19423
19424 2001-09-27 Akim Demaille <akim@epita.fr>
19425
19426 Position independent wrapper.
19427
19428 * tests/bison: Remove.
19429 * tests/bison.in: New.
19430 * configure.in: Adjust.
19431
19432 2001-09-27 Paul Eggert <eggert@twinsun.com>
19433
19434 Port quotearg fixes from tar 1.13.24.
19435
19436 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19437 tm to be declared.
19438 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19439 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19440
19441 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19442 * m4/mbrtowc.m4: New file.
19443 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19444 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19445
19446 2001-09-27 Akim Demaille <akim@epita.fr>
19447
19448 Bump to 1.29c.
19449
19450 2001-09-27 Akim Demaille <akim@epita.fr>
19451
19452 Version 1.29b.
19453
19454 2001-09-25 Akim Demaille <akim@epita.fr>
19455
19456 * src/system.h: Include `xalloc.h'.
19457 Remove it from the C files.
19458 * src/files.c (output_files): Free the obstacks.
19459 * src/lex.c (init_lex): Rename as...
19460 (lex_init): this.
19461 (lex_free): New.
19462 * src/main.c (main): Use it.
19463
19464 2001-09-24 Marc Autret <autret_m@epita.fr>
19465
19466 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19467 to output informations in fout (FILE*).
19468 (open_graph, close_graph): Likewise.
19469 (output_graph, output_edge, output_node): Likewise.
19470 * src/vcg.h: Update function prototypes.
19471 * src/print_graph.c (print_graph): Open output graph file.
19472 (print_actions): Adjust.
19473 * src/files.h: Remove extern declaration.
19474 * src/files.c: Remove graph_obstack declaration.
19475 (open_files): Remove graph_obstack initialization.
19476 (output_files): Remove graph_obstack saving.
19477
19478 2001-09-24 Marc Autret <autret_m@epita.fr>
19479
19480 * src/files.c (compute_output_file_names): Fix.
19481
19482 2001-09-24 Marc Autret <autret_m@epita.fr>,
19483 Akim Demaille <akim@epita.fr>
19484
19485 * src/reader.c (reader): Remove call to free_symtab ().
19486 * src/main.c (main): Call it here.
19487 Include symtab.h.
19488 * src/conflicts.c (initialize_conflicts): Rename as...
19489 (solve_conflicts): this.
19490 * src/print.c (print_core, print_actions, print_state)
19491 (print_grammar): Dump to a file instead a `output_obstack'.
19492 (print_results): Dump `output_obstack', and then proceed with the
19493 FILE *.
19494 * src/files.c (compute_output_file_names, close_files): New.
19495 (output_files): Adjust.
19496 * src/main.c (main): Adjust.
19497
19498 2001-09-23 Marc Autret <autret_m@epita.fr>
19499
19500 * src/files.c (compute_header_macro): Computes header macro name
19501 from spec_defines_file when given.
19502
19503 2001-09-23 Marc Autret <autret_m@epita.fr>
19504
19505 * src/files.c (output_files): Add default extensions.
19506
19507 2001-09-22 Akim Demaille <akim@epita.fr>
19508
19509 * src/conflicts.c (finalize_conflicts): Rename as...
19510 (free_conflicts): this.
19511
19512 2001-09-22 Akim Demaille <akim@epita.fr>
19513
19514 * src/gram.c (gram_free): Rename back as...
19515 (dummy): this.
19516 (output_token_translations): Free `token_translations'.
19517 * src/symtab.c (free_symtab): Free the tag field.
19518
19519 2001-09-22 Akim Demaille <akim@epita.fr>
19520
19521 Remove `translations' as it is always set to true.
19522
19523 * src/gram.h: Adjust.
19524 * src/reader.c (packsymbols, parse_token_decl): Adjust
19525 * src/print.c (print_grammar): Adjust.
19526 * src/output.c (output_token_translations): Adjust.
19527 * src/lex.c (lex): Adjust.
19528 * src/gram.c: Be sure the set pointers to NULL.
19529 (dummy): Rename as...
19530 (gram_free): this.
19531
19532 2001-09-22 Akim Demaille <akim@epita.fr>
19533
19534 * configure.in: Invoke AM_LIB_DMALLOC.
19535 * src/system.h: Use dmalloc.
19536 * src/LR0.c: Be sure to have pointers initialized to NULL.
19537 (allocate_itemsets): Allocate kernel_items only if needed.
19538
19539 2001-09-22 Akim Demaille <akim@epita.fr>
19540
19541 * configure.in: Bump to 1.29b.
19542 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19543 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19544 need xmalloc.c in calc.y.
19545 From Pascal Bart.
19546
19547 2001-09-21 Akim Demaille <akim@epita.fr>
19548
19549 Version 1.29a.
19550 * Makefile.maint, config/config.guess, config/config.sub,
19551 * config/missing: Update from masters.
19552 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19553 upon package.m4.
19554 * configure.in (ALL_LINGUAS): Add `tr'.
19555
19556 2001-09-21 Akim Demaille <akim@epita.fr>
19557
19558 * tests/Makefile.am (package.m4): Move to...
19559 ($(srcdir)/$(TESTSUITE)): here.
19560
19561 2001-09-20 Akim Demaille <akim@epita.fr>
19562
19563 * src/complain.c: No longer try to be standalone: use system.h.
19564 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19565 * src/complain.h: Likewise.
19566 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19567 Remove the unused variable `n'.
19568 From Albert Chin-A-Young.
19569
19570 2001-09-18 Marc Autret <autret_m@epita.fr>
19571
19572 * doc/bison.1: Update.
19573 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19574 descriptions.
19575 (Option Cross Key): Update.
19576 Add --graph.
19577
19578 2001-09-18 Marc Autret <autret_m@epita.fr>
19579
19580 * tests/regression.at: New test (comment in %union).
19581
19582 2001-09-18 Marc Autret <autret_m@epita.fr>
19583
19584 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19585 do that.
19586 Reported by Keith Browne.
19587
19588 2001-09-18 Marc Autret <autret_m@epita.fr>
19589
19590 * tests/output.at: Add tests for --defines and --graph.
19591
19592 2001-09-18 Marc Autret <autret_m@epita.fr>
19593
19594 * tests/output.at: Removes tests of %{header,src}_extension features.
19595
19596 2001-09-18 Akim Demaille <akim@epita.fr>
19597
19598 * tests/Makefile.am (package.m4): New.
19599 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19600 (_AT_CHECK_CALC_ERROR): Likewise.
19601 Factor the `, ' part of verbose error messages.
19602
19603 2001-09-18 Marc Autret <autret_m@epita.fr>
19604
19605 * src/getargs.c (longopts): Declare --defines and --graph as options
19606 with optional arguments.
19607 * src/files.h: Add extern declarations.
19608 * src/files.c (spec_graph_file, spec_defines_file): New.
19609 (output_files): Update.
19610 Remove CPP-outed code.
19611
19612 2001-09-18 Marc Autret <autret_m@epita.fr>
19613
19614 Turn off %{source,header}_extension feature.
19615
19616 * src/files.c (compute_exts_from_gf): Update.
19617 (compute_exts_from_src): Update.
19618 (output_files): CPP-out useless code.
19619 * src/files.h: Remove {header,source}_extension extern declarations.
19620 * src/reader.c (parse_dquoted_param): CPP-out.
19621 (parse_header_extension_decl): Remove.
19622 (parse_source_extension_decl): Remove.
19623 (read_declarations): Remove cases tok_{hdrext,srcext}.
19624 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19625 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19626
19627 2001-09-10 Akim Demaille <akim@epita.fr>
19628
19629 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19630 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19631 (AT_CHECK_OUTPUT): this.
19632 Merely check ls' exit status, its output is useless.
19633
19634 2001-09-10 Akim Demaille <akim@epita.fr>
19635
19636 * tests/calc.at: Use m4_match.
19637 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19638
19639 2001-09-10 Marc Autret <autret_m@epita.fr>,
19640 Akim Demaille <akim@epita.fr>
19641
19642 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19643 enum color_e.
19644 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19645 to `normal'.
19646 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19647 * src/lex.h: Adjust prototype.
19648 (token_t): Add `tok_undef'.
19649 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19650 (parse_percent_token): Now returns token_t.
19651 Add default statement in switch.
19652 (lex): Separate `c' as an input variable, from the token_t result
19653 part.
19654 (unlexed): Is a token_t.
19655
19656 2001-09-10 Akim Demaille <akim@epita.fr>
19657
19658 * configure.in: Bump to 1.29a.
19659
19660 2001-09-07 Akim Demaille <akim@epita.fr>
19661
19662 Version 1.29.
19663
19664 2001-08-30 Akim Demaille <akim@epita.fr>
19665
19666 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19667 * m4/atconfig.m4: Remove.
19668 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19669 * tests/bison: New.
19670 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19671 m4_if, m4_patsubst, and m4_regexp.
19672 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19673 `input' file instead of echo.
19674
19675 2001-08-29 Akim Demaille <akim@epita.fr>
19676
19677 Bump to 1.28e.
19678
19679 2001-08-29 Akim Demaille <akim@epita.fr>
19680
19681 Version 1.28d.
19682
19683 2001-08-29 Paul Eggert <eggert@twinsun.com>
19684
19685 * src/bison.simple (yyparse): Don't take the address of an
19686 item before the start of an array, as that doesn't conform to
19687 the C Standard.
19688
19689 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19690
19691 * doc/bison.texinfo (Location Tracking Calc): New node.
19692
19693 2001-08-29 Paul Eggert <eggert@twinsun.com>
19694
19695 * src/output.c (output): Do not define const, as this now
19696 causes more problems than it cures.
19697
19698 2001-08-29 Akim Demaille <akim@epita.fr>
19699
19700 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19701 the nodes.
19702 Be sure to tag the `detailmenu'.
19703
19704 2001-08-29 Akim Demaille <akim@epita.fr>
19705
19706 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19707 download in a tmp dir.
19708
19709 2001-08-28 Marc Autret <autret_m@epita.fr>
19710
19711 * config/depcomp: New file.
19712
19713 2001-08-28 Marc Autret <autret_m@epita.fr>
19714
19715 * doc/bison.1 (mandoc): Adjust.
19716 From Juan Manuel Guerrero.
19717
19718 2001-08-28 Marc Autret <autret_m@epita.fr>
19719
19720 * src/print_graph.c (print_state): Fix.
19721
19722 2001-08-27 Marc Autret <autret_m@epita.fr>
19723
19724 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19725 char * members.
19726 Echo modifications to the functions prototypes.
19727 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19728
19729 2001-08-27 Marc Autret <autret_m@epita.fr>
19730
19731 * src/vcg.c: Include `xalloc.h'.
19732 (add_colorentry): New.
19733 (add_classname): New.
19734 (add_infoname): New.
19735 * src/vcg.h: Add new prototypes.
19736
19737 2001-08-27 Akim Demaille <akim@epita.fr>
19738
19739 * Makefile.maint: Sync. again with CVS Autoconf.
19740
19741 2001-08-27 Akim Demaille <akim@epita.fr>
19742
19743 * Makefile.maint: Formatting changes.
19744 (po-update, cvs-update, update): New targets.
19745 (AMTAR): Remove.
19746
19747 2001-08-27 Akim Demaille <akim@epita.fr>
19748
19749 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19750 * Makefile.maint: Sync. with CVS Autoconf.
19751
19752 2001-08-27 Marc Autret <autret_m@epita.fr>
19753
19754 * src/vcg.h (struct infoname_s): New.
19755 (struct colorentry_s): New.
19756 (graph_s): New fields {vertical,horizontal}_order in structure.
19757 Add `infoname' field.
19758 Add `colorentry' field;
19759 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19760 (G_HORIZONTAL_ORDER): New.
19761 (G_INFONAME): New.
19762 (G_COLORENTRY): New.
19763 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19764 Add output of `infoname'.
19765 Add output of `colorentry'.
19766
19767 2001-08-27 Marc Autret <autret_m@epita.fr>
19768
19769 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19770 This one shadowed a global parameter.
19771
19772 2001-08-24 Marc Autret <autret_m@epita.fr>
19773
19774 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19775 instead of `unsigned'.
19776 (print_state): Do not call obstack_object_size () in obstack_grow ()
19777 to avoid macro variables shadowing.
19778
19779 2001-08-23 Marc Autret <autret_m@epita.fr>
19780
19781 * src/lex.c (percent_table): Typo: s/naem/name/.
19782 Add graph option.
19783 Normalize new options declarations.
19784
19785 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19786
19787 * tests/suite.at: Exercise %header_extension and %source_extension.
19788
19789 2001-08-16 Marc Autret <autret_m@epita.fr>
19790
19791 * src/reader.c (parse_dquoted_param): New.
19792 (parse_header_extension_decl): Use it.
19793 (parse_source_extension_decl): Likewise.
19794
19795 2001-08-16 Marc Autret <autret_m@epita.fr>
19796
19797 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19798 (get_xxxx_str): Use assert () instead of complain ().
19799 Remove return invokations in default cases.
19800 (get_decision_str): Modify default behaviour. Remove second argument.
19801 Echo modifications on calls.
19802 (output_graph): Fix.
19803
19804 2001-08-16 Marc Autret <autret_m@epita.fr>
19805
19806 * src/getargs.c (usage): Update with ``-g, --graph''.
19807
19808 2001-08-16 Marc Autret <autret_m@epita.fr>
19809
19810 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19811 (Option Cross Key): Likewise.
19812 * doc/bison.1: Update.
19813
19814 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19815
19816 * src/output.c (output_master_parser): Don't finish action_obstack.
19817 (output_parser): Don't care about the muscle action, here.
19818 (prepare): Copy the action_obstack in the action muscle.
19819 (output): Free action_obstack.
19820
19821 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19822
19823 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19824 will contain `%union' declaration.
19825 (parse_union_decl): Delete #line directive output.
19826 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19827 informations about %union.
19828 (parse_union_decl): Copy the union_obstack in the muscle stype.
19829 * src/bison.simple: Add new #line directive.
19830 Add typdef %%stype YYSTYPE.
19831
19832 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19833
19834 * src/bison.simple: Add new `#line' directive.
19835
19836 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19837
19838 * src/bison.simple: New `#line' directive.
19839 * src/output.c (output_parser): Support new dynamic muscle input_line.
19840
19841 2001-09-22 Marc Autret <autret_m@epita.fr>
19842
19843 * src/output.c (output_master_parser): New.
19844 (output_parser): Be more re-entrant.
19845
19846 2001-09-21 Marc Autret <autret_m@epita.fr>
19847
19848 * src/reader.c (copy_definition, parse_union_decl): Update and use
19849 `linef' muscle.
19850 (copy_action): Likewise.
19851 Use obstack_1grow ().
19852 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19853
19854 2001-09-21 Marc Autret <autret_m@epita.fr>
19855
19856 * src/options.c (option_table): Adjust.
19857 * src/lex.c (parse_percent_token): Fix.
19858
19859 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19860
19861 * src/options.c (symtab.h): Include it, need by lex.h.
19862
19863 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19864
19865 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19866 is now an option_table_struct*.
19867 (option_strcmp): New function option_strcmp.
19868 (parse_percent_token): Call option_strcmp.
19869 * src/getargs.c (xalloc.h, options.h): Include it.
19870 (getargs): Call create_long_option_table.
19871 (getargs): Free longopts at the end of the function.
19872 (shortopts): Move in options.c.
19873 * src/options.c (create_long_option_table): New function. Convert
19874 information from option_table to option structure.
19875 * src/reader.c (options.h): Include it.
19876
19877 * src/Makefile.am: Adjust.
19878 * src/options.c (option_table): Create from longopts and percent_table.
19879 * src/getargs.c (longopts): Delete.
19880 * src/lex.c (struct percent_table_struct): Delete.
19881 (percent_table): Delete.
19882 (options.h): Include it.
19883 * src/options.c: Create.
19884 * src/options.h: Create.
19885 Declare enum opt_access_e.
19886 Define struct option_table_struct.
19887
19888 2001-09-20 Marc Autret <autret_m@epita.fr>
19889
19890 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19891 sections of Bison.
19892
19893 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19894
19895 * src/bison.simple: s/%%filename/%%skeleton.
19896 * src/muscle_tab.c (getargs.h): Include it.
19897 (muscle_init): Insert new muscle skeleton.
19898
19899 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19900
19901 * src/output.c (output_parser): Delete unused variable actions_dumped.
19902
19903 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19904
19905 * src/output.c (output): Delete call to reader_output_yylsp.
19906 * src/reader.c (reader): Likewise.
19907 * src/reader.h: Delete declaration of reader_output_yylsp.
19908
19909 2001-09-02 Marc Autret <autret_m@epita.fr>
19910
19911 * src/reader.c: Include muscle_tab.h.
19912 (parse_union_decl): Update.
19913 (parse_macro_decl): Rename parse_muscle_decl.
19914 Update to use renamed functions and variable.
19915 (read_declarations, copy_action, read_additionnal_code, : Updated
19916 with correct variables and functions names.
19917 (packsymbols, reader): Likewise.
19918
19919 * src/reader.h (muscle_obstack): Extern declaration update.
19920
19921 * src/output.c: Include muscle_tab.h
19922 In all functions using macro_insert, change by using muscle_insert ().
19923 (macro_obstack): Rename muscle_obstack.
19924 Echo modifications in the whole file.
19925 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19926 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19927 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19928
19929 * src/muscle_tab.h: Update double inclusion macros.
19930 (macro_entry_s): Rename muscle_entry_s.
19931 Update prototypes.
19932
19933 * src/muscle_tab.c: Include muscle_tab.h.
19934 Rename macro_tabble to muscle_table.
19935 (mhash1, mhash2, mcmp): Use muscle_entry.
19936 (macro_init): Rename muscle_init. Update.
19937 (macro_insert): Rename muscle_insert. Update.
19938 (macro_find): Rename muscle_find. Update.
19939
19940 * src/main.c: Include muscle_tab.h.
19941 (main): Call muscle_init ().
19942 * src/Makefile.am (bison_SOURCES): Echo modifications.
19943
19944 2001-09-02 Marc Autret <autret_m@epita.fr>
19945
19946 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19947
19948 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19949
19950 2001-09-02 Marc Autret <autret_m@epita.fr>
19951
19952 * src/macrotab.c, src/macrotab.h: Remove.
19953
19954 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19955
19956 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19957 filename.
19958
19959 2001-09-01 Marc Autret <autret_m@epita.fr>
19960
19961 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19962 to an explicit value to activate the feature. We do it here.
19963
19964 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19965
19966 * src/output.c (prepare): Delete the `filename' muscule insertion.
19967 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19968 (parse_union_decl): Likewise.
19969 * src/macrotab.c (macro_init): Initialize filename by infile.
19970
19971 2001-08-31 Marc Autret <autret_m@epita.fr>
19972
19973 * src/bison.simple (YYLSP_NEEDED): New definition.
19974 * src/output.c (prepare): Add macro insertion of `locations_flag'
19975
19976 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19977
19978 * src/output.c (prepare): Delete insertion of previous muscles,
19979 and insert the `prefix' muscles.
19980 * src/macrotab.c (macro_init): Likewise.
19981 (macro_init): Initialization prefix directive by `yy'.
19982 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19983 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19984 yylval, yydebug, yyerror, yynerrs and yyparse.
19985 New directive `#define' to substitute yydebug, ... with option
19986 name_prefix.
19987
19988 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19989
19990 * src/main.c (main): Standardize.
19991 * src/output.c (output_table_data, output_parser): Likewise.
19992 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19993
19994 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19995
19996 * src/reader.c (read_additionnal_code): Rename %%user_code to
19997 %%epilogue.
19998 * src/output.c (output): Rename %%declarations to %%prologue.
19999 * src/bison.simple: Echo modifications.
20000
20001 2001-08-31 Marc Autret <autret_m@epita.fr>
20002
20003 * src/reader.c (readgram): CleanUp.
20004 (output_token_defines): Likewise.
20005 (packsymbols): Likewise.
20006 (reader): Likewise.
20007 * src/output.c (output): CPP-out useless code.
20008
20009 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
20010
20011 * src/reader.c (reader): Delete obsolete call to function
20012 output_trailers and output_headers.
20013 * src/output.h: Remove obsolete functions prototypes of output_headers
20014 and output_trailers.
20015
20016 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
20017
20018 * src/main.c: Include macrotab.h.
20019 * src/macrotab.h (macro_entry_s): Constify fields.
20020 Adjust functions prototypes.
20021 * src/macrotab.c (macro_insert): Constify key and value.
20022 (macro_find): Constify key.
20023 (macro_insert): Include 'xalloc.h'
20024 (macro_insert): Use XMALLOC.
20025 (macro_find): Constify return value.
20026 * src/output.c (output_table_data): Rename table to table_data.
20027 (output_parser): Constify macro_key, macro_value.
20028
20029 2001-08-30 Marc Autret <autret_m@epita.fr>
20030
20031 * src/reader.c (parse_skel_decl): New.
20032 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
20033 * src/lex.h (token_t): New token `tok_skel'.
20034 * src/lex.c (percent_table): Add skeleton option entry.
20035 Standardize.
20036
20037 2001-08-29 Marc Autret <autret_m@epita.fr>
20038
20039 * src/bison.simple: Add %%user_code directive at the end.
20040 * src/reader.c (read_additionnal_code): New.
20041 (reader): Use it.
20042 * src/output.c (output_program): Remove.
20043 (output): Update.
20044
20045 2001-08-28 Marc Autret <autret_m@epita.fr>
20046
20047 * src/output.c (output_actions): Clean up.
20048 (output_gram): CPP-out useless code.
20049 * src/reader.c (reader): Clean up, CPP-out useless code.
20050
20051 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
20052
20053 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
20054 directive.
20055 * src/bison.simple: Add `%%definitions'.
20056
20057 2001-08-28 Marc Autret <autret_m@epita.fr>
20058
20059 * config/depcomp: New file.
20060
20061 2001-08-27 Paul Eggert <eggert@twinsun.com>
20062
20063 * src/bison.simple (yyparse): Don't take the address of an
20064 item before the start of an array, as that doesn't conform to
20065 the C Standard.
20066
20067 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20068
20069 * src/output.c (output): Remove the initialization of the macro
20070 obstack. It was done too late here.
20071
20072 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
20073 completely wrong.
20074 (reader): Initialize the macro obstack here, since we need it to grow
20075 '%define' directives.
20076
20077 * src/reader.h: Declare the macro obstack as extern.
20078
20079 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
20080
20081 * src/output.c (output_parser): Fix. Store single '%' characters in
20082 the output obstack instead of throwing them away.
20083
20084 2001-08-27 Akim Demaille <akim@epita.fr>
20085
20086 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
20087
20088 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20089
20090 * lib/Makefile.am: Adjust.
20091
20092 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20093
20094 * src/bison.simple: Update and add '%%' directives.
20095
20096 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20097
20098 * src/reader.c (reader): Remove calls to 'output_headers' and
20099 'output_trailers'. Remove some C output.
20100 (readgram): Disable a piece of code that was writing a default
20101 definition for 'YYSTYPE'.
20102 (reader_output_yylsp): Remove.
20103 (packsymbols): Output token defintions to a macro.
20104 (copy_definition): Disable C output.
20105
20106 * src/reader.c (parse_macro_decl): New function used to parse macro
20107 declarations.
20108 (copy_string2): Put the body of copy_string into this new function.
20109 Add a parameter to let the caller choose whether he wants to copy the
20110 string delimiters or not.
20111 (copy_string): Be a simple call to copy_string2 with the last argument
20112 bound to true.
20113 (read_declarations): Add case for macro definition.
20114 (copy_identifier): New.
20115 (parse_macro_decl): Read macro identifiers using copy_identifier
20116 rather than lex.
20117
20118 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20119
20120 * src/output.c (prepare): Add prefixed names.
20121 (output_parser): Output semantic actions.
20122 (output_parser): Fix bug on '%%line' directives.
20123
20124 * src/output.c (output_headers): Remove. The C code printed by this
20125 function should now be in the skeletons.
20126 (output_trailers): Remove.
20127 (output): Disable call to 'reader_output_yylsp'.
20128 (output_rule_data): Do not output tables to the table obstack.
20129
20130 * src/output.c: Remove some C dedicated output.
20131 Improve the use of macro and output obstacks.
20132 (output_defines): Remove.
20133
20134 * src/output.c (output_token_translations): Associate 'translate'
20135 table with a macro. No output to the table obstack.
20136 (output_gram): Same for 'rhs' and 'prhs'.
20137 (output_stos): Same for 'stos'.
20138 (output_rule_data): Same for 'r1' and 'r2'.
20139 (token_actions): Same for 'defact'.
20140 (goto_actions): Same for 'defgoto'.
20141 (output_base): Same for 'pact' and 'pgoto'.
20142 (output_table): Same for 'table'.
20143 (output_check): Same for 'check'.
20144
20145 * src/output.c (output_table_data): New function.
20146 (output_short_table): Remove.
20147 (output_short_or_char_table): Remove.
20148
20149 * src/output.c (output_parser): Replace most of the skeleton copy code
20150 with something new. Skeletons are now processed character by character
20151 rather than line by line, and Bison looks for '%%' macros. This is the
20152 first step in making Bison's output process (a lot) more flexible.
20153 (output_parser): Use the macro table.
20154
20155 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20156
20157 * src/main.c (main): Initialize the macro table.
20158
20159 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20160
20161 * src/lex.c (percent_table): Add tok_define.
20162 * src/lex.h: Add tok_define.
20163
20164 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20165
20166 * src/macrotab.c: New file.
20167 * src/macrotab.h: New file.
20168 * src/Makefile.am: Update.
20169
20170 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20171
20172 * lib/hash.c: New file.
20173 * lib/hash.h: New file.
20174 * lib/Makefile.am: Update.
20175
20176 2001-08-15 Akim Demaille <akim@epita.fr>
20177
20178 Version 1.28c.
20179
20180 2001-08-15 Marc Autret <autret_m@epita.fr>
20181
20182 * src/reader.c (readgram): Indent output macro YYSTYPE.
20183 (packsymbols): Likewise.
20184 (output_token_defines): Likewise.
20185 * src/files.c: Standardize.
20186 (compute_header_macro): New.
20187 (defines_obstack_save): New. Use compute_header_macro.
20188 (output_files): Update. Use defines_obstack_save.
20189
20190 2001-08-15 Akim Demaille <akim@epita.fr>
20191
20192 * doc/bison.texinfo (Table of Symbols): Document
20193 YYSTACK_USE_ALLOCA.
20194
20195 2001-08-15 Akim Demaille <akim@epita.fr>
20196
20197 * missing: Update from CVS Automake.
20198 * config/config.guess, config/config.sub, config/texinfo.tex:
20199 Update from gnu.org.
20200
20201 2001-08-15 Akim Demaille <akim@epita.fr>
20202
20203 * Makefile.maint: Sync with CVS Autoconf.
20204
20205 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20206
20207 * doc/bison.texinfo: Include GNU Free Documentation License from
20208 `fdl.texi'.
20209 * doc/fdl.texi: Add to package.
20210
20211 2001-08-14 Marc Autret <autret_m@epita.fr>
20212
20213 Turn on %{source,header}_extension features.
20214
20215 * src/lex.c (percent_table): Un-CPP out header_extension and
20216 source_extension.
20217 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20218 (compute_exts_from_src): Remove conditions. It restores priorities
20219 between options.
20220
20221 2001-08-14 Marc Autret <autret_m@epita.fr>
20222
20223 * src/files.c (compute_base_names): Add extensions computing when
20224 `--file-prefix' used.
20225 Standardize function calls.
20226
20227 2001-08-13 Marc Autret <autret_m@epita.fr>
20228
20229 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20230 defining it (defined but null disables alloca).
20231
20232 2001-08-13 Marc Autret <autret_m@epita.fr>
20233
20234 * src/bison.simple (_yy_memcpy): CPP reformat.
20235
20236 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20237
20238 * tests/atconfig.in (CPPFLAGS): Fix.
20239
20240 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20241
20242 * doc/bison.texinfo: Include GNU General Public License from
20243 `gpl.texi'.
20244 * doc/gpl.texi: Add to package.
20245
20246 2001-08-10 Marc Autret <autret_m@epita.fr>
20247
20248 * src/print_graph.h: Fix.
20249 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20250
20251 2001-08-10 Akim Demaille <akim@epita.fr>
20252
20253 * src/system.h: Provide default declarations for stpcpy, strndup,
20254 and strnlen.
20255
20256 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20257
20258 * doc/bison.texinfo (Locations): Update @$ stuff.
20259
20260 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20261
20262 * src/bison.simple (YYLLOC_DEFAULT): Update.
20263 (yyparse): Adjust.
20264
20265 2001-08-08 Marc Autret <autret_m@epita.fr>
20266
20267 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20268 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20269 Reported by Fabrice Bauzac.
20270
20271 2001-08-08 Marc Autret <autret_m@epita.fr>
20272
20273 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20274 * src/vcg.c (output_node): Fix.
20275 * src/vcg.h: Cleanup.
20276 * src/print_graph.c: Add comments.
20277 (node_output_size): New global variable. Simplify the formatting of
20278 the VCG graph output.
20279 (print_actions): Unused code is now used. It notifies the final state
20280 and no action states in the VCG graph. It also give the reduce actions.
20281 The `shift and goto' edges are red and the `go to state' edges are
20282 blue.
20283 Get the current node name and node_obstack by argument.
20284 (node_obstack): New variable.
20285 (print_state): Manage node_obstack.
20286 (print_core): Use node_obstack given by argument.
20287 A node is not only computed here but in print_actions also.
20288 (print_graph): CPP out useless code instead of commenting it.
20289
20290 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20291
20292 * tests/atconfig.in (CPPFLAGS): Fix.
20293
20294 2001-08-07 Akim Demaille <akim@epita.fr>
20295
20296 * src/print_graph.c (quote): New.
20297 (print_core): Use it.
20298
20299 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20300
20301 * src/vcg.c (complain.h): Include it.
20302 Unepitaize `return' invocations.
20303 [NDEBUG] (main): Remove.
20304 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20305 * src/files.c (open_files): Initialize graph_obstack.
20306 * src/print_graph.c (print_actions): CPP out useless code.
20307 (print_core): Don't output the last `\n' in labels.
20308 Use `quote'.
20309 * src/files.c (output_files): Output the VCG file.
20310 * src/main.c (main): Invoke print_graph ();
20311
20312 2001-08-06 Marc Autret <autret_m@epita.fr>
20313
20314 Automaton VCG graph output.
20315 Using option ``-g'' or long option ``--graph'', you can generate
20316 a gram_filename.vcg file containing a VCG description of the LALR (1)
20317 automaton of your grammar.
20318
20319 * src/main.c: Call to print_graph() function.
20320 * src/getargs.h: Update.
20321 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20322 (graph_flag): New flag.
20323 (longopts): Update.
20324 (getargs): Add case `g'.
20325 * src/files.c (graph_obstack): New obstack struct.
20326 (open_files): Initialize new obstack.
20327 (output_files): Saves graph_obstack if required.
20328 * src/files.h (graph_obstack): New extern declaration.
20329 * src/Makefile.am: Add new source files.
20330
20331 2001-08-06 Marc Autret <autret_m@epita.fr>
20332
20333 * src/print_graph.c, src/print_graph.h (graph): New.
20334 * src/vcg.h: New file.
20335 * src/vcg.c: New file, VCG graph handling.
20336
20337 2001-08-06 Marc Autret <autret_m@epita.fr>
20338
20339 Add of %source_extension and %header_extension which specify
20340 the source or/and the header output file extension.
20341
20342 * src/files.c (compute_base_names): Remove initialisation of
20343 src_extension and header_extension.
20344 (compute_exts_from_gf): Update.
20345 (compute_exts_from_src): Update.
20346 (output_files): Update.
20347 * src/reader.c (parse_header_extension_decl): New.
20348 (parse_source_extension_decl): New.
20349 (read_declarations): New case statements for the new tokens.
20350 * src/lex.c (percent_table): Add entries for %source_extension
20351 and %header_extension.
20352 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20353
20354 2001-08-06 Marc Autret <autret_m@epita.fr>
20355
20356 * configure.in: Bump to 1.28c.
20357 * doc/bison.texinfo: Texinfo thingies.
20358
20359 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20360
20361 * tests/atconfig.in (CPPFLAGS): Add.
20362 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20363
20364 2001-08-03 Akim Demaille <akim@epita.fr>
20365
20366 Version 1.28b.
20367
20368 2001-08-03 Akim Demaille <akim@epita.fr>
20369
20370 * tests/Makefile.am (check-local): Ship testsuite.
20371 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20372 Include `string.h'.
20373
20374 2001-08-03 Akim Demaille <akim@epita.fr>
20375
20376 * configure.in: Try using -Wformat when compiling.
20377
20378 2001-08-03 Akim Demaille <akim@epita.fr>
20379
20380 * configure.in: Bump to 1.28b.
20381
20382 2001-08-03 Akim Demaille <akim@epita.fr>
20383
20384 * src/complain.c: Adjust strerror_r portability issues.
20385
20386 2001-08-03 Akim Demaille <akim@epita.fr>
20387
20388 Version 1.28a.
20389
20390 2001-08-03 Akim Demaille <akim@epita.fr>
20391
20392 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20393 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20394 * src/getargs.c: Include complain.h.
20395 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20396 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20397
20398 2001-08-03 Akim Demaille <akim@epita.fr>
20399
20400 * src/reader.c (readgram): Display hidden chars in error messages.
20401
20402 2001-08-03 Akim Demaille <akim@epita.fr>
20403
20404 Update to gettext 0.10.39.
20405
20406 2001-08-03 Akim Demaille <akim@epita.fr>
20407
20408 * lib/strspn.c: New.
20409
20410 2001-08-01 Marc Autret <autret_m@epita.fr>
20411
20412 * doc/bison.texinfo: Update.
20413 * doc/bison.1 (mandoc): Update.
20414 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20415 * src/files.c: Support output files extensions computing.
20416 (src_extension): New static variable.
20417 (header_extension): New static variable.
20418 (tr): New function.
20419 (get_extension_index): New function, gets the index of an extension
20420 filename in a string.
20421 (compute_exts_from_gf): New function, computes extensions from the
20422 grammar file extension.
20423 (compute_exts_from_src): New functions, computes extensions from the
20424 C source file extension, file given by ``-o'' option.
20425 (compute_base_names): Update.
20426 (output_files): Update.
20427
20428 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20429
20430 * doc/bison.texi: Document @$.
20431 (Locations): New section.
20432
20433 2001-07-18 Akim Demaille <akim@epita.fr>
20434
20435 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20436 * config/prev-version.txt, config/move-if-change: New.
20437 * Makefile.am: Adjust.
20438
20439 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20440
20441 * src/bison.simple (yyparse): Suppress warning `comparaison
20442 between signed and unsigned'.
20443
20444 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20445
20446 * src/getargs.h (raw_flag): Remove.
20447 * src/getargs.c: Die on `-r'/`--raw'.
20448 * src/lex.c (parse_percent_token): Die on `%raw'.
20449 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20450 * tests/calc.at: Suppress test with option `--raw'.
20451
20452 2001-07-14 Akim Demaille <akim@epita.fr>
20453
20454 * config/: New.
20455 * configure.in: Require Autoconf 2.50.
20456 Update to gettext 0.10.38.
20457
20458 2001-03-16 Akim Demaille <akim@epita.fr>
20459
20460 * doc/bison.texinfo: ANSIfy the examples.
20461
20462 2001-03-16 Akim Demaille <akim@epita.fr>
20463
20464 * getargs.c (skeleton): New variable.
20465 (longopts): --skeleton is a new option.
20466 (shortopts, getargs): -S is a new option.
20467 * getargs.h: Declare skeleton.
20468 * output.c (output_parser): Use it.
20469
20470 2001-03-16 Akim Demaille <akim@epita.fr>
20471
20472 * m4/strerror_r.m4: New.
20473 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20474 * lib/error.h, lib/error.c: Update.
20475
20476 2001-03-16 Akim Demaille <akim@epita.fr>
20477
20478 * src/getargs.c (longopts): Clean up.
20479
20480 2001-02-21 Akim Demaille <akim@epita.fr>
20481
20482 * src/reader.c (gensym): `gensym_count' is your own.
20483 Use a static buf to create the symbol name, as token_buffer is no
20484 longer a buffer.
20485
20486 2001-02-08 Akim Demaille <akim@epita.fr>
20487
20488 * src/conflicts.c (conflict_report): Be sure not to append to res
20489 between two calls, which could happen if both first sprintf were
20490 skipped, but not the first cp += strlen.
20491
20492 2001-02-08 Akim Demaille <akim@epita.fr>
20493
20494 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20495 New, from fileutils 4.0.37.
20496 * configure.in: Require Autoconf 2.49c. I took some time before
20497 making this decision. This is the only way out for portability
20498 issues in Bison, it would mean way too much duplicate effort to
20499 import in Bison features implemented in 2.49c since 2.13.
20500 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20501
20502 2001-02-02 Akim Demaille <akim@epita.fr>
20503
20504 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20505 * lib/xalloc.h, lib/xmalloc.c: Update.
20506
20507 2001-01-19 Akim Demaille <akim@epita.fr>
20508
20509 Get rid of the ad hoc handling of token_buffer in the scanner: use
20510 the obstacks.
20511
20512 * src/lex.c (token_obstack): New.
20513 (init_lex): Initialize it. No longer call...
20514 (grow_token_buffer): this. Remove it.
20515 Adjust all the places which used it to use the obstack.
20516
20517 2001-01-19 Akim Demaille <akim@epita.fr>
20518
20519 * src/lex.h: Rename all the tokens:
20520 s/\bENDFILE\b/tok_eof/g;
20521 s/\bIDENTIFIER\b/tok_identifier/g;
20522 etc.
20523 Let them be enums, not #define, to ease debugging.
20524 Adjust all the code.
20525
20526 2001-01-18 Akim Demaille <akim@epita.fr>
20527
20528 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20529 * src/lex.c (maxtoken, grow_token_buffer): Static.
20530
20531 2001-01-18 Akim Demaille <akim@epita.fr>
20532
20533 Since we now use obstacks, more % directives can be enabled.
20534
20535 * src/lex.c (percent_table): Also accept `%yacc',
20536 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20537 `%debug'.
20538 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20539 instead of returning a token.
20540 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20541 * src/reader.c (read_declarations): Adjust.
20542 * src/files.c (open_files): Don't call `compute_base_names', don't
20543 compute `attrsfile' since they depend upon data which might be
20544 *in* the input file now.
20545 (output_files): Do it here.
20546 * src/output.c (output_headers): Document the fact that this patch
20547 introduces a guaranteed SEGV for semantic parsers.
20548 * doc/bison.texinfo: Document them.
20549 * tests/suite.at: Exercise these %options.
20550
20551 2000-12-20 Akim Demaille <akim@epita.fr>
20552
20553 Also handle the output file (--verbose) with obstacks.
20554
20555 * files.c (foutput): Remove.
20556 (output_obstack): New.
20557 Adjust all dependencies.
20558 * src/conflicts.c: Return a string.
20559 * src/system.h (obstack_grow_string): Rename as...
20560 (obstack_sgrow): this. Be ready to work with non literals.
20561 (obstack_fgrow4): New.
20562
20563 2000-12-20 Akim Demaille <akim@epita.fr>
20564
20565 * src/files.c (open_files): Fix the computation of short_base_name
20566 in the case of `-o foo.tab.c'.
20567
20568 2000-12-20 Akim Demaille <akim@epita.fr>
20569
20570 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20571 (copy_dollar): Now that everything uses obstacks, get rid of the
20572 FILE * parameters.
20573
20574 2000-12-20 Akim Demaille <akim@epita.fr>
20575
20576 * src/files.c (open_files): Actually the `.output' file is based
20577 on the short_base_name, not base_name.
20578 * tests/suite.at (Checking output file names): Adjust.
20579
20580 2000-12-20 Akim Demaille <akim@epita.fr>
20581
20582 * src/bison.s1: Remove, we now use directly...
20583 * src/bison.simple: this.
20584 * src/Makefile.am: Use pkgdata instead of data.
20585
20586 2000-12-20 Akim Demaille <akim@epita.fr>
20587
20588 * src/files.c (guard_obstack): New.
20589 (open_files): Initialize it.
20590 (output_files): Dump it...
20591 * src/files.h: Export it.
20592 * src/reader.c (copy_guard): Use it.
20593
20594 2000-12-19 Akim Demaille <akim@epita.fr>
20595
20596 * src/files.c (outfile, defsfile, actfile): Removed as global
20597 vars.
20598 (open_files): Don't compute them.
20599 (output_files): Adjust.
20600 (base_name, short_base_name): Be global.
20601 Adjust dependencies.
20602
20603 2000-12-19 Akim Demaille <akim@epita.fr>
20604
20605 * src/files.c (strsuffix): New.
20606 (stringappend): Be just like strcat but allocate.
20607 (base_names): Eve out from open_files.
20608 Try to simplify the rather hairy computation of base_name and
20609 short_base_name.
20610 (open_files): Use it.
20611 * tests/suite.at (Checking output file names): New test.
20612
20613 2000-12-19 Akim Demaille <akim@epita.fr>
20614
20615 * src/system.h (obstack_grow_literal_string): Rename as...
20616 (obstack_grow_string): this.
20617 * src/output.c (output_parser): Recognize `%% actions' instead of
20618 `$'.
20619 * src/bison.s1: s/$/%% actions/.
20620 * src/bison.hairy: Likewise.
20621
20622 2000-12-19 Akim Demaille <akim@epita.fr>
20623
20624 * src/output.c (output_parser): Compute the `#line' lines when
20625 there are.
20626 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20627 Suggested by Hans Aberg.
20628
20629 2000-12-19 Akim Demaille <akim@epita.fr>
20630
20631 Let the handling of the skeleton files be local to the procedures
20632 that use it.
20633
20634 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20635 longer static.
20636 (fparser, open_extra_files): Remove.
20637 (open_files, output_files): Don't take care of fparser.
20638 * src/files.h: Adjust.
20639 * src/output.c (output_parser): Open and close the file to the
20640 skeleton.
20641 * src/reader.c (read_declarations): When %semantic_parser, open
20642 fguard.
20643
20644 2000-12-19 Akim Demaille <akim@epita.fr>
20645
20646 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20647 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20648
20649 2000-12-19 Akim Demaille <akim@epita.fr>
20650
20651 * src/files.c (open_files): Yipee! We no longer need all the code
20652 looking for `/tmp' since we have no tmp file.
20653
20654 2000-12-19 Akim Demaille <akim@epita.fr>
20655
20656 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20657 New macros.
20658 * src/files.c (open_files): Less dependency on MSDOS etc.
20659
20660 2000-12-14 Akim Demaille <akim@epita.fr>
20661
20662 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20663 Provide a default definition.
20664 Use it when executing the default @ action.
20665 * src/reader.c (reader_output_yylsp): No longer include
20666 `timestamp' and `text' in the default YYLTYPE.
20667
20668 2000-12-12 Akim Demaille <akim@epita.fr>
20669
20670 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20671 (copy_guard): Quote the file names.
20672 Reported by Laurent Mascherpa.
20673
20674 2000-12-12 Akim Demaille <akim@epita.fr>
20675
20676 * src/output.c (output_headers, output_program, output): Be sure
20677 to escape special characters when outputting filenames.
20678 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20679 (output_headers): Don't depend on them, Use ACTSTR.
20680
20681 2000-11-17 Akim Demaille <akim@epita.fr>
20682
20683 * lib/obstack.h: Formatting changes.
20684 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20685 prevents type checking.
20686 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20687 cast the value to (void *): assigning a `foo *' to a `void *'
20688 variable is valid.
20689 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20690 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20691 append characters.
20692
20693 2000-11-17 Akim Demaille <akim@epita.fr>
20694
20695 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20696 as...
20697 (suite.m4, regression.m4, calc.m4): these.
20698 * tests/atgeneral.m4: Update from CVS Autoconf.
20699
20700 2000-11-17 Akim Demaille <akim@epita.fr>
20701
20702 * tests/regression.m4 (%union and --defines): New test,
20703 demonstrating a current bug in the obstack implementation.
20704
20705 2000-11-17 Akim Demaille <akim@epita.fr>
20706
20707 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20708 macros.
20709 Use them to declare the variables which are global or local to
20710 `yyparse'.
20711
20712 2000-11-17 Akim Demaille <akim@epita.fr>
20713
20714 * acconfig.h: Remove, no longer used.
20715
20716 2000-11-07 Akim Demaille <akim@epita.fr>
20717
20718 * src: s/Copyright (C)/Copyright/g.
20719
20720 2000-11-07 Akim Demaille <akim@epita.fr>
20721
20722 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20723 defining.
20724 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20725
20726 2000-11-07 Akim Demaille <akim@epita.fr>
20727
20728 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20729 Merge in a single CPP if/else.
20730
20731 2000-11-07 Akim Demaille <akim@epita.fr>
20732
20733 * src/output.c (output): Remove useless variables.
20734 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20735 argument `data' for consistency with the prototypes.
20736 Qualify it `const'.
20737 (obstack_copy, obstack_copy0): Rename the second argument as
20738 `address' for consistency. Qualify it `const'.
20739 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20740 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20741 `const' their input argument (`data' or `address').
20742 Adjust the corresponding macros to include `const' in casts.
20743
20744 2000-11-03 Akim Demaille <akim@epita.fr>
20745
20746 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20747 s/PFILE1/BISON_HAIRY/.
20748 Adjust dependencies.
20749
20750 2000-11-03 Akim Demaille <akim@epita.fr>
20751
20752 For some reason, this was not applied.
20753
20754 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20755 `unlink': it's no longer used.
20756
20757 2000-11-03 Akim Demaille <akim@epita.fr>
20758
20759 * src/files.c (skeleton_find): New function, eved out of...
20760 (open_files, open_extra_files): here.
20761
20762 2000-11-03 Akim Demaille <akim@epita.fr>
20763
20764 Don't use `atexit'.
20765
20766 * src/files.c (obstack_save): New function.
20767 (done): Rename as...
20768 (output_files): this.
20769 Use `obstack_save'.
20770 * src/main.c (main): Don't use `atexit' to register `done', since
20771 it no longer has to remove tmp files, just call `output_files'
20772 when there are no errors.
20773
20774 2000-11-02 Akim Demaille <akim@epita.fr>
20775
20776 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20777 `unlink': it's no longer used.
20778 * src/files.h: Formatting changes.
20779
20780 2000-11-02 Akim Demaille <akim@epita.fr>
20781
20782 Remove the last uses of mktemp and unlink/delete.
20783
20784 * src/files.c (fdefines, ftable): Removed.
20785 (defines_ostack, table_obstack): New.
20786 Adjust dependencies of the former into uses of the latter.
20787 * src/output.c (output_short_or_char_table, output_short_table):
20788 Convert to using obstacks.
20789 * src/reader.c (copy_comment2): Accept one FILE * and two
20790 obstacks.
20791 (output_token_defines, reader_output_yylsp): Use obstacks.
20792 * src/system.h (obstack_fgrow3): New.
20793 * po/POTFILES.in: Adjust.
20794
20795 2000-11-01 Akim Demaille <akim@epita.fr>
20796
20797 Change each use of `fattrs' into a use of `attrs_obstack'.
20798
20799 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20800 * src/files.c (fattrs): Remove.
20801 (attrs_obstack): New.
20802 Adjust all dependencies.
20803 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20804
20805 2000-11-01 Akim Demaille <akim@epita.fr>
20806
20807 Introduce obstacks.
20808 Change each use of `faction' into a use of `action_obstack'.
20809
20810 * lib/obstack.h, lib/obstack.c: New files.
20811 * src/files.c (faction): Remove.
20812 (action_obstack): New.
20813 Adjust all dependencies.
20814
20815 2000-10-20 Akim Demaille <akim@epita.fr>
20816
20817 * lib/quote.h (PARAMS): New macro. Use it.
20818
20819 2000-10-16 Akim Demaille <akim@epita.fr>
20820
20821 * src/output.c (output_short_or_char_table): New function.
20822 (output_short_table, output_token_translations): Use it.
20823 (goto_actions): Use output_short_table.
20824
20825 2000-10-16 Akim Demaille <akim@epita.fr>
20826
20827 * src/symtab.c (bucket_new): New function.
20828 (getsym): Use it.
20829
20830 * src/output.c (output_short_table): New argument to display the
20831 comment associated with the table.
20832 Adjust dependencies.
20833 (output_gram): Use it.
20834 (output_rule_data): Nicer output layout for YYTNAME.
20835
20836 2000-10-16 Akim Demaille <akim@epita.fr>
20837
20838 * src/lex.c (read_typename): New function.
20839 (lex): Use it.
20840 * src/reader.c (copy_dollar): Likewise.
20841
20842 2000-10-16 Akim Demaille <akim@epita.fr>
20843
20844 * src/reader.c (copy_comment2): Expect the input stream to be on
20845 the `/' which is suspected to open a comment, instead of being
20846 called after `//' or `/*' was read.
20847 (copy_comment, copy_definition, parse_union_decl, copy_action)
20848 (copy_guard): Adjust.
20849
20850 2000-10-16 Akim Demaille <akim@epita.fr>
20851
20852 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20853 `read_signed_integer'.
20854
20855 2000-10-16 Akim Demaille <akim@epita.fr>
20856
20857 * src/reader.c (copy_dollar): New function.
20858 (copy_guard, copy_action): Use it.
20859
20860 2000-10-16 Akim Demaille <akim@epita.fr>
20861
20862 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20863 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20864 New files, from Fileutils 4.0.27.
20865 * src/main.c (printable_version): Remove.
20866 * src/lex.c, src/reader.c: Use `quote'.
20867
20868 2000-10-04 Akim Demaille <akim@epita.fr>
20869
20870 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20871
20872 2000-10-04 Akim Demaille <akim@epita.fr>
20873
20874 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20875
20876 2000-10-04 Akim Demaille <akim@epita.fr>
20877
20878 When a literal string is used to define two different tokens,
20879 `bison -v' segfaults.
20880 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20881
20882 * tests/regression.m4: New file.
20883 Include the core of the sample provided by Piotr Gackiewicz.
20884 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20885 properly.
20886
20887 2000-10-04 Akim Demaille <akim@epita.fr>
20888
20889 * src/reader.c (parse_expect_decl): Keep `count' within the size
20890 of `buffer'.
20891 From Neil Booth.
20892
20893 2000-10-02 Paul Eggert <eggert@twinsun.com>
20894
20895 * bison.s1 (yyparse): Assign the default value
20896 unconditionally, to avoid a GCC warning and make the parser a
20897 tad smaller.
20898
20899 2000-10-02 Akim Demaille <akim@epita.fr>
20900
20901 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20902 options.
20903
20904 2000-10-02 Akim Demaille <akim@epita.fr>
20905
20906 * src/derives.c, src/print.c, src/reduce.c: To ease the
20907 translation, move some `\n' out of the translated strings.
20908
20909 2000-10-02 Akim Demaille <akim@epita.fr>
20910
20911 The location tracking mechanism is precious for parse error
20912 messages. Nevertheless, it is enabled only when `@n' is used in
20913 the grammar, which is a different issue (you can use it in error
20914 message, but not in the grammar per se). Therefore, there should
20915 be another means to enable it.
20916
20917 * src/getargs.c (getargs): Support `--locations'.
20918 (usage): Report it.
20919 * src/getargs.h (locationsflag): Export it.
20920 * src/lex.c (percent_table): Support `%locations'.
20921 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20922 with `locationsflag'.
20923 * doc/bison.texinfo: Document `--locations' and `%locations'.
20924 Sort the options.
20925 * tests/calc.m4: Test it.
20926
20927 For regularity of the names, replace each
20928 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20929 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20930 In addition replace each `flag' with `_flag'.
20931
20932 2000-10-02 Akim Demaille <akim@epita.fr>
20933
20934 Also test parse error messages, including with YYERROR_VERBOSE.
20935
20936 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20937 associative).
20938 Use it to check the computations.
20939 Use it to check `nonassoc' is honored.
20940 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20941 `--yyerror-verbose'.
20942 (_AT_CHECK_CALC): Adjust to this option.
20943 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20944
20945 2000-10-02 Akim Demaille <akim@epita.fr>
20946
20947 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20948 the latter demonstrates a flaw in the handling of non debugging
20949 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20950 was used in order to simplify:
20951
20952 #if YYDEBUG
20953 if (yydebug)
20954 {
20955 ...
20956 }
20957 #endif
20958
20959 into
20960
20961 if (yydebug)
20962 {
20963 ...
20964 }
20965
20966 unfortunately this leads to a CPP conflict when
20967 `--name-prefix=foo' is used since it produces `#define yydebug
20968 foodebug'.
20969
20970 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20971 (YYDPRINTF): New macro.
20972 Spread its use.
20973 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20974 the bison options.
20975 Also test `--verbose', `--defines' and `--name-prefix'.
20976
20977 2000-10-02 Akim Demaille <akim@epita.fr>
20978
20979 Improve the readability of the produced parsers.
20980
20981 * src/bison.s1: Formatting changes.
20982 Improve the comment related to the `$' mark.
20983 (yydefault): Don't fall through to `yyresume': `goto' there.
20984 * src/output.c (output_parser): When the `$' is met, skip the end
20985 of its line.
20986 New variable, `number_of_dollar_signs', to check there's exactly
20987 one `$' in the parser skeleton.
20988
20989 2000-10-02 Akim Demaille <akim@epita.fr>
20990
20991 * lib/xstrdup.c: New file, from the fileutils.
20992 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20993 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20994 instead of strlen + xmalloc + strcpy.
20995 * src/symtab.c (copys): Remove, use xstrdup instead.
20996
20997 2000-10-02 Akim Demaille <akim@epita.fr>
20998
20999 * src/gram.h (associativity): New enum type which replaces the
21000 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
21001 `right_assoc', `left_assoc' and `non_assoc'.
21002 Adjust all dependencies.
21003 * src/reader.c: Formatting changes.
21004 (LTYPESTR): Don't define it, use it as a literal in
21005 `reader_output_yylsp'.
21006 * src/symtab.h (symbol_class): New enum type which replaces the
21007 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
21008 `sunknown', `stoken and `snterm'.
21009
21010 2000-10-02 Akim Demaille <akim@epita.fr>
21011
21012 * src/getargs.c (fixed_outfiles): Rename as...
21013 (yaccflag): for consistency and accuracy.
21014 Adjust dependencies.
21015
21016 2000-10-02 Akim Demaille <akim@epita.fr>
21017
21018 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
21019 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
21020 difficult and introduced a lot of core dump. It turns out that
21021 Bison used an implementation of `xmalloc' based on `calloc', and
21022 at various places it does depend upon the initialization to 0. I
21023 have not tried to isolate the pertinent places, and all the former
21024 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
21025 someone should address this issue.
21026
21027 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
21028 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
21029 files.
21030 Adjust dependencies.
21031 * src/warshall.h: New file.
21032 Propagate.
21033
21034 2000-10-02 Akim Demaille <akim@epita.fr>
21035
21036 Various anti-`extern in *.c' changes.
21037
21038 * src/system.h: Include `assert.h'.
21039
21040 2000-10-02 Akim Demaille <akim@epita.fr>
21041
21042 * src/state.h (nstates, final_state, first_state, first_shift)
21043 (first_reduction): Move their exportation from here...
21044 * src/LR0.h: to here.
21045 Adjust dependencies.
21046 * src/getargs.c (statisticsflag): New variable.
21047 Add support for `--statistics'.
21048 Adjust dependencies.
21049
21050 Remove a lot of now useless `extern' statements in most files.
21051
21052 2000-10-02 Akim Demaille <akim@epita.fr>
21053
21054 * src/LR0.h: New file.
21055 Propagate its use.
21056
21057 2000-10-02 Akim Demaille <akim@epita.fr>
21058
21059 * src/print.h: New file.
21060 Propagate its use.
21061 * src/print.c: Formatting and ordering changes.
21062 (verbose, terse): Replace with...
21063 (print_results): this new function.
21064 Adjust dependencies.
21065
21066 2000-10-02 Akim Demaille <akim@epita.fr>
21067
21068 * src/conflicts.c (conflict_report): New function.
21069 (conflict_log, verbose_conflict_log): Replace with...
21070 (print_conflicts): this function.
21071 Adjust dependencies.
21072 * src/conflicts.h: New file.
21073 Propagate its inclusion.
21074
21075 2000-10-02 Akim Demaille <akim@epita.fr>
21076
21077 * src/nullable.h: New file.
21078 Propagate its inclusion.
21079 * src/nullable.c: Formatting changes.
21080
21081 2000-10-02 Akim Demaille <akim@epita.fr>
21082
21083 * src/reduce.h: New file.
21084 Propagate its inclusion.
21085 * src/reduce.c: Topological sort and other formatting changes.
21086 (bool, TRUE, FALSE): Move their definition to...
21087 * src/system.h: here.
21088
21089 2000-10-02 Akim Demaille <akim@epita.fr>
21090
21091 * src/files.c: Formatting changes.
21092 (tryopen, tryclose, openfiles): Rename as...
21093 (xfopen, xfclose, open_files): this.
21094 (stringappend): static.
21095 * src/files.h: Complete the list of exported symbols.
21096 Propagate its use.
21097
21098 2000-10-02 Akim Demaille <akim@epita.fr>
21099
21100 * src/reader.h: New file.
21101 Propagate its use instead of tedious list of `extern' and
21102 prototypes.
21103 * src/reader.c: Formatting changes, topological sort,
21104 s/register//.
21105
21106 2000-10-02 Akim Demaille <akim@epita.fr>
21107
21108 * src/lex.h: Prototype `lex.c' exported functions.
21109 * src/reader.c: Adjust.
21110 * src/lex.c: Formatting changes.
21111 (safegetc): Rename as...
21112 (xgetc): this.
21113
21114 2000-10-02 Akim Demaille <akim@epita.fr>
21115
21116 * src/lalr.h: New file.
21117 Propagate its inclusion instead of prototypes and `extern'.
21118 * src/lalr.c: Formatting changes, topological sorting etc.
21119
21120 2000-10-02 Akim Demaille <akim@epita.fr>
21121
21122 * src/output.c (token_actions): Introduce a temporary array,
21123 YYDEFACT, that makes it possible for this function to use
21124 output_short_table.
21125
21126 2000-10-02 Akim Demaille <akim@epita.fr>
21127
21128 `user_toknums' is output as a `short[]' in `output.c', while it is
21129 defined as a `int[]' in `reader.c'. For consistency with the
21130 other output tables, `user_toknums' is now defined as a table of
21131 shorts.
21132
21133 * src/reader.c (user_toknums): Be a short table instead of an int
21134 table.
21135 Adjust dependencies.
21136
21137 Factor the short table outputs.
21138
21139 * src/output.c (output_short_table): New function.
21140 * src/output.c (output_gram, output_stos, output_rule_data)
21141 (output_base, output_table, output_check): Use it.
21142
21143 2000-10-02 Akim Demaille <akim@epita.fr>
21144
21145 * src/output.c (output): Topological sort of the functions, in
21146 order to get rid of the `static' prototypes.
21147 No longer use `register'.
21148 * src/output.h: New file.
21149 Propagate its inclusion in files explicitly prototyping functions
21150 from output.c.
21151
21152 2000-09-21 Akim Demaille <akim@epita.fr>
21153
21154 * src/atgeneral.m4: Update from Autoconf.
21155
21156 2000-09-21 Akim Demaille <akim@epita.fr>
21157
21158 * src/closure.h: New file.
21159 * src/closure.c: Formatting changes, topological sort over the
21160 functions, use of closure.h.
21161 (initialize_closure, finalize_closure): Rename as...
21162 (new_closure, free_closure): these. Adjust dependencies.
21163 * src/LR0.c: Formatting changes, topological sort, use of
21164 cloture.h.
21165 (initialize_states): Rename as...
21166 (new_states): this.
21167 * src/Makefile.am (noinst_HEADERS): Adjust.
21168
21169 2000-09-20 Akim Demaille <akim@epita.fr>
21170
21171 * src/acconfig.h: Don't protect config.h against multiple
21172 inclusion.
21173 Don't define PARAMS.
21174 * src/system.h: Define PARAMS.
21175 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21176 purpose of config.h. system.h must not try to fix wrong
21177 definitions in config.h.
21178
21179 2000-09-20 Akim Demaille <akim@epita.fr>
21180
21181 * src/derives.h: New file.
21182 * src/main.c, src/derives.h: Use it.
21183 Formatting changes.
21184 * src/Makefile.am (noinst_HEADERS): Adjust.
21185
21186 2000-09-20 Akim Demaille <akim@epita.fr>
21187
21188 * tests/atgeneral.m4: Update from Autoconf.
21189 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21190 (AT_CHECK_CALC): New macros.
21191 Use these macros to test bison with options `', `--raw',
21192 `--debug', `--yacc', `--yacc --debug'.
21193
21194 2000-09-19 Akim Demaille <akim@epita.fr>
21195
21196 * src/output.c: Formatting changes.
21197 * src/machine.h: Remove, leaving its contents in...
21198 * src/system.h: here.
21199 Include stdio.h.
21200 Adjust all dependencies on stdio.h and machine.h.
21201 * src/getargs.h: New file.
21202 Let all `extern' declarations about getargs.c be replaced with
21203 inclusion of `getargs.h'.
21204 * src/Makefile.am (noinst_HEADERS): Adjust.
21205
21206 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21207 scope.
21208 (yyerror): Returns void, not int.
21209 * doc/bison.texinfo: Formatting changes.
21210
21211 2000-09-19 Akim Demaille <akim@epita.fr>
21212
21213 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21214 portable.
21215
21216 2000-09-18 Akim Demaille <akim@epita.fr>
21217
21218 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21219 * src/Makefile.am (INCLUDES): Don't.
21220 Be ready to fetch headers in lib/.
21221
21222 2000-09-18 Akim Demaille <akim@epita.fr>
21223
21224 * doc/bison.texinfo: Update the copyright.
21225 ANSIfy and GNUify the examples.
21226 Remove the old menu.
21227
21228 2000-09-18 Akim Demaille <akim@epita.fr>
21229
21230 First set of tests: use the `calc' example from the documentation.
21231
21232 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21233 is defined only when YYDEBUG is.
21234 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21235 * src/files.c (tryopen, tryclose): Formatting changes.
21236 Move to the top and be static.
21237 * src/reader.c (read_signed_integer): Likewise.
21238 * tests/calc.m4: New file.
21239 * Makefile.am, suite.m4: Adjust.
21240 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21241
21242 2000-09-18 Akim Demaille <akim@epita.fr>
21243
21244 Add support for an Autotest test suite for Bison.
21245
21246 * m4/m4.m4, m4/atconfig.m4: New files.
21247 * m4/Makefile.am (EXTRA_DIST): Adjust.
21248 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21249 files.
21250 * src/getargs.c: Display a more standard --version message.
21251 * src/reader.c (reader): Formatting changes.
21252 No longer depend upon VERSION_STRING.
21253 * configure.in: No longer use `dnl'.
21254 Set up the test suite and the new directory `tests/.
21255 (VERSION_STRING): Remove.
21256
21257 2000-04-14 Akim Demaille <akim@epita.fr>
21258
21259 * src/reader.c (copy_comment2): New function, same as former
21260 `copy_comment', but outputs into two FILE *.
21261 (copy_comment): Use it.
21262 (parse_union_decl): Use it.
21263 (get_type, parse_start_decl): Use the same `invalid' message.
21264 (parse_start_decl, parse_union_decl): Use the same `multiple'
21265 message.
21266 (parse_union_decl, copy_guard, copy_action): Use the same
21267 `unmatched' message.
21268 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21269
21270 2000-03-31 Akim Demaille <akim@epita.fr>
21271
21272 * src/files.c (tryopen, tryclose): Move to the top.
21273 Be static.
21274
21275 2000-03-31 Akim Demaille <akim@epita.fr>
21276
21277 * src/main.c (main): Don't call `done', exit does it.
21278
21279 2000-03-31 Akim Demaille <akim@epita.fr>
21280
21281 * allocate.c: s/return (foo)/return foo/.
21282 * lalr.c: Likewise.
21283 * LR0.c: Likewise.
21284 * output.c: Likewise.
21285 * reader.c: Likewise.
21286 * symtab.c: Likewise.
21287 * vmsgetargs.c: Likewise.
21288
21289 2000-03-31 Akim Demaille <akim@epita.fr>
21290
21291 Clean up the error reporting functions.
21292
21293 * src/report.c: New file.
21294 * src/report.h: Likewise.
21295 * src/Makefile.am: Adjust.
21296 * m4/error.m4: New file.
21297 * m4/Makefile.am: Adjust.
21298 * configure.in (jm_PREREQ_ERROR): Call it.
21299 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21300 Remove.
21301 (fatal, fatals): Remove. All callers use complain.c::fatal.
21302 (warn, warni, warns, warnss, warnss): Remove. All callers use
21303 complain.c::complain.
21304 (toomany): Remove, use fatal instead.
21305 * src/files.c (done): No argument, use complain_message_count.
21306 * src/main.c (main): Register `done' to `atexit'.
21307
21308 * src/getargs.c (usage): More `fputs', less `fprintf'.
21309
21310 2000-03-28 Akim Demaille <akim@epita.fr>
21311
21312 * lib/: New directory.
21313 * Makefile.am (SUBDIRS): Adjust.
21314 * configure.in: Adjust.
21315 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21316 useless.
21317 * src/alloca.c: Moved to lib/.
21318 * src/getopt.c: Likewise.
21319 * src/getopt1.c: Likewise.
21320 * src/getopt.h: Likewise.
21321 * src/ansi2knr.c: Likewise.
21322 * src/ansi2knr.1: Likewise.
21323 * src/Makefile.am: Adjust.
21324 * lib/Makefile.am: New file.
21325
21326 2000-03-28 Akim Demaille <akim@epita.fr>
21327
21328 * src/getargs.c (usage): Refresh the help message.
21329
21330 2000-03-17 Akim Demaille <akim@epita.fr>
21331
21332 * src/getopt1.c: Updated from textutils 2.0e
21333 * src/getopt.c: Likewise.
21334 * src/getopt.h: Likewise.
21335
21336 2000-03-17 Akim Demaille <akim@epita.fr>
21337
21338 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21339 the file name, not the whole `#line LINE FILE'.
21340
21341 2000-03-17 Akim Demaille <akim@epita.fr>
21342
21343 On syntax errors, report the token on which we choked.
21344
21345 * src/bison.s1 (yyparse): In the label yyerrlab, when
21346 YYERROR_VERBOSE, add yychar in msg.
21347
21348 2000-03-17 Akim Demaille <akim@epita.fr>
21349
21350 * src/reader.c (copy_at): New function.
21351 (copy_guard): Use it.
21352 (copy_action): Use it.
21353
21354 2000-03-17 Akim Demaille <akim@epita.fr>
21355
21356 Be kind to translators, save some useless translations.
21357
21358 * src/main.c (banner): New function.
21359 (fatal_banner): Use it.
21360 (warn_banner): Use it.
21361
21362 2000-03-17 Akim Demaille <akim@epita.fr>
21363
21364 * src/reader.c (copy_definition): Use copy_string and
21365 copy_comment. Removed now unused `match', `ended',
21366 `cplus_comment'.
21367 (copy_comment, copy_string): Moved, to be visible from
21368 copy_definition.
21369
21370 2000-03-17 Akim Demaille <akim@epita.fr>
21371
21372 * src/reader.c (copy_string): Declare `static inline'. No
21373 problems with inline, since it is checked by configure.
21374 (copy_comment): Likewise.
21375
21376 2000-03-17 Akim Demaille <akim@epita.fr>
21377
21378 * src/reader.c (packsymbols): Formatting changes.
21379
21380 2000-03-17 Akim Demaille <akim@epita.fr>
21381
21382 * src/reader.c (copy_comment): New function, factored out from:
21383 (copy_action): Use it. Removed now unused `match', `ended',
21384 `cplus_comment'.
21385 (copy_guard): Likewise.
21386
21387 2000-03-17 Akim Demaille <akim@epita.fr>
21388
21389 * src/reader.c (copy_string): New function, factored out from:
21390 (copy_action): Use it.
21391 (copy_guard): Likewise.
21392
21393 2000-03-17 Akim Demaille <akim@epita.fr>
21394
21395 Change the handling of @s so that they behave exactly like $s.
21396 There is now a pseudo variable @$ (readble and writable), location
21397 of the lhs of the rule (by default ranging from the location of
21398 the first symbol of the rhs, to the location of the last symbol,
21399 or, if the rhs is empty, YYLLOC).
21400
21401 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21402 yyval.
21403 (yyparse): When providing a default semantic action, provide a
21404 default location action.
21405 (after the $): No longer change `*YYLSP', just stack YYLOC the
21406 same way you stack YYVAL.
21407 * src/reader.c (read_declarations): Use warns.
21408 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21409 (copy_action, case '@'): Likewise.
21410 Use a standard error message, to save useless work from
21411 translators.
21412
21413 2000-03-17 Akim Demaille <akim@epita.fr>
21414
21415 * src/bison.s1: Formatting and cosmetics changes.
21416 * src/reader.c: Likewise.
21417 Update the Copyright notice.
21418
21419 2000-03-17 Akim Demaille <akim@epita.fr>
21420
21421 * src/bison.s1 (#line): All set to `#line' only, since the
21422 Makefile now handles them.
21423
21424 2000-03-16 Akim Demaille <akim@epita.fr>
21425
21426 * src/output.c (output_rule_data): Output the documentation of
21427 some of the tables.
21428 (Copyright notice): Update.
21429 Formatting changes.
21430
21431 2000-03-16 Akim Demaille <akim@epita.fr>
21432
21433 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21434 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21435 One `#if YYDEBUG' remains, since it uses variables which are
21436 defined only if `YYDEBUG != 0'.
21437
21438 2000-03-16 Akim Demaille <akim@epita.fr>
21439
21440 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21441 and related variables so that the similarities are highlighted.
21442
21443 2000-03-16 Akim Demaille <akim@epita.fr>
21444
21445 * src/bison.s1: Properly indent CPP directives.
21446
21447 2000-03-16 Akim Demaille <akim@epita.fr>
21448
21449 * src/bison.s1: Properly indent the `alloca' CPP section.
21450
21451 2000-03-16 Akim Demaille <akim@epita.fr>
21452
21453 Do not hard code values of directories in `configure.in'.
21454 Update the `configure' tool chain.
21455
21456 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21457 src/makefile.am.
21458 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21459 (AC_OUTPUT): Add m4/Makefile.
21460 Bump to bison 1.28a, 1.29 has never been released.
21461 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21462 handled via src/Makefile.am.
21463 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21464 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21465 autoheader.
21466 * Makefile.am (SUBDIRS): Add m4.
21467 (ACLOCAL_AM_FLAGS): New variable.
21468 (AUTOMAKE_OPTIONS): Add check-news.
21469 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21470 the proper line number and file name.
21471 (DEFS): Propagate the location of bison library files and of the
21472 locale files.
21473 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21474 builddir.
21475 * acinclude.m4: Remove, replaced by the directory m4.
21476 * m4/Makefile.am (EXTRA_DIST): New variable.
21477 * m4/gettext.m4: New file, from the fileutils.
21478 * m4/lcmessage.m4: Likewise
21479 * m4/progtest.m4: Likewise.
21480 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21481
21482 2000-03-10 Akim Demaille <akim@epita.fr>
21483
21484 * src/closure.c:
21485 Formatting changes of various comments.
21486 Respect the GNU coding standards at various places.
21487 Don't use `_()' when no translation is needed.
21488
21489 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21490
21491 * src/files.c:
21492 OS/2 honors TMPDIR environment variable.
21493
21494 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21495
21496 * doc/bison.texinfo: Tweaked spelling and grammar.
21497 Updated ISBN.
21498 Removed reference to price of printed copy.
21499 Mention BISON_SIMPLE and BISON_HAIRY.
21500
21501 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21502
21503 * configure.in, NEWS:
21504 Bison 1.29 released.
21505
21506 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21507
21508 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21509 Added reference card.
21510
21511 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21512
21513 * po/ru.po: Added Russian translation.
21514
21515 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21516
21517 * configure.in: Added Russian translation.
21518
21519 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21520
21521 * configure.in, NEWS, README:
21522 Released version 1.28.
21523
21524 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21525
21526 * src/system.h:
21527 Squashed redefinition warning on some systems.
21528
21529 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21530 Have configure build version string instead of relying on ANSI string
21531 concatentation.
21532
21533 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21534
21535 * po/POTFILES.in: Got rid of version.c.
21536
21537 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21538
21539 * acconfig.h, configure.in:
21540 Have configure build version string instead of relying on ANSI string
21541 concatentation.
21542
21543 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21544
21545 * doc/bison.1:
21546 Dropped mention of `+' for long-named options.
21547
21548 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21549
21550 * src/files.c: Added <unistd.h> for unlink().
21551
21552 * src/Makefile.am, src/system.h:
21553 I18n fixes.
21554
21555 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21556
21557 * README: Added a FAQ list.
21558
21559 * configure.in, acconfig.h:
21560 I18n fixes.
21561
21562 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21563
21564 * doc/FAQ, doc/Makefile.am:
21565 Added a FAQ list.
21566
21567 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21568
21569 * src/alloc.h, src/symtab.h, src/version.c:
21570 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21571
21572 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21573
21574 * src/.cvsignore, src/Makefile.am:
21575 Reorganized: sources in `src', documentation in `doc'.
21576
21577 * src/lex.c (literalchar):
21578 fixed the code for escaping double quotes (thanks
21579 Jonathan Czisny.)
21580
21581 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21582
21583 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21584 Adjusted paths to reflect directory reorganization.
21585
21586 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21587
21588 * doc/.cvsignore, doc/Makefile.am:
21589 Reorganized: sources in `src', documentation in `doc'.
21590
21591 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21592
21593 * configure.in:
21594 Updated AC_INIT file to reflect directory reorganization.
21595
21596 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21597 Reorganized: sources in `src', documentation in `doc'.
21598
21599 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21600
21601 * src/allocate.c:
21602 Don't declare calloc() and realloc() if not necessary.
21603
21604 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21605
21606 * configure.in, acconfig.h, acinclude.m4:
21607 Don't declare calloc() and realloc() if not necessary.
21608
21609 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21610
21611 * po/.cvsignore: Added i18n support.
21612
21613 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21614
21615 * acconfig.h, configure.in, Makefile.am:
21616 Added i18n support.
21617
21618 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21619
21620 * src/bison.s1: Fixed #line numbers.
21621
21622 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21623
21624 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21625 Added PO files from Translation Project.
21626
21627 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21628
21629 * Makefile.am:
21630 Added support for non-ANSI compilers (ansi2knr).
21631
21632 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21633
21634 * configure.in: Bumped version number to 1.27.
21635
21636 * Makefile.am:
21637 Added `bison.simple' to list of files removed by `make distclean'.
21638
21639 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21640
21641 * src/files.c, src/files.h:
21642 Defined locations of parser files in config.h instead of Makefile.
21643
21644 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21645
21646 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21647 Defined locations of parser files in config.h instead of Makefile.
21648
21649 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21650
21651 * Makefile.am:
21652 Removed inappropriate use of $< macro.
21653
21654 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21655
21656 * po/Makefile.in.in, po/POTFILES.in:
21657 Add `po' directory skeleton.
21658
21659 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21660
21661 * README: Document help-bison list.
21662
21663 * configure.in: Add check for mkstemp().
21664
21665 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21666
21667 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21668 Hush a few compiler warnings.
21669
21670 * src/files.c:
21671 Add tryclose(), which verifies that fclose was successful.
21672 Hush a couple of compiler warnings.
21673
21674 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21675
21676 * Makefile.am, OChangeLog:
21677 ChangeLog is now automatically generated. Include the old version as
21678 OChangeLog.
21679
21680 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21681
21682 * 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:
21683 Update FSF address.
21684
21685 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21686
21687 * doc/bison.texinfo: Fix formatting glitch.
21688
21689 * doc/bison.texinfo: Update FSF address.
21690
21691 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21692
21693 * acconfig.h: Update FSF address.
21694
21695 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21696
21697 * src/system.h:
21698 Don't define PACKAGE here, since config.h defines it.
21699
21700 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21701
21702 * src/reader.c: Update copyright date.
21703
21704 * src/main.c:
21705 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21706 favor of output directly to stderr (avoids buffer overruns).
21707
21708 * src/reader.c: Some checks for premature EOF.
21709
21710 * 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:
21711 Use prototypes if the compiler understands them.
21712
21713 * src/files.c: Honor TMPDIR on Unix hosts.
21714 Use prototypes if the compiler understands them.
21715
21716 * src/reader.c:
21717 Fix a couple of buffer overrun bugs.
21718 Use prototypes if the compiler understands them.
21719
21720 * src/system.h: Include unistd.h and ctype.h.
21721 Use #ifdef instead of #if for NLS symbols.
21722
21723 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21724
21725 * doc/bison.texinfo:
21726 Delete comment "consider using @set for edition number, etc..." since
21727 we now are doing so.
21728
21729 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21730
21731 * configure.in:
21732 Use prototypes if the compiler understands them.
21733
21734 * NEWS: Document 1.26 highlights.
21735
21736 * Makefile.am: Require Automake 1.3 or later.
21737
21738 * acconfig.h:
21739 Use prototypes if the compiler understands them.
21740
21741 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21742
21743 * src/version.c:
21744 Use VERSION symbol from automake for version number.
21745
21746 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21747
21748 * acconfig.h, configure.in, version.cin:
21749 Use VERSION symbol from automake for version number.
21750
21751 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21752
21753 * Makefile.am:
21754 Distribute original version of simple parser (bison.s1), not built
21755 version (bison.simple).
21756
21757 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21758
21759 * doc/bison.texinfo: Add info dir entry.
21760
21761 * doc/bison.texinfo:
21762 Let automake put version number into documentation.
21763
21764 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21765
21766 * src/bison.cld, src/build.com, src/vmshlp.mar:
21767 Add non-RCS files from /gd/gnu/bison.
21768
21769 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21770
21771 * doc/bison.1:
21772 Document the BISON_HAIRY and BISON_SIMPLE variables.
21773
21774 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21775
21776 * src/version.c: Build version.c automatically.
21777
21778 * src/reader.c:
21779 Fix token numbering (used to start at 258, not 257).
21780
21781 * src/system.h: Include config.h.
21782
21783 * src/getargs.c: Update bug report address.
21784
21785 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21786 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21787
21788 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21789
21790 * Makefile.am:
21791 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21792
21793 * configure.in, version.cin:
21794 Build version.c automatically.
21795
21796 * AUTHORS: Add AUTHORS file.
21797
21798 * README: Update bug report address.
21799
21800 * bison.simple:
21801 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21802
21803 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21804 Add automake stuff.
21805
21806 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21807
21808 * doc/bison.texinfo: Clean up some formatting.
21809
21810 1998-05-05 Richard Stallman <rms@gnu.org>
21811
21812 * doc/bison.texinfo:
21813 Explain better why to make a pure parser.
21814
21815 1998-01-05 Richard Stallman <rms@gnu.org>
21816
21817 * src/files.c (openfiles):
21818 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21819 find a temporary directory, if possible. Do not unlink files while
21820 they are open.
21821
21822 1997-08-25 Richard Stallman <rms@gnu.org>
21823
21824 * src/reader.c (stack_offset;):
21825 Change some warni to warns.
21826
21827 * src/lex.c (literalchar): Use warns, not warni.
21828
21829 1997-06-28 Richard Stallman <rms@gnu.org>
21830
21831 * src/bison.s1: Add a Bison version comment.
21832
21833 * src/main.c (fatal, warn, berror):
21834 Use program_name.
21835
21836 1997-06-28 Richard Stallman <rms@gnu.org>
21837
21838 * Makefile.in (bison_version): New variable.
21839 (dist): Use that variable.
21840 (bison.s1): Substitute the Bison version into bison.simple.
21841
21842 * bison.simple: Add a Bison version comment.
21843
21844 1997-06-18 Richard Stallman <rms@gnu.org>
21845
21846 * src/main.c (fatal, warn, berror):
21847 Make error messages standard.
21848 (toomany): Improve error message text.
21849
21850 * 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:
21851 new.h renamed to alloc.h.
21852
21853 1997-06-18 Richard Stallman <rms@gnu.org>
21854
21855 * Makefile.in: new.h renamed to alloc.h.
21856
21857 1997-05-24 Richard Stallman <rms@gnu.org>
21858
21859 * src/lex.c (literalchar):
21860 Fix the code for escaping \, " and '.
21861
21862 (lex): Avoid trouble when there are many chars
21863 to discard in a char literal with just several chars in it.
21864
21865 1997-05-17 Richard Stallman <rms@gnu.org>
21866
21867 * src/bison.s1:
21868 Use malloc, if using alloca is troublesome.
21869 (YYSTACK_USE_ALLOCA): New flag macro.
21870 Define it for some systems and compilers.
21871 (YYSTACK_ALLOC): New macro.
21872 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21873 If it was malloc'd, free it.
21874
21875 1997-05-17 Richard Stallman <rms@gnu.org>
21876
21877 * bison.simple:
21878 Use malloc, if using alloca is troublesome.
21879 (YYSTACK_USE_ALLOCA): New flag macro.
21880 Define it for some systems and compilers.
21881 (YYSTACK_ALLOC): New macro.
21882 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21883 If it was malloc'd, free it.
21884
21885 1997-04-23 Richard Stallman <rms@gnu.org>
21886
21887 * src/bison.s1:
21888 (alloca) [__hpux]: Always define as __builtin_alloca.
21889
21890 1997-04-23 Richard Stallman <rms@gnu.org>
21891
21892 * bison.simple:
21893 (alloca) [__hpux]: Always define as __builtin_alloca.
21894
21895 1997-04-22 Richard Stallman <rms@gnu.org>
21896
21897 * src/bison.s1:
21898 [__hpux]: Include alloca.h (right for HPUX 10)
21899 instead of declaring alloca (right for HPUX 9).
21900
21901 * src/bison.s1 (__yy_memcpy):
21902 Declare arg `count' as unsigned int.
21903 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21904
21905 1997-04-22 Richard Stallman <rms@gnu.org>
21906
21907 * bison.simple:
21908 [__hpux]: Include alloca.h (right for HPUX 10)
21909 instead of declaring alloca (right for HPUX 9).
21910
21911 * bison.simple (__yy_memcpy):
21912 Declare arg `count' as unsigned int.
21913 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21914
21915 1997-01-03 Richard Stallman <rms@gnu.org>
21916
21917 * src/allocate.c: [__STDC__ or _MSC_VER]:
21918 Declare calloc and realloc to return void *.
21919
21920 1997-01-02 Richard Stallman <rms@gnu.org>
21921
21922 * src/system.h:
21923 [_MSC_VER]: Include stdlib.h and process.h.
21924 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21925
21926 * src/main.c (main): Return FAILURE as a value.
21927 (printable_version): Declare arg as int, not char.
21928
21929 1997-01-02 Richard Stallman <rms@gnu.org>
21930
21931 * Makefile.in (dist):
21932 Explicitly check for symlinks, and copy them.
21933
21934 1996-12-19 Richard Stallman <rms@gnu.org>
21935
21936 * src/files.c:
21937 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21938
21939 1996-12-18 Paul Eggert <eggert@gnu.org>
21940
21941 * src/bison.s1 (yyparse):
21942 If __GNUC__ and YYPARSE_PARAM are both defined,
21943 declare yyparse to have a void * argument.
21944
21945 1996-12-18 Paul Eggert <eggert@gnu.org>
21946
21947 * bison.simple (yyparse):
21948 If __GNUC__ and YYPARSE_PARAM are both defined,
21949 declare yyparse to have a void * argument.
21950
21951 1996-12-17 Richard Stallman <rms@gnu.org>
21952
21953 * src/reduce.c (nbits): Add some casts.
21954
21955 1996-08-12 Richard Stallman <rms@gnu.org>
21956
21957 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21958
21959 1996-08-12 Richard Stallman <rms@gnu.org>
21960
21961 * bison.simple: Test _MSDOS as well as _MSDOS_.
21962
21963 1996-07-31 Richard Stallman <rms@gnu.org>
21964
21965 * src/bison.s1:
21966 [__sun && __i386]: Include alloca.h.
21967
21968 1996-07-31 Richard Stallman <rms@gnu.org>
21969
21970 * bison.simple:
21971 [__sun && __i386]: Include alloca.h.
21972
21973 1996-07-30 Richard Stallman <rms@gnu.org>
21974
21975 * src/bison.s1: Comment change.
21976
21977 * src/bison.s1: Test _MSDOS_, not MSDOS.
21978
21979 1996-07-30 Richard Stallman <rms@gnu.org>
21980
21981 * bison.simple: Comment change.
21982
21983 * bison.simple: Test _MSDOS_, not MSDOS.
21984
21985 1996-06-01 Richard Stallman <rms@gnu.org>
21986
21987 * 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:
21988 Insert `_' macro around many string constants.
21989
21990 * src/main.c:
21991 Insert `_' macro around many string constants.
21992
21993 (main): Call setlocale, bindtextdomain and textdomain.
21994
21995 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21996 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21997 [ENABLE_NLS]: Include libintl.h.
21998 [ENABLE_NLS] (gettext): Define.
21999 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
22000 (N_, PACKAGE, LOCALEDIR): New macros.
22001
22002 1996-06-01 Richard Stallman <rms@gnu.org>
22003
22004 * POTFILES.in: New file.
22005
22006 * Makefile.in (allocate.o):
22007 Define target explicitly.
22008
22009 * Makefile.in (CFLAGS): Set to @CFLAGS@.
22010 (LDFLAGS): Set to @LDFLAGS@.
22011 (configure): Run autoconf only if preceding `cd' succeeds.
22012 (bison.s1): Redirect output to temporary file then move the
22013 temporary to the target, rather than redirecting directly to bison.s1.
22014 (clean): Remove config.status and config.log.
22015 (distclean): Don't remove config.status here.
22016
22017 1996-05-12 Richard Stallman <rms@gnu.org>
22018
22019 * src/bison.s1:
22020 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22021
22022 1996-05-12 Richard Stallman <rms@gnu.org>
22023
22024 * bison.simple:
22025 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
22026
22027 1996-05-11 Richard Stallman <rms@gnu.org>
22028
22029 * src/bison.s1 (__yy_memcpy):
22030 Really reorder the args, as was supposedly done on Feb 14 1995.
22031 (yyparse): Calls changed accordingly.
22032
22033 1996-05-11 Richard Stallman <rms@gnu.org>
22034
22035 * Makefile.in (dist): Don't use $(srcdir).
22036
22037 * bison.simple (__yy_memcpy):
22038 Really reorder the args, as was supposedly done on Feb 14 1995.
22039 (yyparse): Calls changed accordingly.
22040
22041 1996-01-27 Richard Stallman <rms@gnu.org>
22042
22043 * src/output.c (output_rule_data):
22044 Test YYERROR_VERBOSE in the conditional
22045 around the definition of ttyname.
22046
22047 1995-12-29 Richard Stallman <rms@gnu.org>
22048
22049 * src/bison.s1:
22050 Fix line numbers in #line commands.
22051
22052 1995-12-29 Richard Stallman <rms@gnu.org>
22053
22054 * bison.simple:
22055 Fix line numbers in #line commands.
22056
22057 1995-12-27 Richard Stallman <rms@gnu.org>
22058
22059 * src/bison.s1 (YYPARSE_PARAM_DECL):
22060 In C++, make it always null.
22061 (YYPARSE_PARAM_ARG): New macro.
22062 (yyparse): Use YYPARSE_PARAM_ARG.
22063
22064 1995-12-27 Richard Stallman <rms@gnu.org>
22065
22066 * bison.simple (YYPARSE_PARAM_DECL):
22067 In C++, make it always null.
22068 (YYPARSE_PARAM_ARG): New macro.
22069 (yyparse): Use YYPARSE_PARAM_ARG.
22070
22071 1995-11-29 Richard Stallman <rms@gnu.org>
22072
22073 * doc/bison.texinfo:
22074 Describe literal string tokens, %raw, %no_lines, %token_table.
22075
22076 1995-11-29 Daniel Hagerty <hag@gnu.org>
22077
22078 * doc/bison.texinfo: Fixed update date
22079
22080 1995-10-16 Richard Stallman <rms@gnu.org>
22081
22082 * src/version.c: Version 1.25.
22083
22084 1995-10-16 Richard Stallman <rms@gnu.org>
22085
22086 * NEWS: *** empty log message ***
22087
22088 1995-10-16 Richard Stallman <rms@gnu.org>
22089
22090 * doc/bison.1, doc/bison.rnh:
22091 Add new options.
22092
22093 1995-10-15 Richard Stallman <rms@gnu.org>
22094
22095 * src/vmsgetargs.c, src/getargs.c:
22096 Added -n, -k, and -raw switches.
22097 (noparserflag, toknumflag, rawtoknumflag): New variables.
22098
22099 * src/symtab.h (SALIAS):
22100 New #define for adding aliases to %token.
22101 (struct bucket): Added `alias' field.
22102
22103 * src/reduce.c (reduce_grammar):
22104 Revise error message.
22105 (print_notices): Remove final `.' from error message.
22106
22107 * src/reader.c (reader_output_yylsp):
22108 New function.
22109 (readgram): Use `#if 0' around code that accepted %command
22110 inside grammar rules: The documentation doesn't allow it,
22111 and it will fail since the %command processors scan for the next %.
22112 (parse_token_decl): Extended the %token
22113 declaration to allow a multi-character symbol as an alias.
22114 (parse_thong_decl): New function.
22115 (read_declarations): Added %thong declarations.
22116 (read_declarations): Handle NOOP to deal with allowing
22117 % declarations as another means to specify the flags.
22118 (readgram): Allow %prec prior to semantics embedded in a rule.
22119 (skip_to_char, read_declarations, copy_definition)
22120 (parse_token_decl, parse_start_decl, parse_type_decl)
22121 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
22122 (get_type_name, copy_guard, copy_action, readgram)
22123 (get_type, packsymbols): Revised most error messages.
22124 Changed `fatal' to `warnxxx' to avoid aborting for error.
22125 Revised and use multiple warnxxx functions to avoid using VARARGS1.
22126 (read_declarations): Improve the error message for
22127 an invalid character. Do not abort.
22128 (read_declarations, copy_guard, copy_action): Use
22129 printable_version to avoid unprintable characters in printed output.
22130 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
22131 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
22132 Allow the type of a non-terminal can be given
22133 more than once, as long as all specifications give the same type.
22134
22135 * src/output.c:
22136 (output_headers, output_trailers, output, output_gram)
22137 (output_rule_data): Implement noparserflag variable.
22138 Implement toknumflag variable.
22139 (output): Call reader_output_yylsp to output LTYPESTR.
22140
22141 * src/main.c (main):
22142 If reader sees an error, don't process the grammar.
22143 (fatals): Updated to not use VARARGS1.
22144 (printable_version, int_to_string, warn, warni, warns, warnss)
22145 (warnsss): New error reporting functions. Avoid abort for error.
22146
22147 * src/lex.h:
22148 Added THONG and NOOP for alias processing.
22149 Added SETOPT for the new code that allows setting options with %flags.
22150
22151 * src/lex.c:
22152 Include getopt.h. Add some extern decls.
22153 (safegetc): New function to deal with EOF gracefully.
22154 (literalchar); new function to deal with reading \ escapes.
22155 (lex): Use literalchar.
22156 (lex): Implemented "..." tokens.
22157 (literalchar, lex, parse_percent_token): Made tokenbuffer
22158 always contain the token. This includes growing the token
22159 buffer while reading an integer.
22160 (parse_percent_token): Replaced if-else statement with percent_table.
22161 (parse_percent_token): Added % declarations as another
22162 way to specify the flags -n, -l, and -r. Also added hooks for
22163 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
22164 major changes to files.c.
22165 (lex) Retain in the incoming stream a character following
22166 an incorrect '/'.
22167 (skip_white_space, lex): Revised most error messages
22168 and changed fatal to warn to avoid aborting.
22169 (percent_table): Added %thong declarations.
22170
22171 * src/gram.h: Comment changes.
22172
22173 * src/files.c (openfiles, open_extra_files, done):
22174 Add faction flag
22175 and actfile file. Handle noparserflag. Both for -n switch.
22176
22177 * src/conflicts.c (resolve_sr_conflict):
22178 Remove use of alloca.
22179
22180 1995-06-01 Jim Meyering <meyering@gnu.org>
22181
22182 * doc/bison.texinfo: *** empty log message ***
22183
22184 1995-05-06 Richard Stallman <rms@gnu.org>
22185
22186 * src/bison.s1: Comment change.
22187
22188 1995-05-06 Richard Stallman <rms@gnu.org>
22189
22190 * bison.simple: Comment change.
22191
22192 1995-05-03 Richard Stallman <rms@gnu.org>
22193
22194 * src/version.c: Version now 1.24.
22195
22196 * src/bison.s1: Change distribution terms.
22197
22198 * src/version.c: Version now 1.23.
22199
22200 1995-05-03 Richard Stallman <rms@gnu.org>
22201
22202 * doc/bison.texinfo:
22203 Rewrite "Conditions for Using Bison".
22204 Update version to 1.24.
22205
22206 1995-05-03 Richard Stallman <rms@gnu.org>
22207
22208 * bison.simple: Change distribution terms.
22209
22210 1995-02-23 Richard Stallman <rms@gnu.org>
22211
22212 * src/files.c: Test __VMS_POSIX as well as VMS.
22213
22214 1995-02-14 Jim Meyering <meyering@gnu.org>
22215
22216 * src/bison.s1 (__yy_memcpy):
22217 Renamed from __yy_bcopy to avoid
22218 confusion. Reverse FROM and TO arguments to be consistent with
22219 those of memcpy.
22220
22221 1995-02-14 Jim Meyering <meyering@gnu.org>
22222
22223 * bison.simple (__yy_memcpy):
22224 Renamed from __yy_bcopy to avoid
22225 confusion. Reverse FROM and TO arguments to be consistent with
22226 those of memcpy.
22227
22228 1994-11-10 David J. MacKenzie <djm@gnu.org>
22229
22230 * NEWS: reformat
22231
22232 * NEWS: New file.
22233
22234 * Makefile.in (DISTFILES): Include NEWS.
22235
22236 * Makefile.in (DISTFILES):
22237 Include install-sh, not install.sh.
22238
22239 * configure.in: Update to Autoconf v2 macro names.
22240
22241 1994-10-05 David J. MacKenzie <djm@gnu.org>
22242
22243 * Makefile.in: fix typo
22244
22245 * Makefile.in (prefix, exec_prefix):
22246 Let configure set them.
22247
22248 1994-09-28 David J. MacKenzie <djm@gnu.org>
22249
22250 * Makefile.in: Set datadir to $(prefix)/share.
22251
22252 1994-09-15 Richard Stallman <rms@gnu.org>
22253
22254 * src/bison.s1:
22255 Update copyright notice and GPL version.
22256
22257 1994-09-15 Richard Stallman <rms@gnu.org>
22258
22259 * bison.simple:
22260 Update copyright notice and GPL version.
22261
22262 1994-07-12 Richard Stallman <rms@gnu.org>
22263
22264 * src/reduce.c, src/reader.c:
22265 entered into RCS
22266
22267 1994-05-05 David J. MacKenzie <djm@gnu.org>
22268
22269 * Makefile.in: entered into RCS
22270
22271 1994-03-26 Richard Stallman <rms@gnu.org>
22272
22273 * src/bison.s1: entered into RCS
22274
22275 1994-03-26 Richard Stallman <rms@gnu.org>
22276
22277 * bison.simple: entered into RCS
22278
22279 1994-03-25 Richard Stallman <rms@gnu.org>
22280
22281 * src/main.c: entered into RCS
22282
22283 1994-03-24 Richard Stallman <rms@gnu.org>
22284
22285 * src/conflicts.c: entered into RCS
22286
22287 1994-01-02 Richard Stallman <rms@gnu.org>
22288
22289 * Makefile.in: *** empty log message ***
22290
22291 1993-11-21 Richard Stallman <rms@gnu.org>
22292
22293 * src/bison.s1: *** empty log message ***
22294
22295 1993-11-21 Richard Stallman <rms@gnu.org>
22296
22297 * doc/bison.texinfo: entered into RCS
22298
22299 * doc/bison.texinfo: *** empty log message ***
22300
22301 1993-11-21 Richard Stallman <rms@gnu.org>
22302
22303 * bison.simple: *** empty log message ***
22304
22305 1993-10-25 David J. MacKenzie <djm@gnu.org>
22306
22307 * doc/bison.texinfo: *** empty log message ***
22308
22309 1993-10-19 Richard Stallman <rms@gnu.org>
22310
22311 * src/bison.s1: *** empty log message ***
22312
22313 1993-10-19 Richard Stallman <rms@gnu.org>
22314
22315 * bison.simple: *** empty log message ***
22316
22317 1993-10-14 Richard Stallman <rms@gnu.org>
22318
22319 * src/bison.s1: *** empty log message ***
22320
22321 1993-10-14 Richard Stallman <rms@gnu.org>
22322
22323 * bison.simple: *** empty log message ***
22324
22325 1993-09-14 David J. MacKenzie <djm@gnu.org>
22326
22327 * doc/bison.texinfo: *** empty log message ***
22328
22329 1993-09-13 Noah Friedman <friedman@gnu.org>
22330
22331 * Makefile.in: *** empty log message ***
22332
22333 1993-09-10 Richard Stallman <rms@gnu.org>
22334
22335 * src/conflicts.c: *** empty log message ***
22336
22337 * src/system.h: entered into RCS
22338
22339 1993-09-10 Richard Stallman <rms@gnu.org>
22340
22341 * doc/bison.1: entered into RCS
22342
22343 1993-09-06 Noah Friedman <friedman@gnu.org>
22344
22345 * src/version.c: entered into RCS
22346
22347 1993-09-06 Noah Friedman <friedman@gnu.org>
22348
22349 * Makefile.in: *** empty log message ***
22350
22351 1993-07-30 David J. MacKenzie <djm@gnu.org>
22352
22353 * Makefile.in: *** empty log message ***
22354
22355 1993-07-24 Richard Stallman <rms@gnu.org>
22356
22357 * src/bison.s1: *** empty log message ***
22358
22359 1993-07-24 Richard Stallman <rms@gnu.org>
22360
22361 * bison.simple: *** empty log message ***
22362
22363 1993-07-08 David J. MacKenzie <djm@gnu.org>
22364
22365 * Makefile.in: *** empty log message ***
22366
22367 1993-07-04 Richard Stallman <rms@gnu.org>
22368
22369 * src/bison.s1: *** empty log message ***
22370
22371 1993-07-04 Richard Stallman <rms@gnu.org>
22372
22373 * bison.simple: *** empty log message ***
22374
22375 1993-06-26 David J. MacKenzie <djm@gnu.org>
22376
22377 * src/getargs.c: entered into RCS
22378
22379 1993-06-26 David J. MacKenzie <djm@gnu.org>
22380
22381 * doc/bison.texinfo: *** empty log message ***
22382
22383 * doc/bison.1: New file.
22384
22385 1993-06-25 Richard Stallman <rms@gnu.org>
22386
22387 * src/getargs.c: New file.
22388
22389 1993-06-16 Richard Stallman <rms@gnu.org>
22390
22391 * src/bison.s1: *** empty log message ***
22392
22393 1993-06-16 Richard Stallman <rms@gnu.org>
22394
22395 * bison.simple: *** empty log message ***
22396
22397 1993-06-03 Richard Stallman <rms@gnu.org>
22398
22399 * src/bison.s1: New file.
22400
22401 1993-06-03 Richard Stallman <rms@gnu.org>
22402
22403 * doc/bison.texinfo: *** empty log message ***
22404
22405 1993-06-03 Richard Stallman <rms@gnu.org>
22406
22407 * bison.simple: New file.
22408
22409 1993-05-19 Richard Stallman <rms@gnu.org>
22410
22411 * doc/bison.texinfo: New file.
22412
22413 1993-05-07 Noah Friedman <friedman@gnu.org>
22414
22415 * Makefile.in: *** empty log message ***
22416
22417 1993-04-28 Noah Friedman <friedman@gnu.org>
22418
22419 * src/reader.c: *** empty log message ***
22420
22421 1993-04-23 Noah Friedman <friedman@gnu.org>
22422
22423 * src/alloc.h: entered into RCS
22424
22425 1993-04-20 David J. MacKenzie <djm@gnu.org>
22426
22427 * src/version.c: *** empty log message ***
22428
22429 * src/files.c, src/allocate.c:
22430 entered into RCS
22431
22432 * src/reader.c: *** empty log message ***
22433
22434 * src/lex.c: entered into RCS
22435
22436 * src/conflicts.c: New file.
22437
22438 * src/symtab.c: entered into RCS
22439
22440 * src/alloc.h: New file.
22441
22442 * src/LR0.c: entered into RCS
22443
22444 1993-04-18 Noah Friedman <friedman@gnu.org>
22445
22446 * src/reader.c: New file.
22447
22448 * src/version.c: *** empty log message ***
22449
22450 1993-04-18 Noah Friedman <friedman@gnu.org>
22451
22452 * Makefile.in: *** empty log message ***
22453
22454 1993-04-17 Noah Friedman <friedman@gnu.org>
22455
22456 * Makefile.in: *** empty log message ***
22457
22458 1993-04-15 Richard Stallman <rms@gnu.org>
22459
22460 * src/main.c, src/files.c:
22461 New file.
22462
22463 1993-04-15 Noah Friedman <friedman@gnu.org>
22464
22465 * configure.in: entered into RCS
22466
22467 * configure.in: *** empty log message ***
22468
22469 * configure.in: New file.
22470
22471 1993-04-14 Richard Stallman <rms@gnu.org>
22472
22473 * Makefile.in: New file.
22474
22475 1993-04-13 Richard Stallman <rms@gnu.org>
22476
22477 * src/version.c: New file.
22478
22479 1993-03-25 Richard Stallman <rms@gnu.org>
22480
22481 * src/output.c: entered into RCS
22482
22483 1992-09-25 Richard Stallman <rms@gnu.org>
22484
22485 * configure.bat: entered into RCS
22486
22487 1992-06-22 Richard Stallman <rms@gnu.org>
22488
22489 * src/vmsgetargs.c: entered into RCS
22490
22491 1992-06-22 Richard Stallman <rms@gnu.org>
22492
22493 * doc/bison.rnh: entered into RCS
22494
22495 1992-04-20 David J. MacKenzie <djm@gnu.org>
22496
22497 * README: entered into RCS
22498
22499 1992-01-22 Richard Stallman <rms@gnu.org>
22500
22501 * src/machine.h: entered into RCS
22502
22503 1991-12-21 Richard Stallman <rms@gnu.org>
22504
22505 * src/lalr.c, src/closure.c:
22506 entered into RCS
22507
22508 1991-12-20 Richard Stallman <rms@gnu.org>
22509
22510 * src/state.h: entered into RCS
22511
22512 1991-12-18 Richard Stallman <rms@gnu.org>
22513
22514 * src/print.c, src/nullable.c, src/derives.c:
22515 entered into RCS
22516
22517 1991-11-03 David J. MacKenzie <djm@gnu.org>
22518
22519 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22520 entered into RCS
22521
22522 1988-09-09 Richard Stallman <rms@gnu.org>
22523
22524 * src/bison.hairy: entered into RCS
22525
22526 1987-12-16 Richard Stallman <rms@gnu.org>
22527
22528 * REFERENCES: entered into RCS
22529
22530
22531 -----
22532
22533 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22534 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22535 Free Software Foundation, Inc.
22536
22537 Copying and distribution of this file, with or without
22538 modification, are permitted provided the copyright notice and this
22539 notice are preserved.