1 2008-11-13 Akim Demaille <demaille@gostai.com>
3 Remove useless class specification.
4 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
5 to refer to the class name to use a type defined by the class for
6 arguments of member functions.
8 2008-11-13 Akim Demaille <demaille@gostai.com>
10 Finer input type for yytranslate.
11 This patch is debatable: the tradition expects yylex to return an int
12 which happens to correspond to token_number (which is an enum). This
13 allows for instance to return characters (such as '*' etc.). But this
14 goes against the stronger typing I am trying to have with the new
15 lex interface which return a symbol_type. So in this case, feed
16 yytranslate_ with a token_type.
18 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
21 2008-11-13 Akim Demaille <demaille@gostai.com>
23 Honor lex-params in %define lex_symbol mode.
24 * data/lalr1.cc: Use b4_lex_param.
26 2008-11-13 Akim Demaille <demaille@gostai.com>
29 * src/output.c (symbol_definitions_output): Rename symbol
30 attributes type_name and has_type_name as type and has_type.
31 * data/lalr1.cc: Adjust uses.
33 2008-11-13 Akim Demaille <demaille@gostai.com>
35 Use b4_type_names for the union type.
36 The union used to compute the size of the variant used to iterate over the
37 type of all the symbols, with a lot of redundancy. Now iterate over the
38 lists of symbols having the same type-name.
40 * data/lalr1.cc (b4_char_sizeof_): New.
41 (b4_char_sizeof): Use it.
42 Adjust to be called with a list of numbers instead of a single
44 Adjust its caller for new-line issues.
46 2008-11-13 Akim Demaille <demaille@gostai.com>
48 Define the "identifier" of a symbol.
49 Symbols may have several string representations, for instance if they
50 have an alias. What I call its "id" is a string that can be used as
51 an identifier. May not exist.
53 Currently the symbols which have the "tag_is_id" flag set are those that
54 don't have an alias. Look harder for the id.
56 * src/output.c (is_identifier): Move to...
57 * src/symtab.c (is_identifier): here.
58 * src/symtab.h, src/symtab.c (symbol_id_get): New.
59 * src/output.c (symbol_definitions_output): Use it to define "id"
61 Remove the definition of "tag_is_id".
62 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
63 "tag_is_id" were used to produce code.
64 We still use "tag" for documentation.
66 2008-11-11 Akim Demaille <demaille@gostai.com>
68 Locations are no longer required by lalr1.cc.
69 * data/lalr1.cc (_b4_args, b4_args): New.
70 Adjust all uses of locations to make them optional.
71 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
72 (AT_CHECK_NAMESPACE): Check the use of locations.
73 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
74 without locations with lalr1.cc.
76 * tests/output.at: Check lalr1.cc with and without location
78 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
81 2008-11-11 Akim Demaille <demaille@gostai.com>
84 * tests/local.at (AT_FULL_COMPILE): New.
85 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
87 2008-11-11 Akim Demaille <demaille@gostai.com>
89 Support parens in calc++.
90 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
91 * examples/calc++/test (run): Check the expected output.
95 2008-11-11 Akim Demaille <demaille@gostai.com>
97 Simplify lalr1.cc since %defines is mandatory.
98 * data/lalr1.cc: Remove useless calls to b4_defines_if.
100 2008-11-11 Akim Demaille <demaille@gostai.com>
103 * TODO (yysyntax_error): New item.
105 2008-11-11 Akim Demaille <demaille@gostai.com>
108 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
111 2008-11-11 Akim Demaille <demaille@gostai.com>
113 Support i18n of the parse error messages.
114 * TODO (lalr1.cc/I18n): Remove.
115 * data/lalr1.cc (yysyntax_error_): Support the translation of the
116 error messages, as done in yacc.c.
117 Stay within the yy* pseudo namespace.
119 2008-11-11 Akim Demaille <demaille@gostai.com>
122 * TODO (single stack, yysyntax_error): New.
124 2008-11-11 Akim Demaille <demaille@gostai.com>
126 Make it possible to return a symbol_type from yylex.
127 * data/lalr1.cc (b4_lex_symbol_if): New.
128 (parse): When lex_symbol is defined, expected yylex to return the
130 * etc/bench.pl.in (generate_grammar_list): Extend to support this
132 (bench_variant_parser): Exercise it.
134 2008-11-11 Akim Demaille <demaille@gostai.com>
136 Remove useless bench case.
137 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
140 2008-11-11 Akim Demaille <demaille@gostai.com>
142 Improve display of directives.
143 * etc/bench.pl.in (parse_term): Don't add useless eol.
145 2008-11-11 Akim Demaille <demaille@gostai.com>
147 Use string_cast in the bench.
148 * etc/bench.pl.in (generate_grammar_list): Define and use
151 2008-11-11 Akim Demaille <demaille@gostai.com>
153 Replace yychar with a Boolean.
154 * data/lalr1.cc (parse::yychar): Replace by...
155 (parse::yyempty): this.
157 2008-11-11 Akim Demaille <demaille@gostai.com>
162 2008-11-11 Akim Demaille <demaille@gostai.com>
164 Let yytranslate handle the eof case.
165 * data/lalr1.cc (yytranslate_): Handle the EOF case.
167 No longer expect yychar to be equal to yyeof_, rather, test the
168 lookahead's (translated) kind.
170 2008-11-11 Akim Demaille <demaille@gostai.com>
172 yychar cannot be empty in yyerrlab.
173 * TODO (yychar == yyempty_): New.
174 * data/lalr1.cc: Remove the handling of this case.
175 This eases forthcoming changes related to yychar and yytranslate.
177 2008-11-11 Akim Demaille <demaille@gostai.com>
179 Bench: syntactic sugar for %define/#define.
180 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
181 (&bench_push_parser, bench_variant_parser): Use this feature.
185 2008-11-11 Akim Demaille <demaille@gostai.com>
187 Less memory pressure on the "list" bench.
188 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
189 the values, to limit memory pressure.
191 2008-11-11 Akim Demaille <demaille@gostai.com>
193 Introduce make_symbol.
194 make_symbol provides a means to construct a full symbol (kind, value,
195 location) in a single shot. It is meant to be a Symbol constructor,
196 parameterized by the symbol kind so that overloading would prevent
197 incorrect kind/value pairs. Unfortunately parameterized constructors do
198 not work well in C++ (unless the parameter also appears as an argument,
199 which is not acceptable), hence the use of a function instead of a
202 * data/lalr1.cc (b4_symbol_constructor_declaration_)
203 (b4_symbol_constructor_declarations)
204 (b4_symbol_constructor_specialization_)
205 (b4_symbol_constructor_specializations)
206 (b4_symbol_constructor_definition_)
207 (b4_symbol_constructor_definitions): New.
208 Use them where appropriate to generate declaration, declaration of
209 the specializations, and implementations of the templated
210 overloaded function "make_symbol".
211 (variant::variant): Always define a default ctor.
212 Also provide a copy ctor.
213 (symbol_base_type, symbol_type): New ctor overloads for value-less
215 (symbol_type): Now public, so that functions such as yylex can use
218 2008-11-11 Akim Demaille <demaille@gostai.com>
220 Inform m4 whether a tag is a valid id.
221 * src/output.c (is_identifier): New.
222 (symbol_definitions_output): Use it to define tag_is_id.
223 But maybe this should be done at m4 level?
225 2008-11-11 Akim Demaille <demaille@gostai.com>
227 Test 214 was failing: it greps with a pattern containing [ ]*
228 which obviously meant to catch spaces and tabs, but contained only
229 spaces. Tabulations in sources are a nuisance, so to simplify the
230 matter, get rid of all the tabulations in the Java sources. The
231 other skeletons will be treated equally later.
233 * data/java.m4, data/lalr1.java: Untabify.
234 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
235 tabulations are no longer generated.
237 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
239 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
240 * configure.ac: Adjust usage.
241 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
242 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
243 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
245 2008-11-10 Di-an Jan <dianj@freeshell.org>
247 Workaround Java's ``code too large'' problem for parser tables
248 in most cases, by using one function per initialization.
249 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
250 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
251 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
252 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
253 (yytname_): Use b4_typed_parser_table.
254 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
255 ``code too large'' error.
257 2008-11-10 Di-an Jan <dianj@freeshell.org>
259 * NEWS: Document them.
261 General Java skeleton improvements.
262 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
263 using gcj < 4.3 in the testsuite, according to comments in
264 gnulib/m4/javacomp.m4.
265 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
266 location_type, position_type): Remove extraneous brackets from
267 b4_percent_define_default.
268 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
269 m4_define and m4_define_default.
270 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
271 which marks the end of user code with appropriate syncline, like all
273 (b4_user_post_prologue): Add. Don't silently drop.
275 (parse): Inline yylex.
276 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
277 (%{...%}): Fix typo of %code imports.
278 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
280 Support annotations on parser class with %define annotations.
281 * data/lalr1.java (annotations): Add to parser class modifier.
282 * doc/bison.texinfo (Java Parser Interface): Document
284 (Java Declarations Summary): Document %define annotations.
285 * tests/java.at (Java parser class modifiers): Test annotations.
287 Do not generate code for %error-verbose unless requested.
288 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
289 Make private. Make conditional on %error-verbose.
290 (getErrorVerbose, setErrorVerbose): New.
291 (yytnamerr_): Make conditional on %error-verbose.
292 (yysyntax_error): Make some code conditional on %error-verbose.
293 * doc/bison.texinfo (Java Bison Interface): Remove the parts
294 about %error-verbose having no effect.
295 (getErrorVerbose, setErrorVerbose): Document.
297 Move constants for token names to Lexer interface.
298 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
299 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
300 (parse): Qualify EOF to Lexer.EOF.
301 * doc/bison.texinfo (Java Parser Interface): Move documentation of
302 EOF and token names to Java Lexer Interface.
303 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
306 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
307 (yyerror): Change to public. Add Javadoc comments. Use longer
308 parameter names. Make the body rather than the declarator
309 conditional on %locations.
310 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
312 Allow user to add code to the constructor with %code init.
313 * data/java.m4 (b4_init_throws): New, for %define init_throws.
314 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
315 Add %code init to the front of the constructor body.
316 * doc/bison.texinfo (YYParser.YYParser): Document %code init
317 and %define init_throws.
318 (Java Declarations Summary): Document %code init and
320 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
321 (Java constructor init and init_throws): Add tests.
323 2008-11-10 Akim Demaille <demaille@gostai.com>
326 * TODO (-D): is implemented.
327 (associativity): Same precedence must have the same associativity.
328 For instance, how can a * b / c be parsed if * is %left and / is
330 (YYERRORCODE, YYFAIL, YYBACKUP): New.
332 2008-11-10 Akim Demaille <demaille@gostai.com>
336 2008-11-10 Akim Demaille <demaille@gostai.com>
338 More information about the symbols.
339 * src/output.c (type_names_output): Document all the symbols,
340 including those that don't have a type-name.
341 (symbol_definitions_output): Define "is_token" and
343 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
344 type-name, now that they are defined too in b4_type_names.
346 2008-11-10 Akim Demaille <demaille@gostai.com>
350 2008-11-10 Akim Demaille <demaille@gostai.com>
352 Make parser::yytranslate static.
353 Small speedup (1%) on the list grammar. And makes yytranslate_ available
354 in non member functions.
356 * data/lalr1.cc (yytranslate_): Does not need to be a instance
359 2008-11-10 Akim Demaille <demaille@gostai.com>
361 Avoid trailing spaces.
362 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
363 * data/lalr1.cc: Don't indent before rule and symbol actions, as
364 they can be empty, and anyway this incorrectly indents the first
367 2008-11-10 Akim Demaille <demaille@gostai.com>
371 2008-11-10 Akim Demaille <demaille@gostai.com>
373 Use "enum" for integral constants.
374 This is just nicer to read, I observed no speedup.
376 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
377 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
378 (yyuser_token_number_max_, yyundef_token_): Move into...
379 (yytranslate_): here.
381 2008-11-10 Akim Demaille <demaille@gostai.com>
383 Shortcuts in bench directives.
384 * etc/bench.pl.in (parse_dirs): New.
386 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
387 Create the benches in "benches/".
389 2008-11-10 Akim Demaille <demaille@gostai.com>
392 * data/lalr1.cc: here.
394 2008-11-10 Akim Demaille <demaille@gostai.com>
396 Adjust verbose message to using emacs.
397 * etc/bench.pl.in: Inform compilation-mode when we change the
399 (generate_grammar_list): Recognize %define "variant" in addition
402 2008-11-10 Akim Demaille <demaille@gostai.com>
404 Classify symbols by type-name.
405 * src/uniqstr.h (UNIQSTR_CMP): New.
406 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
407 (type_names_output): New.
408 (muscles_output): Use it.
409 * data/lalr1.cc (b4_symbol_action_): Remove.
410 (b4_symbol_case_, b4_type_action_): New.
411 Adjust uses of b4_symbol_action_ to use b4_type_action_.
413 2008-11-10 Akim Demaille <demaille@gostai.com>
415 Change the handling of the symbols in the skeletons.
416 Before we were using tables which lines were the symbols and which
417 columns were things like number, tag, type-name etc. It is was
418 difficult to extend: each time a column was added, all the numbers had
419 to be updated (you asked for colon $2, not for "tag"). Also, it was
420 hard to filter these tables when only a subset of the symbols (say the
421 tokens, or the nterms, or the tokens that have and external number
422 *and* a type-name) was of interest.
424 Now instead of monolithic tables, we define one macro per cell. For
425 instance "b4_symbol(0, tag)" is a macro name which contents is
426 self-decriptive. The macro "b4_symbol" provides easier access to
429 * src/output.c (type_names_output): Remove.
430 (symbol_numbers_output, symbol_definitions_output): New.
431 (muscles_output): Call them.
432 (prepare_symbols): Define b4_symbols_number.
434 2008-11-10 Akim Demaille <demaille@gostai.com>
437 * src/getargs.h, src/getargs.c (trace_muscle): New.
438 (trace_types, trace_args): Support it.
439 * src/output.c (output_skeleton): Use it.
441 2008-11-10 Akim Demaille <demaille@gostai.com>
444 * src/output.c (muscles_output): New, extracted from...
445 (output_skeleton): here.
448 2008-11-10 Akim Demaille <demaille@gostai.com>
452 2008-11-10 Akim Demaille <demaille@gostai.com>
454 Update the variant example.
455 * examples/variant.yy: Formatting changes.
458 2008-11-10 Akim Demaille <demaille@gostai.com>
460 Support constructor with an argument.
461 This improves the "list" bench by 2%.
463 * data/lalr1.cc (variant::build): Add an overloaded version with
465 * tests/c++.at (AT_CHECK_VARIANT): Check it.
467 2008-11-10 Akim Demaille <demaille@gostai.com>
470 * tests/c++.at (AT_CHECK_VARIANTS): New.
471 Use it with and without %define assert.
473 2008-11-10 Akim Demaille <demaille@gostai.com>
475 Add %precedence support.
476 Unfortunately it is not possible to reuse the %prec directive. This
477 is because to please POSIX, we do not require to end the rules with a
478 semicolon. As a result,
482 is ambiguous: either a rule which precedence is that of baz, or a rule,
483 and then a declaration of the precedence of the token baz.
485 * doc/bison.texinfo: Document %precedence.
486 (Precedence Only): New.
487 * src/assoc.h, src/assoc.c (precedence_assoc): New.
488 * src/conflicts.c (resolve_sr_conflict): Support it.
489 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
491 * tests/calc.at: Use %precedence for NEG.
492 * tests/conflicts.at (%precedence does not suffice)
493 (%precedence suffices): New tests.
495 2008-11-09 Akim Demaille <demaille@gostai.com>
497 Make benches in a sub dirs.
498 * etc/bench.pl.in ($dir): New.
500 Check the use of constructors with an argument.
501 (bench_variant_parser): Fix.
503 2008-11-09 Akim Demaille <demaille@gostai.com>
507 2008-11-09 Akim Demaille <demaille@gostai.com>
511 2008-11-09 Akim Demaille <demaille@gostai.com>
513 Require the generation of parse-gram.output.
514 * src/Makefile.am (YACC): Pass --report=all.
516 2008-11-09 Akim Demaille <demaille@gostai.com>
520 2008-11-09 Akim Demaille <demaille@gostai.com>
523 * TODO: Remove obsolete items.
526 2008-11-09 Akim Demaille <demaille@gostai.com>
529 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
530 (@token, $grammar, $bench): New.
531 (generate_grammar_variant): Rename as...
532 (generate_grammar_list): this.
533 (generate_grammar): Adjust.
534 (bench_grammar): Rename as...
536 Use it in the various bench-marking routines.
537 (-b, -g): New options.
539 2008-11-09 Akim Demaille <demaille@gostai.com>
541 Use a static hierarchy for symbols in the C++ parser.
542 * data/lalr1.cc (symbol_base_type, symbol_type)
543 (stack_symbol_type): Make it a static hierarchy.
546 2008-11-09 Akim Demaille <demaille@gostai.com>
548 bench.pl -d, --directive.
549 * etc/bench.pl.in (@directive): New.
550 (&bench_grammar): Use it.
551 (&bench_list_grammar): New, to provide access to the "variant"
554 (getopts): Support -d, --directive.
556 2008-11-09 Akim Demaille <demaille@gostai.com>
558 Use inline for small operations.
559 * data/lalr1.cc (symbol_base_type, symbol_type)
560 (stack_symbol_type): Declare constructor and other operations as
562 (yy_destroy_): Inline.
564 2008-11-09 Akim Demaille <demaille@gostai.com>
566 Introduce a hierarchy for symbols.
567 * data/lalr1.cc (symbol_base_type, symbol_type): New.
568 (data_type): Rename as...
569 (stack_symbol_type): this.
570 Derive from symbol_base_type.
571 (yy_symbol_value_print_): Merge into...
572 (yy_symbol_print_): this.
575 (yydestruct_): Rename as...
577 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
578 (parser::parse): yyla is now of symbol_type.
579 Use its type member instead of yytoken.
581 2008-11-09 Akim Demaille <demaille@gostai.com>
583 Rename data_type and stack_symbol_type.
584 * data/lalr1.cc (data_type): Rename as...
585 (stack_symbol_type): this.
587 2008-11-09 Akim Demaille <demaille@gostai.com>
589 Handle semantic value and location together.
590 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
591 yydata.value and yydata.location.
592 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
593 (YY_SYMBOL_PRINT): Now take semantic value and location as a
596 (yydestruct_): New overload for a stack symbol.
598 2008-11-09 Akim Demaille <demaille@gostai.com>
600 Push a complete symbol, not connected parts.
601 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
602 state, value and location.
605 2008-11-09 Akim Demaille <demaille@gostai.com>
607 Agregate yylval and yylloc.
608 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
609 (parser::yyla): this.
611 2008-11-09 Akim Demaille <demaille@gostai.com>
613 Rely on the state stack to display reduction traces.
614 To display rhs symbols before a reduction, we used information about the rule
615 reduced, which required the tables yyrhs and yyprhs. Now use rely only on the
616 state stack to get the same information.
618 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
620 (parser::yyrhs_, parser::yyprhs_): Remove.
621 (parser::yy_reduce_print_): Use the state stack.
623 2008-11-09 Akim Demaille <demaille@gostai.com>
625 Fuse yyval and yyloc into yylhs.
626 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
628 (parse): Replace yyval and yyloc with yylhs.value and
630 After a user action, compute yylhs.state earlier.
631 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
634 2008-11-09 Di-an Jan <dianj@freeshell.org>
636 Remove unused variable.
637 * src/output.c (type_names_output): Remove unused variable sep.
639 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
641 Change tests/output.at quoting.
642 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
645 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
647 Don't add a semicolon to actions for %skeleton or %language.
648 It breaks Java test cases as reported by Akim Demaille.
649 * src/scan-code.l: Implement.
651 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
653 Clean up %skeleton and %language priority implementation.
654 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
655 remove static qualifier because others will soon need to see it.
656 (language_prio): Likewise.
657 (getargs): Use command_line_prio rather than 0.
658 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
660 (skeleton_prio): Extern it.
661 (language_prio): Extern it.
662 * src/parse-gram.y: Use grammar_prio rather than 1.
664 2008-11-07 Akim Demaille <demaille@gostai.com>
666 Moving push traces into yypush_.
667 * data/lalr1.cc (yypush_): Now takes a optional trace message.
670 2008-11-07 Akim Demaille <demaille@gostai.com>
672 The single-stack C++ parser is now the standard one.
673 * data/lalr1.cc: Rename as...
674 * data/lalr1-split.cc: this.
675 * data/lalr1-fusion.cc: Rename as...
676 * data/lalr1.cc: this.
677 * etc/bench.pl.in: Adjust.
679 2008-11-07 Akim Demaille <demaille@gostai.com>
681 Avoid empty-if warnings.
682 Reported by Quentin Hocquet.
684 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
685 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
687 2008-11-07 Akim Demaille <demaille@gostai.com>
689 Pass command line location to skeleton_arg and language_argmatch.
690 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
691 The location argument is now mandatory.
692 Adjust all dependencies.
693 (getargs): Use command_line_location.
695 2008-11-07 Akim Demaille <demaille@gostai.com>
698 * src/getargs.c (usage): Document -D.
699 Fix help string for --locations.
700 (command_line_location): New.
701 (short_options, long_options, getargs): Support -D, --define.
702 (getargs): Move -d support at the right place.
703 * doc/bison.texinfo (Bison Options): Update.
704 * tests/input.at (%define, --define): New.
706 2008-11-07 Akim Demaille <demaille@gostai.com>
708 Initialize the muscle table before parsing the command line.
709 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
710 (getargs): Define file_name.
711 * src/main.c (main): Initialize muscle_tab before calling
713 * src/muscle_tab.c (muscle_init): No longer define file_name, as
714 its value is not available yet.
716 2008-11-07 Akim Demaille <demaille@gostai.com>
718 Locations without columns for command line arguments.
719 * src/location.c (location_print): Don't display negative columns.
720 * src/location.h: Document this.
722 2008-11-07 Akim Demaille <demaille@gostai.com>
725 * src/getargs.c (usage): Fix help string for -W.
727 2008-11-07 Akim Demaille <demaille@gostai.com>
729 Handle more general types of option arguments.
730 * build-aux/cross-options.pl: The argument ends at the first
731 space, not the first non-symbol character.
732 Use @var for each word appearing the argument description.
734 2008-11-07 Akim Demaille <demaille@gostai.com>
736 Destroy the variants that remain on the stack in case of error.
737 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
739 Display the value only if yymsg is nonnull.
740 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
742 2008-11-07 Akim Demaille <demaille@gostai.com>
744 Add "%define assert" to variants.
745 This is used to help the user catch cases where some value gets
746 ovewritten by a new one. This should not happen, as this will
749 Unfortunately this uncovered a bug in the C++ parser itself: the
750 lookahead value was not destroyed between two calls to yylex. For
751 instance if the previous lookahead was a std::string, and then an int,
752 then the value of the std::string was correctly taken (i.e., the
753 lookahead was now an empty string), but std::string structure itself
756 This is now done in variant::build(other&) (which is used to take the
757 value of the lookahead): other is not only stolen from its value, it
758 is also destroyed. This incurs a new performance penalty of a few
759 percent, and union becomes faster again.
761 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
762 (b4_variant_if): New.
763 (variant::built): New.
764 Use it whereever the status of the variant changes.
765 * etc/bench.pl.in: Check the penalty of %define assert.
767 2008-11-07 Akim Demaille <demaille@gostai.com>
769 Use "%define variant" in bench.pl.
770 * etc/bench.pl.in: No longer use the pseudo directive %variants,
771 just use %define variants.
773 2008-11-07 Akim Demaille <demaille@gostai.com>
776 * src/parse-gram.h, src/parse-gram.c: Regen.
778 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
780 Fix user actions without a trailing semicolon.
781 Reported by Sergei Steshenko at
782 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
783 * THANKS (Sergei Steshenko): Add.
784 * src/scan-code.l (SC_RULE_ACTION): Fix it.
785 * tests/regression.at (Fix user actions without a trailing semicolon):
788 2008-11-04 Akim Demaille <demaille@gostai.com>
790 Use b4_copyright_years.
791 * data/yacc.c (b4_copyright_years): New.
792 Fix its value according to the comments in the file.
793 Use it and undefine it.
795 2008-11-04 Akim Demaille <demaille@gostai.com>
798 * data/lalr1-fusion.cc, src/parse-gram.y: here.
800 2008-11-04 Akim Demaille <demaille@gostai.com>
803 * data/lalr1-fusion.cc: here.
805 2008-11-04 Akim Demaille <demaille@gostai.com>
807 Use strict on bench.pl.
808 * etc/bench.pl.in (&run, &generate_grammar): New.
809 Rename the grammar generating functions for consistency.
810 Change the interface so that the list of benches to run is passed
811 as (optionless) arguments.
812 (&compile): Use &run.
814 2008-11-04 Akim Demaille <demaille@gostai.com>
816 Remove spurious initial empty lines.
817 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
818 * data/yacc.c: End the @output lines with an @.
820 2008-11-04 Akim Demaille <demaille@gostai.com>
822 Improve the display of sizes.
823 * etc/bench.p.in: Higher precision.
824 Sort by decreasing size.
826 2008-11-04 Akim Demaille <demaille@gostai.com>
828 Don't memcpy C++ structures.
829 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
831 (variant::build): New overload for
832 copy-construction-that-destroys.
833 (variant::swap): New.
834 (parser::yypush_): Use it in variant mode.
836 2008-11-04 Akim Demaille <demaille@gostai.com>
838 Better defaults for bench.pl.
839 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
841 Adjust &verbose uses.
844 2008-11-04 Akim Demaille <demaille@gostai.com>
846 Make variant.yy more complex.
847 std::list cannot be copied via memcpy, they are more demanding than
848 std::string. Use one std::list to strengthen the test.
850 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
852 Create a list of strings, instead of a single large string.
854 2008-11-04 Akim Demaille <demaille@gostai.com>
857 * etc/bench.pl.in (--bench, $bench): New.
859 2008-11-04 Akim Demaille <demaille@gostai.com>
862 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
863 Define it after as().
865 2008-11-04 Akim Demaille <demaille@gostai.com>
868 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
870 2008-11-04 Akim Demaille <demaille@gostai.com>
872 Issue missing synclines after user actions.
873 * data/c.m4 (b4_case): Issue synclines on the output file.
875 2008-11-04 Akim Demaille <demaille@gostai.com>
877 Remove trailing empty line.
878 * data/lalr1-fusion.cc: Don't add an empty line after the user's
881 2008-11-04 Akim Demaille <demaille@gostai.com>
883 Fix output of copyright years.
884 * data/bison.m4 (b4_copyright): Fix the indentation of the
885 copyright year paragraph.
886 Use b4_copyright_years when no years are given.
887 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
888 (b4_copyright_years): New.
891 2008-11-04 Akim Demaille <demaille@gostai.com>
893 Avoid the spurious initial empty line.
894 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
895 the end of @output request to suppress the empty line that
898 2008-11-04 Akim Demaille <demaille@gostai.com>
900 Remove parser::rhs_number_type.
901 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
902 (yyrhs_): Use b4_table_define.
904 2008-11-04 Akim Demaille <demaille@gostai.com>
907 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
909 2008-11-04 Akim Demaille <demaille@gostai.com>
911 Factor the declaration of the integer tables.
912 * data/lalr1-fusion.cc (b4_table_define): New.
915 2008-11-03 Akim Demaille <demaille@gostai.com>
917 Fix indentation of tables in lalr1.cc
918 * data/lalr1-fusion.cc: Fix the indentation.
920 2008-11-03 Akim Demaille <demaille@gostai.com>
922 Destroy the lhs symbols after reduction.
923 * data/lalr1-fusion.cc (parse): After the user action, when in
924 variant mode, destroy the lhs symbols.
926 2008-11-03 Akim Demaille <demaille@gostai.com>
928 Simplify yysyntax_error_ use.
929 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
930 type, but make it unnamed in the declaration when it is not used.
932 2008-11-03 Akim Demaille <demaille@gostai.com>
934 Let yy::variant::build return an lvalue.
935 * data/lalr1-fusion.cc (variant::build): Return a reference to the
938 2008-11-03 Akim Demaille <demaille@gostai.com>
940 Define yy::variant only when needed.
941 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
944 2008-11-03 Akim Demaille <demaille@gostai.com>
946 Bench the three-stack lalr1.cc.
947 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
950 2008-11-03 Akim Demaille <demaille@gostai.com>
952 Fail on parse error in calc++.
953 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
955 * examples/calc++/test ($me, $number, $exit, run): New.
956 Use them to propagate errors to the exit status.
958 2008-11-03 Akim Demaille <demaille@gostai.com>
960 Don't specify the skeleton twice in the example.
961 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
962 file does what is needed.
964 2008-11-03 Akim Demaille <demaille@gostai.com>
966 bench: Improve output.
967 * etc/bench.pl.in (bench_grammar): Tune the printf format.
969 2008-11-03 Akim Demaille <demaille@gostai.com>
971 bench: check impact of %debug on variants.
972 * etc/bench.pl.in (variant_grammar): Fix the computation of
974 Generate a grammar file that can work with or without %debug.
975 Do use the @directive.
976 (bench_variant_parser): Check impact of %debug.
977 (@directives): Rename all the occurrences to...
978 (@directive): this, for consistency.
980 2008-11-03 Akim Demaille <demaille@gostai.com>
982 bench: report the size too.
983 * etc/bench.pl.in ($iterations): Defaults to -3.
984 (&bench_grammar): Require hireswallclock.
985 Compute and display the size of the result.
988 2008-11-03 Akim Demaille <demaille@gostai.com>
990 bench: More use of the verbosity level.
991 * etc/bench.pl.in ($verbose, &verbose): New.
993 More POD documentation.
995 2008-11-03 Akim Demaille <demaille@gostai.com>
997 bench.pl: a command line interface
998 * etc/bench.pl.in: More doc.
999 Some fixes in the documentation.
1000 ($cflags, $iterations, &help, &getopt): New.
1002 (&variant_grammar): Let the number of stages be 10 times what is
1005 2008-11-03 Akim Demaille <demaille@gostai.com>
1007 Bench the use of Boost.Variants.
1008 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1010 (&compile): Be ready to compile C++ parsers.
1011 (&bench_push_parser): Move debug information to the outermost
1013 * THANKS: Add Michiel De Wilde.
1015 2008-11-03 Akim Demaille <demaille@gostai.com>
1017 bench.pl: Pass directives as a list instead of as a string.
1018 * etc/bench.pl.in (&directives): New.
1019 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1021 (&triangular_grammar): Do use the directives (were ignored).
1022 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1025 2008-11-03 Akim Demaille <demaille@gostai.com>
1027 Improve genericity of bench.pl.
1028 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1030 (&bench_push_parser): New.
1033 2008-11-03 Akim Demaille <demaille@gostai.com>
1035 Add documentation to bench.pl.
1036 * etc/bench.pl.in: Comment changes.
1038 2008-11-03 Akim Demaille <demaille@gostai.com>
1040 Fuse the three stacks into a single one.
1041 In order to make it easy to perform benchmarks to ensure that there are no
1042 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
1043 lalr1-fusion.cc will replace lalr1.cc.
1045 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
1046 test suite, the user must install a symbolic link from lalr1.cc to it.
1048 Instead of having three stacks (state, value, location), use a stack
1049 of triples. This considerably simplifies the code (and it will be
1050 easier not to require locations as currently does the C++ parser),
1051 and also gives a 10% speedup according to etc/bench (probably mainly since
1052 memory allocation is done once instead of three times).
1054 Another motivation is to make it easier to destruct properly
1055 semantic values: now that they are bound to their state (hence
1056 symbol type) it will be easier to call the appropriate destructor.
1058 These changes should probably benefit the C parser too.
1060 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
1062 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1064 (state_stack_type, semantic_stack_type, location_stack_type)
1065 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1066 (data_type, stack_type, yystack_): New.
1067 (YYLLOC_DEFAULT, yypush_): Adjust.
1068 (yyerror_range): Now based on data_type, not location_type.
1070 2008-11-03 Akim Demaille <demaille@gostai.com>
1072 Push the state, value, and location at the same time.
1073 This is needed to prepare a forthcoming patch that fuses the three
1076 * data/lalr1.cc (parser::yypush_): New.
1077 (parser::yynewstate): Change the semantics: instead of arriving to
1078 this label when value and location have been pushed, but yystate
1079 is to be pushed on the state stack, now the three of them must
1080 have been pushed before. yystate still must be the new state.
1081 This allows to use yypush_ everywhere instead of individual
1082 handling of the stacks.
1084 2008-11-03 Akim Demaille <demaille@gostai.com>
1086 Prefer references to pointers.
1087 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1088 definition to use references instead of pointers.
1089 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1090 Take the value and location as references.
1093 2008-11-03 Akim Demaille <demaille@gostai.com>
1095 stack::size instead of stack::height.
1096 * data/lalr1.cc (stack::height): Rename as...
1097 (stack::size): this.
1098 Fix the output type.
1101 2008-11-03 Akim Demaille <demaille@gostai.com>
1103 Use variants to support objects as semantic values.
1104 This patch was inspired by work by Michiel De Wilde. But he used Boost
1105 variants which (i) requires Boost on the user side, (ii) is slow, and
1106 (iii) has useless overhead (the parser knows the type of the semantic value
1107 there is no reason to duplicate this information as Boost.Variants do).
1109 This implementation reserves a buffer large enough to store the largest
1110 objects. yy::variant implements this buffer. It was implemented with
1113 * src/output.c (type_names_output): New.
1114 (output_skeleton): Invoke it.
1115 * data/c++.m4 (b4_variant_if): New.
1116 (b4_symbol_value): If needed, provide a definition for variants.
1117 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1118 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1119 (b4_char_sizeof, yy::variant): New.
1120 (parser::parse): If variants are requested, define
1121 parser::union_type, parser::variant, change the definition of
1122 semantic_type, construct $$ before running the user action instead
1123 of performing a default $$ = $1.
1124 * examples/variant.yy: New.
1125 Based on an example by Michiel De Wilde.
1127 2008-11-03 Akim Demaille <demaille@gostai.com>
1129 Parameterize the extraction of semantic values.
1130 To make future changes easier, no longer rely on ".TYPE" being the
1131 way to get a semantic value.
1133 * data/c.m4 (b4_symbol_value): New.
1135 * data/c++.m4, data/yacc.c: Use it.
1136 * data/glr.c: Use b4_symbol_value.
1140 2008-11-03 Akim Demaille <demaille@gostai.com>
1142 Prepare easier M4 changes.
1143 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1146 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1148 Initiate further development.
1149 * NEWS: Create an empty section for new entries.
1150 * gnulib: Update submodule to HEAD.
1152 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1154 * NEWS: Version 2.4.
1156 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1158 Prepare for next release.
1159 * NEWS: Briefly mention changes since 2.3b.
1160 * README: Say GNU m4 1.4.6, which we've been requiring in release
1161 announcements already, not 1.4.3, which breaks the build.
1163 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1165 Say %language is experimental.
1166 We're thinking of extending it's effect on output file naming. See the
1168 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1169 * NEWS: Say it's experimental.
1170 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1171 recommend it over %skeleton for now.
1172 (Bison Options): Likewise.
1173 (C++ Bison Interface): Use %skeleton not %language.
1174 (Calc++ Parser): Use %skeleton not %language.
1175 * src/getargs.c (usage): Say it's experimental.
1177 2008-11-01 Di-an Jan <dianj@freeshell.org>
1178 Paolo Bonzini <bonzini@gnu.org>
1180 Support all Java parser class modifiers.
1181 * data/java.m4 (b4_percent_define_get3): New.
1182 (b4_final_if, b4_strictfp_if): New.
1183 * data/lalr1.java (final, strictfp, extends, implements): Support.
1184 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1186 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1187 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1188 (AT_CHECK_JAVA_GREP): New.
1189 (Java parser class modifiers): New test.
1190 (Java parser class extends and implements): New test.
1192 Model exception propagation better with throws and lex_throws.
1193 * data/java.m4 (b4_list2): New.
1194 (throws): Change default.
1195 * data/lalr1.java (yyaction): Add throws.
1196 (parse): Add lex_throws in addition to throws.
1197 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1198 * tests/java.at (Java throws specifications): New test.
1200 Improve documentation for Java parsers.
1201 * doc/bison.texinfo (Java Parsers): Add subsections.
1202 Don't quote first argument of %define.
1203 (Java Bison Interface): Document output files. Move documentation
1204 of parser class and merge into Java Parser Interface. Document
1205 features that error out. Document directives with no effect.
1206 Move note about Javadoc higher.
1207 (Java Semantic Values): Explicitly mention stype.
1208 Document that generic types cannot be used.
1209 (Java Location Values): Use @deftypeivar. Document constructors.
1210 Correct return value for toString.
1211 (Java Parser Interface): List undocumented constants/fields.
1212 Move documentation of fields added by %parse-param closer to list
1213 of members. Document that token names are added as fields.
1214 Document constructors accurately. Remove error method.
1215 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1216 Interface. Describe %code lexer and yylex accutately.
1217 Remove documentation that does not match the code.
1218 (Java Action Features): New.
1219 (Java Differences): Add reference. Add item on semantic values.
1220 Add note about @{ ... @}. Clarify %% epilogue placement.
1221 (Java Declarations Summary): New.
1224 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1225 (b4_remove_comma): Quote test argument.
1226 (b4_identification): Remove "bison" field.
1227 * tests/java.at (Java parser class and package names): New test.
1228 (Java %parse-param and %lex-param): New test.
1229 (Java stype, position_class and location_class): New test.
1231 2008-10-31 Di-an Jan <dianj@freeshell.org>
1233 * data/lalr1.jave: Update copyright years.
1234 (YYParser): Correct name of "generated from" file in Javadoc:
1235 use b4_file_name instead of @ofile@.
1236 (Location constructor): Correct Javadoc parameter name.
1237 (yylloc): Add missing opening m4 quote after b4_location_if.
1238 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1239 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1240 (YYParser constructor): Correct Javadoc parameter name.
1242 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1244 Always put auxiliary code files in the same dir as other output files.
1245 * src/files.c (compute_file_name_parts): When the user specifies
1246 --output but not --file-prefix, extract the directory prefix from the
1247 file prefix not from the grammar file name. This affects the location
1248 of files like location.hh generated by the C++ skeleton. The includes
1249 in the other output files require this fix.
1250 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1251 for expected output files.
1252 (Output files): Add a test for the above.
1254 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1256 * gnulib: Update submodule to HEAD.
1258 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1260 Update copyright year.
1261 * src/files.c: Here.
1263 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1265 Don't overwrite the input file.
1266 * src/files.c (output_file_name_check): Fatal error if using input file
1268 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1270 (Conflicting output files): Add test.
1272 2008-10-28 Akim Demaille <demaille@gostai.com>
1275 * data/lalr1.cc: Formatting changes.
1277 2008-10-28 Akim Demaille <demaille@gostai.com>
1279 Don't define debugging functions when !YYDEBUG.
1280 * data/lalr1.cc (debug_stream, set_debug_stream)
1281 (debug_level_type, debug_level, set_debug_level): Don't
1282 declare them when YYDEBUG is not defined.
1283 The implementation are already YYDEBUG-aware.
1285 2008-10-28 Akim Demaille <demaille@gostai.com>
1287 Prefer "continue" for empty loop bodies.
1288 * etc/bench.pl.in: Use "continue" instead of {}.
1290 2008-10-28 Akim Demaille <demaille@gostai.com>
1292 Space and comments changes.
1293 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1294 * data/c.m4, data/lalr1.cc: Space changes.
1296 2008-10-28 Akim Demaille <demaille@gostai.com>
1298 Make gnulib a submodule.
1300 * .gitmodules (gnulib): New.
1302 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1304 Fix yyerror_range for user-defined location type in C++. Reported by
1306 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1307 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1308 * THANKS (Georg Sauthoff): Add.
1310 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1312 Update several administrative files mainly to facilitate releasing.
1313 * HACKING (Administrivia): Make the git-merge-changelog notes more
1315 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1316 (Release Procedure): Update for git and add numerous details that were
1318 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1319 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1320 that announcements don't claim we bootstrapped with whatever bison
1321 happened to be in PATH. Add flex as a bootstrap tool.
1322 * Makefile.maint: Remove, previously replaced by maint.mk.
1323 * Makefile.cfg: Remove, and migrate settings to...
1324 * cfg.mk: ... here for the sake of `make announcement'.
1325 * bootstrap.conf (gnulib_modules): Add announce-gen.
1326 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1329 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1331 Small but important bugfixes for the Java skeleton.
1332 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1333 (yy_symbol_print): Call toString on yyvaluep.
1335 2008-08-29 Akim Demaille <demaille@gostai.com>
1337 Clarify UPDATED use.
1338 * doc/bison.texinfo: It refers to the last edition of this file,
1339 not to the release date of Bison.
1340 Reported by Joel E. Denny.
1342 2008-08-29 Akim Demaille <demaille@gostai.com>
1344 * README: Update FAQ pointer.
1345 Reported by Joel E. Denny.
1347 2008-08-27 Eric Blake <ebb9@byu.net>
1349 Resync m4sugar from autoconf.
1350 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1351 (m4_init): Adjust to latest m4.git changes.
1352 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1354 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1355 (_m4_list_cmp): Reduce side effects.
1357 2008-08-27 Akim Demaille <demaille@gostai.com>
1359 Check yyerrok in calc.at.
1360 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1361 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1364 2008-08-27 Akim Demaille <demaille@gostai.com>
1366 Support yyerrok in lalr1.cc.
1367 YYBACKUP is still to import back into lalr1.cc.
1368 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1370 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1372 For maintainer-check*, don't recompile for a $(VERSION) update.
1374 (_is-dist-target): Override the one in GNUmakefile.
1375 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1377 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1379 Update for recent change to gnulib.
1380 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1383 2008-08-15 Eric Blake <ebb9@byu.net>
1385 Remaining m4sugar merge from autoconf.
1386 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1387 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1388 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1389 * src/output.c (output_skeleton): Tell m4 how to find it.
1391 Partial m4sugar merge from autoconf: m4_map.
1392 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1393 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1394 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1395 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1397 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1399 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1402 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1404 Keep .version and PACKAGE_VERSION in sync.
1405 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1406 dependency, and add comments justifying this in more detail. Discussed
1408 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1410 2008-08-06 Eric Blake <ebb9@byu.net>
1412 Partial m4sugar merge from autoconf: m4_shiftn.
1413 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1414 (m4_shift2, m4_shift3): New macros.
1415 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1416 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1417 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1418 * data/java.m4 (b4_remove_comma): Likewise.
1420 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1421 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1422 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1423 (m4_init): Consolidate wrapped text into single m4_wrap.
1424 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1427 2008-08-05 Eric Blake <ebb9@byu.net>
1429 Partial m4sugar merge from autoconf: builtins, version.m4.
1430 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1431 (m4_prepend): Remove, as it is unused and inherently quadratic,
1432 whereas m4_append is linear in newer m4.
1433 (m4_mkstemp): New builtin.
1434 (m4_symbols): Make rename conditional.
1435 (m4_version_prereq): Ensure fatal error if used in bison, which
1436 intentionally lacks version.m4.
1438 Fix comments in m4sugar.
1439 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1441 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1443 Update for recent .gitignore fix in Gnulib.
1444 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1445 anchored .gitignore entries.
1447 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1449 Set gnu or gnits strictness.
1450 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1451 development and gnits strictness for releases. Based on Eric Blake's
1453 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1455 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1457 * NEWS: Clarify documentation of %language.
1459 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1461 Support usage of git-merge-changelog.
1462 * .gitattributes: New.
1463 * HACKING: Document usage of git-merge-changelog.
1464 * bootstrap: Install git-merge-changelog entries in .git/config
1467 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1469 Remove remaining dependence on CVS Id keyword.
1470 * ChangeLog: For the sake of people still using CVS, don't use dollars
1472 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1474 * data/xslt/xml2dot.xsl: Likewise.
1475 * data/xslt/xml2text.xsl: Likewise.
1476 * data/xslt/xml2xhtml.xsl: Likewise.
1477 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1478 * doc/Makefile.am (neutralize): Remove, no longer needed.
1479 (.x.1): Don't use neutralize.
1480 (edit): Don't substitute for ID.
1481 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1483 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1485 Fix dependence on computed configure variables.
1486 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1487 $(top_srcdir)/configure.ac so that changes to computed variables, such
1488 as PACKAGE_VERSION, are seen.
1489 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1491 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1493 Update copyright dates for recent changes.
1494 * Makefile.am: Here.
1495 * src/Makefile.am: Here.
1496 * src/reduce.c: Here.
1497 * tests/reduce.at: Here.
1499 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1501 Use git-version-gen for version names between releases.
1502 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1503 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1504 * .prev-version: New.
1505 * .version.in: Remove.
1506 * ChangeLog: Remove the Id previously used for capturing the CVS
1508 * GNUmakefile: Remove, now copied from Gnulib.
1509 * Makefile.am: Add code suggested by comments in
1510 build-aux/git-version-gen.
1511 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1512 .prev-version, and .version.
1513 * NEWS (2.3b+): Rename to...
1514 (?.?): ... this because we're dropping the "+" version naming scheme,
1515 but, in general, we still can't be sure of our next release name.
1516 * bootstrap: Add a quick hack to remove from .gitignore the
1517 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1518 entry. This should really be fixed in gnulib instead.
1519 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1520 * configure.ac (AC_INIT): Set version name by invoking
1521 build-aux/git-version-gen.
1522 (AC_CONFIG_FILES): Remove .version, now generated by
1523 build-aux/git-version-gen.
1524 * maint.mk: New, copied from coreutils.
1525 * doc/.cvsignore (bison.1): Add.
1526 * doc/.gitignore (/bison.1): Add.
1527 * doc/bison.1: Remove, generated.
1528 * src/.cvsignore (revision.c): Remove.
1529 * src/.gitignore (/revision.c): Remove.
1530 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1531 (BUILT_SOURCES): Remove revision.c.
1532 (revision.c): Remove.
1533 * src/getargs.c (version): Don't print revision after the VERSION.
1534 * src/revision.h: Remove.
1536 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1538 Fix untranslatable composition of sentences. Reported by Goran
1540 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1541 * THANKS (Goran Uddeborg): Add.
1542 * src/reduce.c (reduce_print): Report the number of nonterminals and
1543 rules useless in the grammar in separate sentences.
1544 * tests/reduce.at (Useless Rules): Update output.
1545 (Reduced Automaton): Likewise.
1546 (Underivable Rules): Likewise.
1547 (Empty Language): Likewise.
1549 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1551 Fix some .gitignore and .cvsignore problems.
1552 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1553 (insert_vc_ignore): ... this new function, which prepends `/' to all
1554 .gitignore entries before passing them to insert_sorted_if_absent.
1555 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1556 .cvsignore files are maintained even though Bison developers run
1557 bootstrap while using Git.
1558 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1561 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1562 unneeded. Reported by Eric Blake.
1563 * lib/.gitignore (/*~): Add.
1564 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1565 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1567 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1569 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1571 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1572 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1573 * bootstrap.conf (gnulib_modules): Add unsetenv.
1574 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1575 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1577 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1578 the first argument because it may become position-dependent, and unset
1579 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1580 Add comments explaining these issues in more detail.
1582 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1584 Add .gitignore everywhere based on .cvsignore.
1586 * build-aux/.gitignore: New.
1587 * data/.gitignore: New.
1588 * doc/.gitignore: New.
1589 * etc/.gitignore: New.
1590 * examples/.gitignore: New.
1591 * examples/calc++/.gitignore: New.
1592 * lib/.gitignore: New.
1593 * m4/.gitignore: New.
1594 * po/.gitignore: New.
1595 * runtime-po/.gitignore: New.
1596 * src/.gitignore: New.
1597 * tests/.gitignore: New.
1599 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1601 * NEWS (2.3b+): New section, empty for now.
1602 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1604 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1606 * NEWS (2.3b): Update release date since there has been a delay in
1607 getting the announcements and tarballs out.
1609 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1611 * NEWS: Version 2.3b.
1612 * configure.ac (AC_INIT): Likewise.
1613 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1615 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1617 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1618 been doing it for years.
1619 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1620 (Release Procedure): Add FIXME about make alpha being unmaintained.
1622 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1624 * data/yacc.c: Reformat m4 a little for readability.
1625 * src/lalr.c (build_relations): Correct comment.
1627 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1629 DJGPP specific issue.
1630 * djgpp/config.sed: Fixes required to run configure scripts generated
1633 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1635 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1636 coordinator@translationproject.org.
1638 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1640 * THANKS: Add Eric Blake.
1642 2008-04-23 Eric Blake <ebb9@byu.net>
1644 Revert prior patch, by working around autoconf regression.
1645 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1646 ("Output file name: ("): Uncomment test.
1647 ("Output file name: )"): Likewise.
1648 Based on an idea from Noah Misch.
1650 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1652 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1653 2.61. Reported by Juan Manuel Guerrero at
1654 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1655 * tests/output.at ("Output file name: ("): Comment out test case for
1657 ("Output file name: )"): Likewise.
1659 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1661 * GNUmakefile: Update git-version-gen invocation so make dist
1664 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1666 Update to the current gnulib CVS repository, and fix trigraph handling
1668 * bootstrap: Update gnulib CVS repository URL.
1669 (symlink_to_dir): Encapsulate the code that guarantees the destination
1670 directory exists into...
1671 (check_dst_dir): ... this new function, and...
1672 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1673 fail when copying files into lib/uniwidth/.
1674 * src/output.c (prepare_symbols): When writing yytname muscles, where
1675 symbol names will be encoded in C-string literals, tell quotearg to
1676 escape trigraphs. This used to be the default in gnulib.
1677 * tests/regression.at (Token definitions): Because of the change in
1678 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1679 escapes trigraphs in symbol names. Thus, yytname no longer has
1680 trigraphs unnecessarily doubly escaped. Update test case output.
1681 Extend test case to be sure Bison's own error messages will no longer
1682 have trigraphs in symbol names unnecessarily escaped once.
1684 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1686 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1687 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1688 * .cvsignore: Add .version.
1690 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1691 * configure.ac (AC_CONFIG_FILES): Add .version.
1692 * build-aux/.cvsignore: Add git-version-gen.
1694 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1696 * NEWS (2.3a+): Mention that -g now takes an argument.
1697 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1698 consistency. Update the -g and -x entries now that they take
1699 arguments. Use brackets to indicate optional arguments.
1700 * src/getargs.c (usage): Explain the relationship between arguments of
1701 long and short options more completely. Document --defines and -d
1702 separately since the former takes an argument but, for POSIX Yacc, the
1704 (short_options): Let -W take an optional argument like --warnings.
1705 (getargs): Sort cases.
1707 2008-02-28 Akim Demaille <demaille@gostai.com>
1709 * doc/bison.texinfo: Fix a few typos.
1711 2008-02-28 Akim Demaille <akim@epita.fr>
1713 * doc/bison.texinfo (Bison Options): Document -W.
1714 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1716 2008-02-28 Akim Demaille <akim@epita.fr>
1718 * src/getargs.c (short_options): Split and sort for readability.
1719 -g and -x take optional arguments, just like their long options.
1720 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1722 Fix the handling of $opt which resulted in all the argument to be
1723 considered as optional.
1725 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1727 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1728 say its interface is experimental.
1729 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1731 (Bison Options): In the -L and --language entry, mention Java.
1732 (Java Bison Interface): Say the interface is experimental.
1733 * src/getargs.c (usage): Mention -L and --language.
1735 * NEWS (2.3a+): Say the push parsing interface is experimental.
1736 * doc/bison.texinfo (Push Decl): Likewise.
1737 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1738 (Push Parser Function): Likewise.
1739 (Pull Parser Function): Likewise.
1740 (Parser Create Function): Likewise.
1741 (Parser Delete Function): Likewise.
1742 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1743 yypull_parse, and yypush_parse entries.
1745 * NEWS (2.3a+): Mention XML support, and say the schema is
1747 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1748 * src/getargs.c (usage): Say the XML schema is experimental.
1750 * NEWS (2.3a+): Say option instead of flag.
1752 2008-02-21 Wojciech Polak <polak@gnu.org>
1754 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1757 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1759 Fix impure push parser compile error reported by Bob Rossi at
1760 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1761 * data/yacc.c: Clean up whitespace in the output a little.
1762 (yypstate_allocated): Define for impure push parsers regardless of
1763 whether the pull interface is also requested.
1764 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1765 check impure push parsers without the pull interface.
1767 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1768 yyerror takes arguments specified by %parse-param while yypstate_new
1770 * doc/bison.texinfo (Parser Create Function): Document that
1771 yypstate_new returns 0 for multiple impure parser instances.
1772 * tests/push.at (Push Parsing: Multiple impure instances): Update
1773 expected stderr output.
1775 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1777 * runtime-po/POTFILES.in (push.c): Remove.
1779 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1781 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1782 * data/push.c: Rename to...
1783 * data/yacc.c: ... this, overwriting it.
1784 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1785 `%push-pull-parser' -> `%define api.push_pull "both"'.
1786 Remove old yacc.c tests, and update push.c tests to yacc.c.
1788 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1790 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1791 `"%code top" blocks' instead of `%code "top" blocks'.
1792 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1793 Clean up whitespace in the output a little.
1795 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1797 Fix documentation problems reported by Tim Josling at
1798 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1799 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1800 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1801 integers. Explain the effect of literal string aliases on error
1802 messages. Copy token 0 documentation from the C++ skeleton
1805 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1807 Accept a token number in a %left, %right, or %nonassoc for POSIX
1808 conformance. Reported by Tim Josling at
1809 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1810 * NEWS (2.3a+): Mention.
1811 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1812 and code numbers are treated by precedence declarations.
1813 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1815 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1817 (symbol.prec): New, just like symbol but allows INT.
1818 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1820 * tests/regression.at (Token number in precedence declaration): New
1823 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1825 DJGPP specific issues.
1826 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1827 be changed. Copyright timestamp adjusted.
1828 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1829 be changed. Copyright timestamp adjusted.
1830 * djgpp/config.site: Copyright timestamp adjusted.
1831 * djgpp/config_h.sed: Copyright timestamp adjusted.
1832 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1833 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1834 filename translation list.
1835 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1836 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1837 files shall be created. Before trying to use the temp dir where the
1838 environment variable points to check that the dir really exists. If
1839 not default to the cwd as temp dir. Copyright timestamp adjusted.
1840 * djgpp/subpipe.h: Copyright timestamp adjusted.
1841 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1843 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1845 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1847 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1849 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1850 Problem reported by Claudio Saavedra in
1851 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1853 2008-01-05 Wojciech Polak <polak@gnu.org>
1855 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1856 document's title with the input grammar file name.
1858 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1860 Automate regression testing of the XML/XSLT implementation. Discussed
1862 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1863 * configure.ac (XSLTPROC): New substitution.
1864 * Makefile.am (maintainer-xml-check): New phony target invoking...
1865 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1866 invoking make maintainer-check with BISON_TEST_XML=1.
1867 * tests/atlocal.in (XSLTPROC): New.
1868 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1869 not to report reachable memory when Bison is expected to have a
1870 non-zero exit status and (2) to compare XML/XSLT output with --graph
1871 and --report=all output for every working grammar when
1873 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1874 (AT_BISON_CHECK_XML): New.
1875 (AT_QUELL_VALGRIND): New.
1876 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1877 (AT_CHECK): ... don't redefine this since this was the old way to
1879 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1880 AT_BISON_CHECK invocations.
1881 * tests/c++.at: Likewise.
1882 * tests/calc.at: Likewise.
1883 * tests/conflicts.at: Likewise.
1884 * tests/cxx-type.at: Likewise.
1885 * tests/existing.at: Likewise.
1886 * tests/glr-regression.at: Likewise.
1887 * tests/headers.at: Likewise.
1888 * tests/input.at: Likewise.
1889 * tests/java.at: Likewise.
1890 * tests/output.at: Likewise.
1891 * tests/push.at: Likewise.
1892 * tests/reduce.at: Likewise.
1893 * tests/regression.at: Likewise.
1894 * tests/sets.at: Likewise.
1895 * tests/skeletons.at: Likewise.
1896 * tests/synclines.at: Likewise.
1897 * tests/torture.at: Likewise.
1898 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1899 tends to hang xsltproc.
1900 (Big horizontal): Likewise.
1902 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1904 In XML output, remove redundant class attribute on symbol element.
1905 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1906 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1907 look up a symbol to determine whether it's a nonterminal or terminal.
1908 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1909 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1911 Add prec/assoc information to XML output.
1912 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1913 %prec, add a percent_prec attribute.
1914 * src/print-xml.c (print_grammar): For each terminal that has a
1915 precedence or associativity, add a prec or assoc attribute.
1917 (xml_puts): Use xml_indent.
1918 (xml_printf): Use xml_indent.
1919 * src/print-xml.h (xml_indent): Prototype.
1921 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1922 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1924 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1926 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1927 (bison:ruleByNumber): ... this for clarity.
1928 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1929 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1930 (xsl:template match="reduction"): Update.
1931 (xsl:template match="item"): Update.
1932 (xsl:template match="reduction"): Update.
1934 In the XML output, don't print the list of rules where symbols appear.
1935 Compute it in XSLT instead. Discussed at
1936 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
1937 * data/xslt/bison.xsl (bison:ruleByLhs): New.
1938 (bison:ruleByRhs): New.
1939 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
1941 (xsl:template match="terminal/rule"): Remove.
1942 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1944 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1946 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
1947 bison:ruleByRhs and mode="number-link" for rule template.
1948 (xsl:template match="terminal/rule"): Remove.
1949 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1950 bison:ruleByRhs and mode="number-link" for rule template.
1951 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1953 (xsl:template match="rule" mode="number-link"): ... this.
1954 * src/print-xml.c (print_grammar): Don't print the list of rules.
1956 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1958 Don't let --report affect XML output; always print all information.
1960 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
1961 * src/conflicts.c (log_resolution): Implement.
1962 * src/print-xml.c (print_core): Implement.
1963 (print_state): Implement.
1964 (print_xml): Implement.
1966 * NEWS (2.3a+): Fix quotes.
1967 * src/parse-gram.y (prologue_declaration): For consistency with -v,
1968 don't let %verbose clear the list specified by --report.
1970 2007-11-26 Akim Demaille <akim@epita.fr>
1972 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
1974 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
1976 In the XML output, list useless and unused symbols and rules with the
1977 useful ones and add a "usefulness" attribute. Discussed starting at
1978 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
1979 * src/gram.c (grammar_rules_partial_print_xml): Remove.
1980 (grammar_rules_print_xml): Print all rules instead of just those
1981 useful in the grammar, and add a "usefulness" attribute.
1982 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
1983 * src/print-xml.c (print_rules_useless_in_parser): Remove.
1984 (print_grammar): Print all nonterminals instead of just useful ones,
1985 and add a "usefulness" attribute to nonterminals and terminals.
1986 (print_xml): Don't print a separate "reductions" or
1987 "rules-useless-in-parser" element.
1988 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
1989 (reduce_xml): Remove.
1990 (reduce_token_unused_in_grammar): New.
1991 (reduce_nonterminal_useless_in_grammar): New.
1992 * src/reduce.h (reduce_xml): Remove prototype.
1993 (reduce_token_unused_in_grammar): Add prototype.
1994 (reduce_nonterminal_useless_in_grammar): Add prototype.
1995 * data/xslt/xml2text.xsl: Update for XML changes.
1996 * data/xslt/xml2xhtml.xsl: Update for XML changes.
1997 * tests/reduce.at (Useless Terminals): Update output.
1998 (Useless Rules): Update output.
1999 (Reduced Automaton): Update output.
2001 Say "Terminals unused in grammar" instead of "Unused terminals".
2002 * NEWS (2.3a+): Update.
2003 * doc/bison.texinfo (Understanding): Update example output.
2004 * src/reduce.c (reduce_output): Implement.
2005 * data/xslt/xml2text.xsl: Implement.
2006 * data/xslt/xml2xhtml.xsl: Implement.
2008 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2010 Accept --report-file=FILE to override the default `.output' filename.
2011 * NEWS (2.3a+): Mention.
2012 * doc/bison.texinfo (Bison Options): Add an entry.
2013 * src/files.c (compute_output_file_names): Don't override
2014 spec_verbose_file if already set.
2015 * src/getargs.c (usage): Document --report-file.
2016 (REPORT_FILE_OPTION): New anonymous enum member.
2017 (long_options): Add entry for it.
2018 (getargs): Add case for it setting spec_verbose_file.
2020 * build-aux/cross-options.pl: Don't record a short option just because
2022 * doc/.cvsignore: Add yacc.1.
2024 2007-11-14 Akim Demaille <akim@epita.fr>
2026 * doc/yacc.1.in: New.
2027 * configure.ac, doc/Makefile.am: Adjust.
2028 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2030 Use AC_SUBST for assignments too.
2031 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2033 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2035 * src/gram.c: Remove comments that duplicate comments in gram.h.
2037 When reporting useless rules and nonterminals, say "useless in grammar"
2038 instead of "useless", and say "useless in parser" instead of "never
2039 reduced". Discussed starting at
2040 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2041 * NEWS (2.3a+): Mention this change.
2042 * data/xslt/xml2text.xsl: Update output text and expected input XML
2043 element names to match changes below.
2044 * data/xslt/xml2xhtml.xsl: Likewise.
2045 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2046 Contents: "Rules useless in parser due to conflicts".
2047 * doc/bison.texinfo (Decl Summary): Reword a little.
2048 (Understanding): Update example output for changes below.
2049 * src/gram.c: (rule_useful_p): Rename to...
2050 (rule_useful_in_grammar_p): ... this.
2051 (rule_useless_p): Rename to...
2052 (rule_useless_in_grammar_p): ... this.
2053 (rule_never_reduced_p): Rename to...
2054 (rule_useless_in_parser_p): ... this.
2055 (grammar_rules_print): Update for renames.
2056 (grammar_rules_print_xml): Update for renames.
2057 (grammar_rules_never_reduced_report): Rename to...
2058 (grammar_rules_useless_report): ... this since it is used for either
2059 kind of useless rule.
2060 * src/gram.h: Reword comments and update function names in prototypes.
2061 * src/main.c (main): Say "rule useless in parser due to conflicts".
2062 * src/print-xml.c (print_rules_never_reduced): Rename to...
2063 (print_rules_useless_in_parser): ... this, and rename output XML
2064 element "rules-never-reduced" to "rules-useless-in-parser".
2065 (print_xml): Update for rename.
2066 * src/print.c (print_results): Say "Rules useless in parser due to
2068 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2069 (nonterminals_reduce): Say "nonterminal useless in grammar".
2070 (reduce_output): Say "Nonterminals useless in grammar".
2071 Say "Rules useless in grammar".
2072 (reduce_xml): Rename output XML element "useless" to
2073 "useless-in-grammar".
2074 (reduce_print): Don't report the count of grammatically useless rules
2075 as "rules never reduced" just because %yacc is specified.
2076 In the correct report of this count, say nonterminal(s) and rule(s)
2077 "useless in grammar".
2078 * tests/conflicts.at (S/R in initial): Update expected output.
2079 (Defaulted Conflicted Reduction): Likewise.
2080 (Unreachable States After Conflict Resolution): Likewise.
2081 * tests/existing.at (GNU pic Grammar): Likewise.
2082 * tests/reduce.at (Useless Nonterminals): Likewise.
2083 (Useless Rules): Likewise.
2084 (Reduced Automaton): Likewise.
2085 (Underivable Rules): Likewise.
2086 (Empty Language): Likewise.
2088 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2090 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2091 here document and before the EOF so that BSD's implementation of Bourne
2092 shell doesn't parse the delimiter as part of the here document.
2093 * doc/.cvsignore: Add cross-options.texi.
2094 * src/getargs.c (usage): Add a blank line after the warning categories.
2096 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2098 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2100 2007-11-05 Akim Demaille <akim@epita.fr>
2102 Remove Id: from bison.1.
2103 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2104 (perl -0777 -pi -e 's/\.PP\nId): New.
2105 (.x.1): Use it to ignore the version control revision.
2107 2007-11-05 Akim Demaille <demaille@gostai.com>
2109 * build-aux/Makefile.am: Ship cross-options.pl.
2110 * doc/Makefile.am: Always refer to cross-options.texi with
2112 (MAINTAINERCLEANFILES): Add it.
2114 2007-11-04 Akim Demaille <demaille@gostai.com>
2116 Generate the long/short option cross-table.
2117 * build-aux/cross-options.pl: New.
2118 * doc/Makefile.am (cross-options.texi): New.
2119 * doc/bison.texinfo: Use it.
2121 2007-11-04 Akim Demaille <demaille@gostai.com>
2123 Generate bison.1 using help2man.
2124 * doc/common.x, doc/bison.x: New.
2125 * doc/Makefile.am (bison.1, .x.1): New.
2126 The code is taken from autoconf-2.61/man/Makefile.am.
2127 * configure.ac: Look for help2man.
2129 2007-11-04 Akim Demaille <demaille@gostai.com>
2132 * src/getargs.c (usage): Document -W, make it clear that -d,
2133 -g and -x have optional arguments.
2135 2007-11-04 Akim Demaille <demaille@gostai.com>
2137 Find sha1sum when named gsha1sum.
2138 * bootstrap (find_tool): New.
2141 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2143 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2145 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2146 * NEWS (2.3a+): Mention.
2147 * data/bison.m4 (b4_pure_if): Don't define it here.
2148 * data/c.m4 (b4_identification): Depend on individual skeletons to
2149 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2150 values of the %define variables api.pure or api.push_pull. Define
2151 YYPURE, YYPUSH, and YYPULL accordingly.
2152 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2153 glr.cc has already defined b4_pure_flag.
2154 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2155 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2156 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2157 * doc/bison.texinfo (Pure Decl): Update.
2158 (Push Decl): Update.
2159 (Decl Summary): Add api.pure to %define entry.
2160 In %pure-parser entry, say it's deprecated and reference %define.
2161 (Pure Calling): Update.
2162 (Error Reporting): Update.
2163 (C++ Scanner Interface): Update.
2164 (How Can I Reset the Parser): Update.
2165 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2167 * src/getargs.c (pure_parser): Remove global variable.
2168 * src/getargs.h (pure_parser): Remove extern.
2169 * src/output.c (prepare): Don't define pure_flag muscle.
2170 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2171 wrapper around `%define api.pure'.
2172 * tests/calc.at (Simple LALR Calculator): Update.
2173 (Simple GLR Calculator): Update.
2174 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2176 (GLR: Resolve ambiguity, pure, locations): Update.
2177 (GLR: Merge conflicting parses, pure, no locations): Update.
2178 (GLR: Merge conflicting parses, pure, locations): Update.
2179 * tests/glr-regression.at (Uninitialized location when reporting
2181 * tests/input.at (Unused %define api.pure): New test case.
2182 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2183 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2184 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2186 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2188 %define push_pull -> %define api.push_pull. Discussed starting at
2189 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2190 * data/push.c: Expect the new name.
2191 * data/yacc.c: Likewise.
2192 * doc/bison.texinfo (Push Decl): Update.
2193 (Decl Summary): Update %define entry.
2194 (Push Parser Function): Update.
2195 (Pull Parser Function): Update.
2196 (Parser Create Function): Update.
2197 (Parser Delete Function): Update.
2198 * tests/calc.at (Simple LALR Calculator): Update.
2199 * tests/input.at (%define enum variables): Update.
2200 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2201 (Push Parsing: Multiple impure instances): Update.
2202 (Push Parsing: Unsupported Skeletons): Update.
2203 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2204 (Exploding the Stack Size with Malloc): Update.
2206 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2209 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2211 For the XML output's terminal element, rename @number to @token-number,
2212 and add @symbol-number. In the nonterminal element, rename @number to
2213 @symbol-number. Discussed starting at
2214 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2215 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2217 (xsl:template match="nonterminal"): Likewise.
2218 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2219 (xsl:template match="nonterminal"): Likewise.
2220 * src/print-xml.c (print_grammar): Implement.
2222 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2224 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2225 2007-10-11 change, the child elements here are items not rules.
2226 (xsl:template match="item"): New.
2227 (xsl:template match="rule"): Update for new reduced itemset.
2228 (xsl:template match="point"): Remove.
2229 (xsl:template match="empty"): For consistency with --graph, don't
2230 output "/* empty */".
2231 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2232 line-wrap, don't pass a negative value as first-line-length since this
2233 won't work with the following changes.
2234 (xsl:template name="line-wrap"): Simplify slightly.
2235 (xsl:template name="ws-search"): Eliminate recursion.
2236 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2237 set next to an item whose dot is not at the end of the RHS even if it
2238 happens to be associated with the same rule.
2240 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2242 Add %define lr.keep_unreachable_states.
2243 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2244 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2245 * src/main.c (main): Implement it.
2246 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2247 Extend to test it, and fix a typo.
2249 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2251 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2252 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2253 the example .output text.
2254 * tests/regression.at (Extra lookahead sets in report): Improve wording
2257 2007-10-17 Wojciech Polak <polak@gnu.org>
2259 * src/print-xml.c (print_grammar): Renamed
2260 <terminal> and <nonterminal> attributes:
2261 "type" to "number" and "symbol" to "name".
2262 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2263 Use new attribute names.
2264 (xsl:template match="nonterminal"): Likewise.
2265 * data/xslt/xml2xhtml.xsl: Likewise.
2267 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2269 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2270 (Option Cross Key): Likewise.
2272 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2273 next to an item whose dot is not at the end of the RHS even if it
2274 happens to be associated with the same rule.
2275 * src/print.c (print_core): Likewise.
2276 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2277 (Resolved SR Conflicts): Update output.
2278 * tests/regression.at (Extra lookahead sets in report): New test case.
2280 2007-10-11 Wojciech Polak <polak@gnu.org>
2282 * src/print-xml.c (print_core): Remove item set
2284 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2285 Improve processing time. Suggested by Joel E. Denny.
2286 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2287 Write xsl:param "required" attribute as comment.
2288 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2289 (xsl:template match="rule"): Support new reduced itemset.
2290 (xsl:template match="point"): Remove.
2291 * data/xslt/xml2xhtml.xsl: Likewise.
2293 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2295 * src/getargs.c (version): Update copyright year.
2297 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2299 Make xml2dot.xsl and --graph produce the same output.
2300 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a ` '
2301 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2303 (xsl:template name="output-node"): Use the new escape template instead
2304 of the string-replace template directly.
2305 (xsl:template name="output-edge"): Likewise.
2306 (xsl:template name="escape"): New, escapes backslashes and newlines in
2307 addition to quotation marks.
2308 * src/graphviz.c (start_graph, output_node, output_edge): Add
2309 whitespace to output for legibility.
2311 Make xml2text.xsl and --report produce the same output, and remove the
2312 XML "conflicts" element since a conflict summary is easily extracted
2314 * data/xslt/bison.xsl: New.
2315 (xsl:template match="state" mode="bison:count-conflicts): New.
2316 * data/xslt/xml2text.xsl: Import bison.xsl.
2317 (xsl:template match="bison-xml-report"): Instead of styling the
2318 "conflicts" element, style the "automaton" element with mode
2319 "conflicts". Unlike the former, the latter lists S/R and R/R
2320 conflicts for a state on the same line.
2321 (xsl:template match="conflicts"): Remove.
2322 (xsl:template match="conflict"): Remove.
2323 (xsl:template match="terminal"): Line-wrap the list of rules in which
2324 the terminal is used.
2325 (xsl:template match="nonterminal"): Likewise for nonterminals.
2326 (xsl:template match="automaton" mode="conflicts"): New.
2327 (xsl:template match="state" mode="conflicts"): New.
2328 (xsl:template name="line-wrap"): New.
2329 (xsl:template name="ws-search"): New.
2330 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2331 (xsl:template match="bison-xml-report"): Instead of styling the
2332 "conflicts" element, style the "automaton" element with mode
2334 (xsl:template match="conflicts"): Remove.
2335 (xsl:template match="conflict"): Remove.
2336 (xsl:template match="automaton" mode="conflicts"): New.
2337 (xsl:template match="state" mode="conflicts): New.
2338 * src/conflicts.c (conflicts_output_xml): Remove.
2339 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2340 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2341 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2342 the corresponding XSLT is easier. Also, never wrap between a word and
2343 the comma that follows it.
2345 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2347 Improve C++ namespace support. Discussed starting at
2348 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2349 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2350 b4_namespace_close): New macros that interpret the %define variable
2351 "namespace" so its value can contain "::" to indicate nested
2353 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2355 * data/lalr1.cc (b4_namespace): Likewise.
2356 * data/location.cc (b4_namespace): Likewise.
2357 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2358 inside a new table in the general %define entry. Document `%define
2359 namespace' there as well. Point the %name-prefix entry to it since it
2360 explains it more completely in the case of C++.
2361 (C++ Bison Interface): Mention `%define namespace' instead of
2363 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2365 * tests/c++.at (Relative namespace references): New test case.
2366 (Absolute namespace references): New test case.
2367 (Syntactically invalid namespace references): New test case.
2368 * tests/input.at (C++ namespace reference errors): New test case.
2370 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2372 Add syncline support and location accessor to internal %define
2374 * data/bison.m4 (b4_percent_define_get_loc): New.
2375 (b4_percent_define_get_syncline): New.
2376 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2377 (b4_percent_define_default): Record defining location as line 1 rather
2378 than 0 for the sake of synchronizing #line's, and define
2379 b4_percent_define_syncline(VARIABLE).
2380 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2381 * src/muscle_tab.c (muscle_syncline_grow): New.
2382 (muscle_code_grow): Use muscle_syncline_grow.
2383 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2384 define b4_percent_define_syncline(VARIABLE).
2385 (muscle_percent_define_get_loc): New.
2386 (muscle_percent_define_get_syncline): New.
2387 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2388 remove some unused variables.
2389 (muscle_percent_define_default): Record defining location as line 1
2390 rather than 0 for the sake of synchronizing #line's, and define
2391 b4_percent_define_syncline(VARIABLE).
2392 (muscle_percent_define_check_values): Use
2393 muscle_percent_define_get_loc.
2394 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2395 (muscle_percent_define_get_syncline): Prototype.
2396 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2397 defaults): Update output for location change.
2398 (Complaining during macro argument expansion): Extend to test
2399 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2401 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2403 Fix some error-reporting macro bugs.
2404 * data/bison.m4 (b4_cat): New.
2405 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2406 to stdout so they don't become arguments to other macros. Update
2407 comments and add examples.
2408 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2410 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2411 after printing the error directive so that M4 doesn't report subsequent
2412 problems that are induced by this problem.
2413 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2414 instead of just in them. Recognize @\n in both places. Both expand to
2415 the empty string. Needed by b4_cat.
2416 * tests/skeletons.at (Complaining during macro argument expansion):
2418 (Fatal errors make M4 exit immediately): New test case.
2420 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2422 Implement --print-datadir.
2423 * src/getargs.c (usage): Mention.
2424 (PRINT_DATADIR_OPTION): New anonymous enum member.
2425 (long_options): Add entry for it.
2426 (getargs): Add case for it calling compute_pkgdatadir.
2427 * src/output.c (output_skeleton): Encapsulate data directory
2428 computation from here...
2429 (prepare): ... and from here...
2430 (compute_pkgdatadir): ... into this new function.
2431 * src/output.h (compute_pkgdatadir): Prototype.
2433 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2435 * src/print-xml.c (escape_bufs): New static global variable
2437 (xml_escape_n): ... the static local variable buf here.
2438 (print_xml): Free memory for escape_bufs.
2439 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2441 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2443 Replace `%push-parser' and `%push-pull-parser' with
2444 `%define push_pull "push"' and `%define push_pull "both"'.
2445 `%define push_pull "pull"' is the default.
2446 * doc/bison.texinfo (Push Decl, Push Parser Function,
2447 Pull Parser Function, Parser Create Function, Parser Delete Function):
2448 Update declarations.
2449 (Decl Summary, Table of Symbols): Replace %push-parser and
2450 %push-pull-parser entries with a %define push_pull entry.
2451 * data/bison.m4 (b4_percent_define_check_values): New macro.
2452 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2454 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2456 * data/push.c: ... to here and compute them from the value of the
2457 %define variable push_pull.
2458 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2459 parsing requests here...
2460 * data/yacc.c: ... hack this to switch to push.c any time
2461 b4_use_push_pull_flag or the %define variable push_pull is set. This
2462 will go away when we mv push.c yacc.c.
2463 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2464 push parsing is not supported since unused %define variables are
2466 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2467 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2468 comments for consistency with b4_percent_define_check_values.
2469 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2471 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2473 (prologue_declaration): Remove %push-parser and %push-pull-parser
2475 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2476 * tests/calc.at: Update declarations.
2477 * tests/input.at (%define enum variables): New test case.
2478 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2480 (Push Parsing: Multiple impure instances): Update declaration.
2481 (Push Parsing: Unsupported Skeletons): New test case.
2482 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2484 (Exploding the Stack Size with Malloc): Update declaration.
2486 2007-09-24 Wojciech Polak <polak@gnu.org>
2488 Add XSLT transformations.
2490 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2491 * data/xslt/xml2text.xsl: Transform XML into plain text.
2492 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2493 * data/Makefile.am (xsltdir): New variable.
2494 (dist_xslt_DATA): Add xslt/*.xsl files.
2496 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2498 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2499 Problem reported by Wojciech Polak.
2500 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2501 (xml_printf): Undo change I made on 21 September; that is,
2502 indent 2 spaces, not 1.
2504 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2506 Pacify ./configure --enable-gcc-warnings.
2507 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2508 `char const *' instead of `char *'.
2509 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2510 local variable `sep'.
2512 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2514 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2516 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2517 (xml_printf): Indent just 1 space for level.
2518 (e_char, xlate_char): Remove.
2519 (xml_escape_string): Rewrite to avoid undefined behavior (used
2520 storage that was freed from the stack).
2521 (xml_escape_n): Don't bother checking for subscript error.
2523 2007-09-21 Wojciech Polak <polak@gnu.org>
2525 Add Bison XML Automaton Report.
2527 Add support for an -x option to generate an XML report.
2528 It is not documented yet.
2529 * src/print-xml.c: New file.
2530 * src/print-xml.h: Likewise.
2531 * lib/timevar.def (TV_XML): New var.
2532 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2533 * src/conflicts.c: Include print-xml.h.
2534 (solved_conflicts_xml_obstack): New var.
2535 (log_resolution, conflicts_solve, conflicts_free):
2536 Add support for XML report.
2537 (conflicts_output_val): New function.
2538 * src/conflicts.h (conflicts_output_val): New decl.
2539 * src/files.c (spec_xml_file): New var.
2540 (compute_output_file_names, output_file_names_free): Add XML support.
2541 * src/files.h (spec_xml_file): New decl.
2542 * src/getargs.c (xml_flag): New var.
2543 (usage, short_options, long_options, getargs): Add XML support.
2544 * src/getargs.h (xml_flag): New decl.
2545 * src/gram.c: Include print-xml.h.
2546 (rule_lhs_print_xml, rule_rhs_print_xml):
2547 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2549 * src/gram.h: Declare external ones.
2550 * src/main.c: Include print-xml.h.
2551 (main): Add XML support.
2552 * src/reduce.c: Include print-xml.h.
2553 (reduce_xml): New function.
2554 * src/reduce.h: Declare it.
2555 * src/state.c: Include print-xml.h.
2556 (state_new): Add XML support.
2557 (state_rule_lookahead_tokens_print_xml): New function.
2558 * src/state.h: Declare it.
2559 (struct state): New member solved_conflicts_xml.
2560 * src/symtab.c (symbol_class_get_string): New function.
2561 * src/symtab.h: Declare it.
2563 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2565 * GNUmakefile: Switch to coreutils's version.
2566 * bootstrap: Likewise.
2567 * Makefile.cfg: Adjust to new GNUmakefile.
2568 * README-hacking: Likewise.
2572 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2573 Bruno Haible <bruno@clisp.org>
2575 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2576 and is a script that invokes bison. Tighten the code. Add comments.
2578 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2580 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2581 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2582 * doc/bison.texinfo (Decl Summary): Fix.
2583 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2584 * tests/input.at (Boolean %define variables): Update output.
2585 * tests/skeletons.at (%define boolean variables: invalid skeleton
2586 defaults): Rename to...
2587 (%define Boolean variables: invalid skeleton defaults): ... this and
2590 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2592 In impure push mode, don't allow more than one yypstate to be allocated
2593 since multiple impure parsers would corrupt yynerrs.
2594 * data/push.c (yypstate_allocated): New static global variable
2596 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2597 exhaustion if yypstate_allocated is 1, but still return 2.
2598 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2599 already 1. Otherwise, set it to 1.
2600 (yypstate_delete): Set it to 0.
2601 * tests/push.at (Push Parsing: Multiple impure instances): New test
2604 2007-08-17 Bob Rossi <bob@brasko.net>
2606 * doc/bison.texinfo (Push Decl): Document the push parser.
2607 (Table of Symbols): Ditto.
2609 (Decl Summary): Ditto.
2610 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2611 Parser Create Function, Parser Delete Function):
2612 Add new push parser symbols.
2613 (Table of Symbols): Document push-parser, push-pull-parser,
2614 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2616 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2619 * doc/gpl-3.0.texi: New file.
2620 * doc/gpl.texi: Remove.
2621 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2622 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2623 * README-hacking, TODO, bootstrap, bootstrap.conf:
2624 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2625 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2626 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2627 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2628 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2629 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2630 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2631 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2632 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2633 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2634 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2635 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2636 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2637 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2638 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2639 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2640 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2641 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2642 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2643 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2644 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2645 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2646 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2647 * src/complain.c, src/complain.h, src/conflicts.c:
2648 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2649 * src/files.h, src/flex-scanner.h, src/getargs.c:
2650 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2651 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2652 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2653 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2654 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2655 * src/print.c, src/print.h, src/print_graph.c:
2656 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2657 * src/reduce.h, src/relation.c, src/relation.h:
2658 * src/revision.h, src/scan-code.h, src/scan-code.l:
2659 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2660 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2661 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2662 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2663 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2664 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2665 * tests/existing.at, tests/glr-regression.at:
2666 * tests/headers.at, tests/input.at, tests/java.at:
2667 * tests/local.at, tests/output.at, tests/push.at:
2668 * tests/reduce.at, tests/regression.at, tests/sets.at:
2669 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2673 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2675 Get rid of broken %no-parser, -n, and --no-parser implementation and
2677 * TODO: Don't mention them.
2678 * doc/bison.1: Likewise.
2679 * doc/bison.texinfo (Decl Summary): Likewise.
2680 (Bison Options): Likewise.
2681 (Option Cross Key): Likewise.
2682 * src/getargs.c (no_parser_flag): Remove global variable.
2683 (usage): Don't print description of -n and --no-parser.
2684 (long_options): Remove --no-parser entry here.
2685 (getargs): Remove -n case in the switch here.
2686 * src/getargs.h (no_parser_flag): Remove extern.
2687 * tests/regression.at (Web2c Actions): Remove comment that mentions
2690 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2692 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2693 name user variables starting with `yy'. Just pass NULL instead of a
2694 dummy local &yylval to yypush_parse.
2695 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2698 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2700 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2701 true since it's then always used regardless of whether yyoverflow is
2702 defined. Reported by Christian Burger at
2703 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2704 * THANKS: Add Christian Burger.
2706 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2707 node names: say "Decl Summary" not "Bison Declaration Summary".
2709 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2711 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2712 determine whether this function has already complained about an invalid
2713 value for a %define boolean variable, don't check whether Bison has
2714 ever examined the value. As written, the check was a tautology.
2715 Instead, record and check for this complaint using a separate muscle.
2717 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2719 Fix push parsing memory leak reported by Brandon Lucia at
2720 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2721 * THANKS: Add Brandon Lucia.
2722 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2723 but the parse never completed and thus freed it.
2724 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2725 * tests/testsuite.at: Include push.at.
2726 * test/push.at: New.
2727 (Push Parsing: Memory Leak for Early Deletion): New test case.
2729 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2731 Improve handling of multiple S/R conflicts in the same state and of S/R
2732 conflicts involving multiple reductions.
2733 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2734 set for a state here or Bison will abort if it is reassigned on a
2735 later conflicted reduction in the same state.
2736 Similarly, don't finalize and assign the solved conflicts report here
2737 or it will be lost if it is reassigned on a later conflicted reduction
2739 (set_conflicts): Instead, assign them both here after all S/R conflicts
2740 in the state have been fully examined.
2741 * src/print.c (shift_set): Rename to...
2742 (no_reduce_set): ... this.
2743 (print_reductions): Update for rename, and add %nonassoc error action
2744 tokens to no_reduce_set so that, when printing the first remaining
2745 reduction on an error action token, the reduction is enclosed in
2747 (print_results): Update for rename.
2748 * tests/conflicts.at (Solved conflicts report for multiple reductions
2749 in a state): New test case.
2750 (%nonassoc error actions for multiple reductions in a state): New test
2753 * src/main.c (main): Don't depend on C99 features.
2755 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2757 * build-aux/.cvsignore: Add compile.
2758 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2761 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2763 * bootstrap (slurp): Create target directories that don't exist.
2764 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2766 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2768 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2770 * closure.c (closure): Likewise.
2771 * state.h (reductions): Comment sorting of rules.
2772 (state): Comment sorting of items.
2774 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2776 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2777 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2778 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2779 definition in order to avoid Gnulib headers since we don't use config.h
2781 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2782 rather than AT_DATA so that config.h is included.
2784 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2786 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2787 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2788 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2789 and so that YYFPRINTF is guaranteed to be defined here.
2791 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2793 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2795 (muscle_percent_define_check_values): ... this more helpful function.
2796 Again, it's not used yet, but it will be.
2797 * src/muscle_tab.h: Likewise.
2799 Improve some comments in parser table construction.
2800 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2801 (generate_states): Don't mention ruleset, which is internal to closure.
2802 * src/closure.c (closure): Explain sorting of core and itemset, which
2803 is required for this function to behave correctly.
2804 * src/closure.h (closure): Mention sorting.
2806 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2808 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2809 move the check for disabled transitions to an aver since conflict
2810 resolution hasn't happened yet.
2812 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2813 labels a state as inconsistent just because it has error transitions.
2814 The original form of this check appeared in revision 1.1 of lalr.c,
2815 which was committed on 1991-12-21. Now (at least), changing the
2816 consistency label on such a state appears to have no useful effect in
2817 any of the places it is examined, which I enumerate below. The key
2818 point to understanding each item in this enumeration is that a state
2819 with an error transition is labelled consistent in the first place only
2820 if it has no rules, so the check cannot matter for states that have
2821 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2822 to try to identify its conflicts, and a state must have *rules* to have
2823 conflicts. (2) Labelling a state as inconsistent will affect how
2824 action_row sets the default *rule* for the state. (3) Labelling a
2825 state as inconsistent will cause build_relations to add lookback edges
2826 to *rules* in that state.
2827 * src/state.h (struct state): Word the comment for member consistent
2830 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2832 Don't depend on C99 features.
2833 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2834 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2835 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2836 * src/state.c (state_mark_reachable_states): Fix for-loop.
2837 (state_remove_unreachable_states): Fix for-loop.
2839 Don't widen struct state with member reachable just to temporarily
2840 record reachability. Instead, use a local bitset.
2841 * src/state.h (struct state): Remove member.
2842 * src/state.c (state_new): Don't initialize it.
2843 (state_mark_reachable_states): Rename to...
2844 (state_record_reachable_states): ... this, and use bitset.
2845 (state_remove_unreachable_states): Use bitset.
2847 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2849 * src/Makefile.am (yacc): Quote target action commands properly so
2850 that the yacc script isn't corrupt. Reported by Hans Aberg at
2851 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2853 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2854 the case of pure parsers. Reported by Frans Englich at
2855 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2856 * THANKS: Add Frans Englich.
2858 * NEWS (2.3a+): In the %code entry, reference section `Bison
2859 Declaration Summary' from the manual now since the %code summary has
2861 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2862 in the rules section must be terminated by semicolons.
2864 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2866 Extend the front-end API for %define variables to more completely
2867 mirror the back-end. This will be useful in the future.
2868 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2869 Update comments to mention the new front-end counterparts of these
2871 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2872 for muscle_string_decode and muscle_location_decode.
2873 (muscle_string_decode): New static function.
2874 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2875 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2877 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2878 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2879 implementation more closely.
2880 (muscle_percent_define_invalid_value): New function.
2881 * src/muscle_tab.h (muscle_percent_define_get,
2882 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2885 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2887 * NEWS (2.3a+): Mention yesterday's state-removal change.
2888 (2.3a): Remove the %language entry, which was added after 2.3a.
2889 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2890 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2891 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2892 tests/existing.at: Update copyright date.
2894 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2896 If conflict resolution makes states unreachable, remove those states,
2897 report rules that are then unused, and don't report conflicts in those
2899 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2900 New global function.
2901 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2903 * src/main.c (main): After conflict resolution, remove the unreachable
2904 states and update all data structures that reference states by number.
2905 * src/state.c (state_new): Initialize each state's reachable member to
2907 (state_mark_reachable_states): New static function.
2908 (state_remove_unreachable_states): New global function.
2909 * src/state.h (struct state): Add member bool reachable.
2910 (state_remove_unreachable_states): Prototype.
2911 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2913 * tests/existing.at (GNU pic Grammar): Update test case output now that
2914 an unused rule is discovered.
2916 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2918 Minor code cleanup in parser table construction.
2919 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2920 (new_itemsets, save_reductions): Update for rename to nitemset.
2921 * src/closure.c (nritemset): Rename to...
2922 (nitemset): ... this since the "r" appears to meaningless and isn't
2923 used in the comments.
2924 (closure): Update for rename.
2925 * src/closure.h (nritemset): Update extern to...
2926 (nitemset): ... this.
2927 * src/lalr.c (LA): Fix a typo in comments.
2928 * src/print.c (print_core): Update for rename to nitemset.
2929 * src/print_graph.c (print_graph): Likewise.
2930 * src/state.h: Fix some typos in header comments.
2932 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2934 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
2935 still sticks to ASCII. Sorry!
2937 * README-hacking: New file, taken mostly from coreutils, with changes
2938 for Bison. Contains much of the contents of:
2939 * README-cvs: Remove.
2940 * bootstrap: Sync from gnulib.
2941 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
2942 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
2944 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
2946 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
2948 (Java Differences): Fix some typos.
2949 * THANKS: Add Sebastian Setzer.
2951 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
2953 * data/java.m4 (b4_single_class_if): Remove.
2954 (b4_abstract_if): Look at "%define abstract".
2956 (b4_union_name): Rename...
2957 (b4_yystype): ... to this. Map to "%define stype".
2958 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
2959 b4_maybe_throws): Fix quoting.
2960 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
2961 * data/lalr1.java (Lexer interface): Always define.
2962 (Lexer interface within parser class): Remove.
2963 (YYLexer class): New, used when "%code lexer" is present.
2964 (constructor): When "%code lexer" is used, pass %lex-param
2965 to the lexer constructor.
2966 (yylex, yyparse): Remove %lex-param from method invocations
2967 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
2969 * doc/bison.texinfo (Java Bison Interface): Mention "%define
2970 abstract". Rename "%define union_name" to "%define stype".
2971 Rename method names according to previous patch.
2972 (Java Scanner Interface): Describe "%code lexer" instead of
2973 "%pure-parser" and "%define single_class".
2974 (Java Differences): Mention "%code lexer".
2976 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
2977 Include scanner here, using macros from tests/local.at.
2978 (AT_DATA_CALC_Y): Remove final argument.
2979 (_AT_CHECK_JAVA_CALC): Likewise.
2980 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
2981 of %locations and %error-verbose.
2982 (main): Test with and without %lex-param.
2983 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
2984 (AT_BISON_OPTION_POPDEFS): Pop it.
2986 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2988 DJGPP spefic issue. Inhibit the use of disallowed characters for
2989 file name genertion on Win98, WinXP, etc. These are |<>":?*\
2990 and concern testsuite case 46.
2991 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
2992 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
2993 * djgpp/config.bat: Inhibit the use of disallowed characters.
2995 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
2997 Miscellaneous %define and %code cleanup.
2998 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
2999 values are interpreted.
3000 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3001 documentation a little more.
3002 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3003 muscle_percent_define_insert, muscle_percent_code_grow): New
3005 * src/muscle_tab.h (muscle_percent_define_insert,
3006 muscle_percent_code_grow): Prototype.
3007 * src/parse-gram.y (prologue_declaration): Use
3008 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3009 %define and %code directives.
3011 Make it easy to share %define boolean variables between the front-end
3012 and back-end. Though not used yet, this will be useful in the future.
3013 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3014 Bison uses of names rather than just skeleton uses of names.
3015 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3016 b4_percent_define_skeleton_variables(VARIABLE) to
3017 b4_percent_define_bison_variables(VARIABLE).
3018 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3019 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3020 b4_percent_code_bison_qualifiers(QUALIFIER).
3021 (b4_check_user_names_wrap): Update for renames.
3022 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3023 muscle_percent_define_default): New functions mimicking
3024 b4_percent_define_flag_if and b4_percent_define_default.
3026 For %define variables, report locations for invalid values and
3028 * data/bison.m4 (b4_percent_define_flag_if): Read
3029 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3031 (b4_percent_define_default): Save a special location in
3032 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3033 must later be reported as invalid.
3034 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3036 (muscle_percent_define_insert): Record the location of VARIABLE in
3037 muscle percent_define_loc(VARIABLE), and use it to report the previous
3038 location for a redefinition.
3039 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3040 (muscle_percent_define_default): Update like b4_percent_define_default.
3041 (muscle_grow_user_name_list): Rename to...
3042 (muscle_user_name_list_grow): ... this for consistency and use
3043 muscle_location_grow.
3044 * src/muscle_tab.h (muscle_location_grow): Prototype.
3045 * tests/input.at (%define errors): Update expected output.
3046 * tests/skeletons.at (%define boolean variables: invalid skeleton
3047 defaults): New test case.
3049 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3051 * src/print.c (lookahead_set, state_default_rule): Remove.
3052 (print_reductions): Replace state_default_rule invocation with
3053 equivalent use of yydefact, which was computed in token_actions in
3055 (print_results): Don't allocate lookahead_set.
3057 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3059 * data/lalr1.java: Prefix all private members with yy.
3061 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3063 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3064 Sebastien Fricker at
3065 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3066 * THANKS: Add Sebastien Fricker.
3067 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3068 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3069 accept a variable number of arguments.
3071 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3073 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3075 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3077 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3078 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3079 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3081 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3083 Undo my 2007-02-07 change, switching back to the c-strcase module
3084 introduced in the 2007-02-03 change. Bruno Haible reported that
3085 the 2007-02-07 change would be dangerous in Turkish if we add a
3086 language whose name contains "i", since "i" is not lowercase "I"
3088 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3089 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3090 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3091 * m4/.cvsignore: Remove strcase.m4.
3092 * src/getargs.c: Revert 2007-02-07 change, as follows.
3093 Include c-strcase.h.
3094 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3096 2007-02-11 Bruno Haible <bruno@clisp.org>
3098 Enable the Java related testsuite tests when the only Java compiler
3099 found is a gcj < 4.3. Discussed at
3100 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3101 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3103 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3105 * data/Makefile.am: Update copyright date.
3106 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3107 yypstate_new returns NULL.
3108 (yypstate_new): Return NULL if malloc does.
3109 * src/reader.c (packgram): Move translation of rule actions from the
3110 beginning of packgram to...
3111 (check_and_convert_grammar): ... here right before packgram is invoked
3112 so it's easier to write more complete comments, and remove redundant
3115 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3117 As in semantic actions, make @$ in %initial-action, %destructor, and
3118 %printer imply %locations.
3119 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3121 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3122 (@$ in %initial-action implies %locations,
3123 @$ in %destructor implies %locations,
3124 @$ in %printer implies %locations): ... these new test cases.
3126 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3128 Undo most of the 2007-02-03 change, switching to the strcase module
3129 now that gnulib strcase has been fixed.
3130 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3131 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3132 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3133 * m4/.cvsignore: Add strcase.m4.
3134 * src/getargs.c: Revert 2007-02-03 change, as follows.
3135 Don't include c-strcase.h.
3136 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3137 strcasecmp has "unspecified behavior" outside the POSIX locale,
3138 but it works fine in practice if at least one argument is ASCII,
3139 as is the case in Bison.
3141 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3143 * tests/java.at: Skip tests if only one of javac/java is present.
3144 Reported by Joel E. Denny.
3145 * tests/atlocal.in: Adjust copyright years.
3147 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3149 * data/lalr1.java (Stack): Work around old verifiers that disallow
3150 access to the private fields of an inner class, from the outer class.
3151 We can make Stack's fields public because user code doesn't have access
3152 to the instance of Stack used by parse(). Reported by Paul Eggert.
3154 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3156 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3157 the right spot for these files?
3158 * bootstrap.conf (gnulib_modules): Add c-strcase.
3159 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3161 * src/getargs.c: Include c-strcase.h.
3162 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3163 to avoid unspecified behavior.
3165 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3167 * doc/bison.texinfo (Decl Summary): Correct typo.
3169 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3171 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3172 Complain if the value does not match empty, "true" or "false".
3173 * data/c++.m4: Adjust default definitions of %define variables.
3174 * data/java.m4: Adjust default definitions of %define variables.
3175 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3177 * tests/input.at (Boolean %define variables): Test new behavior.
3179 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3181 * NEWS: Mention java.
3182 * TODO: Remove things that are done.
3183 * bootstrap.conf: Add javacomp-script and javaexec-script.
3184 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3186 * data/Makefile.am: Add new files.
3187 * data/java-skel.m4: New.
3188 * data/java.m4: New.
3189 * data/lalr1.java: New.
3191 * doc/bison.texinfo: Put "A Complete C++ Example" under
3192 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3193 under Other Languages.
3195 * src/getargs.c (valid_languages): Add Java.
3196 * src/getargs.h (struct bison_language): Update size of string fields.
3198 * tests/Makefile.am: Add java.at.
3199 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3200 * tests/java.at: New.
3201 * tests/testsuite.at: Include it.
3203 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3206 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3207 at_directive_argv arguments so these no longer have to be global
3208 variables. Also, update the implementation for the following changes.
3209 (fail_for_at_directive_too_many_args,
3210 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3211 (at_directive_name): Remove as at_directive_argv[0] will be used for
3213 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3214 for the directive name.
3215 (at_directive_argc, at_directive_argv): Make these local within
3216 skel_lex instead of global.
3217 (INITIAL): Update directive start action for above changes.
3218 (SC_AT_DIRECTIVE_ARG): Rename to...
3219 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3220 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3221 (scan_skel): Move yylex_destroy to...
3222 (skel_scanner_free): ... here.
3223 * tests/skeletons.at (installed skeleton file name): Rename to...
3224 (installed skeleton file names): ... this.
3226 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3228 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3229 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3230 Summary" not "Directives".
3231 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3232 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3233 since the former is now the more complete one.
3234 (Prologue Alternatives): Likewise and do the same for %defines.
3235 (Table of Symbols): Add summary of %code, add summary of %define, and
3236 move full %code documentation to...
3237 (Decl Summary): ... here for consistency with other entries in these
3239 Move %define entry in order to keep this list alphabetized.
3240 Reword %define entry a little to put less emphasis on the skeleton
3241 concept, which most users shouldn't have to think about.
3243 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3245 Adjust to recent gnulib changes.
3246 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3247 Add string.h, string_.h, unistd_.h, wchar_.h.
3248 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3249 * src/system.h: Don't include <stpcpy.h>; this is now done by
3252 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3254 Simplify implementation of unqualified %code, implement macros for
3255 uniform treatment of boolean %define flags. Document %define.
3256 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3257 b4_percent_code_ifdef): New.
3258 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3259 * data/c++.m4: Define default value for global_tokens_and_yystype.
3260 * data/glr.cc: Likewise.
3261 * data/location.cc: Use b4_percent_define_flag_if.
3263 * doc/bison.texinfo (Decl Summary): Document %define.
3265 * src/parse-gram.y (Unqualified %code): Change muscle name to
3267 (content.opt): Default to empty.
3269 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3271 Implement support for relative and absolute skeleton file names.
3272 Discussed starting at
3273 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3274 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3275 (Bison Options): Document in --skeleton entry.
3276 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3277 full_skeleton can't necessarily hold all of pkgdatadir.
3278 If the specified skeleton file name contains a `/', don't prepend
3280 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3281 file name contains a `/', prepend the grammar file directory.
3282 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3283 * skeletons.at: New file.
3284 (relative skeleton file names): New test case.
3285 (installed skeleton file names): New test case.
3286 * tests/testsuite.at: Include skeletons.at.
3288 * bootstrap: Update copyright to 2007.
3290 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3292 * bootstrap: Remove occurrences of .#bootmp from the files.
3294 2007-01-17 Akim Demaille <akim@epita.fr>
3296 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3298 Use per-type %printer.
3300 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3302 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3303 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3304 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3305 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3306 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3307 tests/glr-regression.at, tests/input.at, tests/local.at,
3308 tests/output.at, tests/torture.at: Update copyright to 2007.
3310 2007-01-16 Akim Demaille <akim@epita.fr>
3312 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3314 (Calc++ Scanner): Exit with failure if we can't open the input
3316 Accept "-" standing for stdin.
3317 (Calc++ Top Level): Print the result only if the parsing was
3320 2007-01-16 Akim Demaille <akim@epita.fr>
3322 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3324 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3325 and Joel E. Denny <jdenny@ces.clemson.edu>
3327 Clean up %define and %code implementation in M4 some. Most
3328 importantly, rename all related macros to be in the b4_percent_define
3329 and b4_percent_code namespaces. Also, complete support for `.' in
3330 %define variable names and %code qualifiers.
3331 * data/bison.m4 (b4_check_user_names): Check for special
3332 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3334 (b4_get_percent_define, b4_get_percent_code): Rename to...
3335 (b4_percent_define_get, b4_percent_code_get): ... these.
3336 Extend documentation with examples.
3337 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3338 b4_percent_define_skeleton_variables and
3339 b4_percent_code_skeleton_qualifiers.
3340 Expect any value for the %define variable `foo' to be stored in the
3341 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3342 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3343 expect any unqualified %code blocks to be stored in a macro named
3344 `b4_percent_code_unqualified'.
3345 Use m4_indir so that %define variable names and %code qualifiers can
3346 contain `.', which is allowed by the grammar parser.
3347 (b4_percent_define_default): New macro to set a default value for a
3349 (m4_wrap): Update wrapped code, and fix some underquoting.
3350 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3351 Expect grammar uses of %define variables and %code qualifiers to be
3352 defined in b4_percent_define_user_variables and
3353 b4_percent_code_user_qualifiers.
3354 * data/c++.m4: Use b4_percent_define_default rather than
3355 m4_define_default. Fix some underquoting. Skeleton usage of %define
3356 variable define_location_comparison now implies skeleton usage of
3357 %define variable filename_type.
3358 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3359 data/push.c, data/yacc.c: Update macro names.
3360 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3363 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3365 DJGPP specific issues.
3367 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3368 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3370 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3372 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3373 run parsers in all tests so that Valgrind is invoked during
3374 maintainer-check-valgrind.
3375 (Duplicate representation of merged trees): Free all semantic values.
3376 (Duplicated user destructor for lookahead): Likewise.
3378 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3380 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3381 command-line prefix.
3382 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3383 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3384 miss Valgrind messages.
3385 (Exploding the Stack Size with Malloc): Likewise.
3387 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3389 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3390 locals. Reported by Juan Manuel Guerrero at
3391 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3392 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3393 Fix some indentation also.
3394 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3395 explaining this issue.
3397 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3398 and Joel E. Denny <jdenny@ces.clemson.edu>
3400 Simplify union and prologue handling, and escape union and lex/parse
3401 params with digraphs.
3402 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3403 values to the empty string since these are no longer guaranteed
3404 initialized by the front-end.
3405 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3406 braces around b4_user_stype since this is no longer done by the
3408 * src/files.c, src/files.h (pre_prologue_obstack,
3409 post_prologue_obstack): Remove.
3410 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3411 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3412 with digraphs. This fixes lex params and parse params.
3413 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3414 * src/output.c (prepare): Remove muscle insertion of the prologues.
3415 (output): Remove freeing of pre_prologue_obstack and
3416 post_prologue_obstack.
3417 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3418 than prologue_augment for prologue parsing so you don't need prologue
3420 (grammar_declaration): For %union RHS, use `braceless' instead of
3421 "{...}" so that braces are already stripped and code is escaped with
3423 * src/reader.c (prologue_augment): Remove.
3424 (reader): Remove initialization of pre_prologue_obstack and
3425 post_prologue_obstack.
3426 * src/reader.h (prologue_augment): Remove.
3428 * data/c.m4: Remove stray parenthesis.
3430 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3432 Remove quotes from variables names in %define directives and from
3433 qualifiers in %code directives, and restrict the characters that are
3434 allowed in them to M4-friendly ones. For %define, continue to support
3435 the quoted form as a deprecated feature. Discussed starting at
3436 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3437 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3439 * doc/bison.texinfo (Prologue Alternatives): Update.
3440 (Decl Summary): In %defines entry, update mention of `%code requires'
3441 and `%code provides'.
3442 (C++ Location Values): Update %define uses.
3443 (Calc++ Parser Interface): Likewise.
3444 (Calc++ Parser): Likewise, and update `%code requires' uses.
3445 (Table of Symbols): Update %code documentation.
3446 * src/parse-gram.y (prologue_declaration): For %define variables, use
3447 `variable' instead of `STRING'.
3448 (grammar_declaration): For %code qualifiers, use `ID' instead of
3450 (variable): New nonterminal that takes an `ID' or a `STRING'.
3451 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3453 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3454 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3455 (%define errors): Update %define uses.
3457 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3459 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3460 instead of muscle_insert for %define values so that M4-special
3461 characters are replaced with digraphs.
3462 * tests/input.at (%define errors): Extend to check weird values.
3464 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3466 Instead of having skeletons declare all valid %define variables and
3467 %code qualifiers, provide macros that retrieve the associated values
3468 and build these lists automatically. Thus Bison will now warn when a
3469 variable or qualifier is not used by the skeleton in the current
3470 invocation regardless of whether it might sometimes be used by that
3471 skeleton in other invocations. Also, move all %define value macros to
3472 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3473 form, which is replaced by %code.
3474 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3475 (b4_check_user_names): ... this, and change the series of valid name
3476 arguments to a single list argument for names used in the skeleton
3477 similar to the existing list argument for names used in the grammar.
3478 Warn instead of complaining.
3479 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3480 values and %code code, to format %code code properly, and to build
3481 lists of all %define variables and %code qualifiers used in the
3482 skeleton: b4_skeleton_percent_define_variables and
3483 b4_skeleton_percent_code_qualifiers.
3484 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3486 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3487 the skeleton names lists can finish building first. In place of
3488 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3489 expect the lists b4_user_percent_define_variables and
3490 b4_user_percent_code_qualifiers.
3491 * data/c++.m4: Where setting default values for b4_parser_class_name,
3492 b4_location_type, b4_filename_type, b4_namespace, and
3493 b4_define_location_comparison, update their names to the
3494 b4_percent_define_ namespace.
3495 * data/glr.c: Don't use b4_check_percent_define_variables and
3496 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3497 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3498 (b4_parser_class_name, b4_namespace): Define these using
3499 b4_get_percent_define for parser_class_name and namespace.
3500 * data/location.cc: Use b4_get_percent_define.
3501 * data/push.c: Don't use b4_check_percent_define_variables and
3502 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3503 * data/yacc.c: Likewise, and don't call m4_exit in
3504 b4_use_push_for_pull_if or m4_wrap code will never execute.
3505 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3507 (muscle_grow_user_name_list): ... this for consistency with the
3508 terminology used in bison.m4.
3509 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3510 %define variable names, and rename muscle used_percent_define_variables
3511 to user_percent_define_variables.
3512 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3513 user_percent_code_qualifiers.
3515 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3516 {CODE} form is no longer accepted.
3517 * tests/input.at (Reject bad %code qualifiers): Rename to...
3518 (Reject unused %code qualifiers): ... this, and update test output.
3519 (%define error): Update test output.
3521 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3523 Check for unrecognized %define variables similar to checking for
3524 unrecognized %code qualifiers. Check for redefined %define variables.
3525 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3527 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3528 (b4_check_percent_define_variables): New, also wraps it.
3529 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3530 variables using b4_check_percent_define_variables.
3531 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3532 all those exercised in the test suite and all those listed in the
3533 `Default values' section of c++.m4. Are there others?
3534 * data/push.c, data/yacc.c: Declare no valid %define variables.
3535 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3536 similar to muscle_find, but it works even when the muscle stores a
3538 (muscle_grow_used_name_list): New function for constructing the used
3539 name list muscles that b4_check_for_unrecognized_names requires.
3540 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3541 %define'd more than once. Define the b4_used_percent_define_variables
3542 muscle with muscle_grow_used_name_list.
3543 (grammar_declaration): Abbreviate %code code with
3544 muscle_grow_used_name_list.
3545 * tests/input.at (%define errors): New.
3547 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3549 Provide warn_at, complain_at, and fatal_at function callbacks to the
3550 skeletons, and use this for %code qualifier complaints.
3551 * data/bison.m4 (b4_error_at): New, invoked by...
3552 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3553 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3554 @fatal_at(...@) directives.
3555 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3556 qualifiers in b4_used_percent_code_qualifiers and to use
3558 * src/location.c, src/location.h (boundary_set_from_string): New global
3560 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3562 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3563 to b4_used_percent_code_qualifiers.
3564 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3566 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3567 (lineno): Rename to...
3568 (out_lineno): ... this so I don't misunderstand it again.
3569 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3570 here; these newlines are in the input but not the output file.
3571 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3572 (at_directive_perform): ... this new static function, and add handling
3573 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3575 * tests/input.at (Reject bad %code qualifiers): Update test output with
3576 locations and extend.
3578 * tests/output.at (Output file name: [, Output file name: ]): Remove
3579 bogus comment about these tests failing.
3581 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3583 Clean up b4_check_percent_code_qualifiers a little.
3584 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3585 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3586 documentation and add examples.
3587 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3590 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3592 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3593 unreliable -- especially when they're hidden inside another macro.
3594 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3595 data/c.m4: Remove m4_divert(-1).
3596 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3597 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3598 m4_divert_push(0) and m4_divert_pop(0).
3599 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3600 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3601 pushed and popped by m4sugar, should be first on the stack.
3603 Provide warn, complain, and fatal function callbacks to the skeletons.
3604 This provides more flexibility than m4_fatal, improves the error
3605 message format, and captures messages for translation. Discussed
3607 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3608 * data/bison.m4 (b4_error): New, invoked by...
3609 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3610 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3611 directives. Because these M4 macros might be called when the current
3612 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3613 the previous removal of uses of m4_divert, which caused trouble.
3614 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3615 m4_fatal to report unrecognized %code qualifiers.
3616 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3617 push parser requests.
3618 * data/glr.c: Use b4_complain instead of m4_fatal to report
3619 non-deterministic push parser requests.
3620 Update @output usage to @output(...@) form.
3621 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3622 report missing %defines. Update @output usage to @output(...@) form.
3623 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3625 * src/main.c (main): Invoke skel_scanner_free.
3626 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3627 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3628 obstack_for_string from flex-scanner.h.
3629 (YY_DECL): Use to declare skel_lex static.
3630 (decode_at_digraphs): Remove; now handled in the new
3631 SC_AT_DIRECTIVE_ARG start condition.
3632 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3634 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3635 at_directive_argv): New static globals.
3636 (INITIAL): Use fail_for_invalid_at.
3637 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3638 recognize the start of a generalized `@directive(...@)' form and
3640 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3641 directive args (using the new obstack_for_string), to decode the
3642 contained @ diagraphs, and to perform the directive. It recognizes
3643 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3645 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3646 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3648 (scan_skel): Initialize obstack_for_string on the first call.
3649 (skel_scanner_free): New function to free obstack_for_string.
3650 * tests/input.at (Reject bad %code qualifiers): Update test output.
3652 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3654 Consolidate the 4 prologue alternative directives (%code, %requires,
3655 %provides, and %code-top) into a single %code directive with an
3656 optional qualifier field. Discussed at
3657 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3658 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3660 * doc/bison.texinfo (Prologue Alternatives): Update.
3661 (Decl Summary): Update to %code "requires" and %code "provides".
3662 (Calc++ Parser): Update to %code "requires".
3663 (Table of Symbols): Remove entries for %requires, %provides, and
3664 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3665 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3666 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3667 which are skeleton-specific.
3668 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3669 declare what %code qualifiers it supports and to complain if any other
3670 qualifiers were used in the grammar.
3671 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3672 and b4_user_code([b4_percent_code_provides]) in place of
3673 b4_user_requires and b4_user_provides.
3674 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3675 Add b4_user_code([b4_percent_code_top]) and
3676 b4_user_code([b4_percent_code]).
3677 Invoke b4_check_percent_code_qualifiers.
3678 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3679 PERCENT_REQUIRES): Remove.
3680 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3681 %requires. Rewrite the %code RHS as the unqualified form defining the
3682 muscle b4_percent_code. Add another RHS for the qualified %code form,
3683 which defines muscles of the form b4_percent_code_QUALIFIER and the
3684 b4_used_percent_code_qualifiers muscle.
3685 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3686 PERCENT_REQUIRES): Remove.
3687 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3688 %code "requires" and %code "provides".
3689 * tests/input.at (Reject bad %code qualifiers): New.
3691 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3693 Use the new code_props interface for destructors and printers.
3694 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3695 printer_location members, and change the type of the destructor and
3696 printer members to code_props.
3697 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3698 symbol_printer_get, semantic_type_destructor_set,
3699 semantic_type_printer_set, default_tagged_destructor_set,
3700 default_tagless_destructor_set, default_tagged_printer_set,
3701 default_tagless_printer_set): Use code_props in arguments and return
3702 types in place of char const * and location.
3703 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3704 since the locations are now contained in the return of
3705 symbol_destructor_get and symbol_printer_get.
3706 * src/output.c (symbol_destructors_output, symbol_printers_output):
3708 (symbol_code_props_output): ... this to eliminate duplicate code.
3709 (output_skeleton): Update to use symbol_code_props_output.
3710 * src/reader.c (symbol_should_be_used): Update use of
3711 symbol_destructor_get.
3712 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3713 Update uses of the various _destructor_set and _printer_set functions.
3714 * src/symtab.c: (default_tagged_destructor_location,
3715 default_tagless_destructor_location, default_tagged_printer_location,
3716 default_tagless_printer_location): Remove since we...
3717 (default_tagged_destructor, default_tagless_destructor,
3718 default_tagged_printer, default_tagless_printer): ... change the type
3719 of these to code_props.
3720 (symbol_new, semantic_type_new, symbol_destructor_set,
3721 semantic_type_destructor_set, symbol_destructor_get,
3722 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3723 symbol_check_alias_consistency, default_tagged_destructor_set,
3724 default_tagless_destructor_set, default_tagged_printer_set,
3725 default_tagless_printer_set): Update.
3726 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3727 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3729 (symbol_print): Use SYMBOL_CODE_PRINT.
3731 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3733 Use the new code_props interface for rule actions.
3734 * src/symlist.h (symbol_list): Replace action, action_location, and
3735 used members with a code_props action_props member.
3736 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3737 grammar_midrule_action, grammar_current_rule_merge_set,
3738 grammar_current_rule_symbol_append, packgram): Update.
3739 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3740 * src/scan-code.l (handle_action_dollar): Update.
3741 (translate_rule_action): Remove, no longer used.
3742 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3744 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3746 Use the new code_props interface in parse-gram.y.
3747 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3748 Update all uses of translate_* functions to use the new code_props
3749 interface and to use gram_scanner_last_string_free and
3750 code_scanner_last_string_free where possible.
3751 (grammar_declaration): symbol_list_destructor_set and
3752 symbol_list_printer_set now perform the translation, so don't do it
3753 here. Use gram_scanner_last_string_free where possible.
3754 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3755 translate_code): Remove, no longer used.
3756 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3757 symbol_list_printer_set): Perform code translation here rather than
3758 depending on the caller to do so.
3760 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3761 * src/scan-gram.h (gram_last_string): Remove declaration.
3762 * src/scan-gram.l (last_string): Declare it static.
3764 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3766 Encapsulate code properties and related functionality for the various
3767 destructors, printers, and actions into a code_props structure and
3768 interface. This patch merely implements code_props in scan-code.h and
3769 scan-code.l. Future patches will rewrite other modules to use it.
3770 Discussed starting at
3771 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3772 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3773 consistently initialize const structs that have an empty location
3775 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3776 to ensure consistency.
3777 * src/scan-code.h (code_props): New structure.
3778 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3779 function, macro, and const global variable for initializing a
3780 code_props with no code.
3781 (code_props_plain_init, code_props_symbol_action_init,
3782 code_props_rule_action_init, code_props_translate_code): The rest of
3783 the new code_props functional interface. Among other things, the init
3784 functions set the code_props kind field so that
3785 code_props_translate_code will know whether to behave like
3786 translate_symbol_action, translate_rule_action, or translate_code.
3787 These old translate functions must remain until all other modules are
3788 updated to use the new code_props interface.
3789 (code_scanner_last_string_free): New function similar to
3790 gram_scanner_last_string_free.
3791 (code_scanner_free): Add documentation.
3792 * src/scan-code.l: Implement the new interface.
3793 (code_lex): Make it static, add a code_props* argument, and remove the
3795 (last_string): New static global similar to the one in scan-gram.l.
3796 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3798 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3799 code_props since Bison may one day use this information for destructors
3801 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3802 (handle_action_dollar): Use symbol_list_n_get and set used flag
3803 directly since symbol_list_n_used_set is removed.
3804 (translate_action): Add a code_props* argument and remove the rule,
3805 action, and location arguments. Pass the code_props* on to code_lex.
3806 (translate_rule_action, translate_symbol_action, translate_code):
3807 Rewrite as wrappers around the new code_props interface.
3808 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3809 it would eventually need to break the encapsulation of code_props.
3811 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3813 * etc/.cvsignore: New.
3815 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3817 Add maintainer-push-check to run maintainer-check using push parsing in
3818 place of pull parsing where available.
3819 * Makefile.am (maintainer-push-check): New.
3820 * data/bison.m4 (b4_use_push_for_pull_if): New.
3821 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3822 appropriately based on their existing values.
3823 (yypush_parse): Don't print push-parser-specific diagnostics if push
3824 parsing is being used in place of pull parsing.
3825 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3827 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3828 variable, and insert b4_use_push_for_pull_flag into muscles.
3829 * tests/Makefile.am (maintainer-push-check): New.
3831 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3833 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3834 (whether successful or failed) so that yypush_parse can be invoked
3835 again to start a new parse using the same yypstate.
3836 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3837 check multiple yypull_parse invocations on the same yypstate. For pull
3838 mode, extend to check multiple yyparse invocations.
3839 (Exploding the Stack Size with Alloca): Extend to try with
3841 (Exploding the Stack Size with Malloc): Likewise.
3843 * tests/calc.at (Simple LALR Calculator): Don't specify
3844 %skeleton "push.c" since %push-pull-parser implies that now.
3845 * tests/headers.at (export YYLTYPE): Don't check for the push
3846 declarations. Otherwise, this test case can't be used to see if push
3847 mode can truly emulate pull mode.
3848 * tests/input.at (Torturing the Scanner): Likewise.
3849 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3850 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3851 AT_YACC_IF, which now includes the case of push mode since %skeleton
3852 need not be used for push mode. This will be more intuitive once
3853 push.c is renamed to yacc.c.
3855 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3857 For push mode, convert yyparse from a macro to a function, invoke yylex
3858 instead of passing a yylexp argument to yypull_parse, and don't
3859 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3860 Discussed starting at
3861 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3862 * data/bison.m4 (b4_pull_if): New.
3863 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3864 * data/push.c: Improve M4 quoting a little.
3865 (b4_generate_macro_args, b4_parenthesize): Remove.
3866 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3867 any time a pull parser is requested.
3868 Don't #define this as a wrapper around yypull_parse. Instead, when
3869 both push and pull are requested, make it a function that does that
3871 (yypull_parse): If there's a b4_prefix, #define this to
3872 b4_prefix[pull_parse] when both push and pull are requested.
3873 Don't define this as a function unless both push and pull are
3875 Remove the yylexp argument and hard-code yylex invocation instead.
3876 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3878 * src/getargs.c (pull_parser): New global initialized to true.
3879 * getargs.h (pull_parser): extern it.
3880 * src/output.c (prepare): Insert pull_flag muscle.
3881 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3882 (prologue_declaration): Set both push_parser and pull_parser = true for
3883 %push-pull-parser. Set push_parser = true and pull_parser = false for
3885 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3886 %push-parser since there's no backward-compatibility concern here.
3887 Scan %push-pull-parser.
3888 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3889 instead of %push-parser.
3890 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3891 prototype it in the module that calls yyparse.
3892 * tests/input.at (Torturing the Scanner): Likewise.
3893 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3895 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3897 Update etc/bench.pl. Optimize push mode a little (the yyn change
3898 deserves most of the credit).
3899 * Makefile.am (SUBDIRS): Add etc subdirectory.
3900 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3901 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3902 yytoken, yyval, and yyloc declarations to...
3903 (yyparse or yypush_parse): ... here to improve performance. For
3904 yypush_parse invocations after the first, be sure to assign yyn its old
3906 (yypstate_new): Don't bother initializing the yyresult field since the
3907 initial value isn't used.
3908 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3909 remove the #define that, in push mode, set it to yyps->NAME.
3910 * etc/Makefile.am: New.
3911 * etc/bench.pl: Remove and build it instead from...
3912 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3913 "tests/bison" from the build directory by default rather than just
3914 invoking "bison" from $PATH.
3915 (calc_grammar): Update push parser code: don't declare yylval globally,
3916 don't define yyparse_wrapper, and don't #define yyparse.
3917 (bench_grammar): Update to check all working combinations of yacc.c,
3918 push.c, impure, pure, pull, and push.
3920 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3922 For push mode, add pull wrappers around yypush_parse.
3923 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3924 (yypull_parse): New function wrapping yypush_parse.
3925 (yyparse): New #define wrapping yypull_parse.
3926 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3928 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3929 prototype yylex in the module that calls yyparse, and don't prototype
3930 yyparse there. Otherwise, the yyparse expansion won't compile.
3931 * tests/input.at (Torturing the Scanner): Likewise.
3933 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3935 Enable push parsers to operate in impure mode. Thus, %push-parser no
3936 longer implies %pure-parser. The point of this change is to move
3937 towards being able to test the push parser code by running the entire
3938 test suite as if %push-parser had been declared.
3939 * data/push.c (yypush_parse): For impure mode, remove the
3940 yypushed_char, yypushed_val, and yypushed_loc arguments.
3941 Instead, declare these as local variables initialized to the global
3942 yychar, yylval, and yylloc.
3943 For the first yypush_parse invocation only, restore the initial values
3944 of these global variables when it's time to read a token since they
3945 have been overwritten.
3946 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
3948 * tests/calc.at (Simple LALR(1) Calculator): Always declare
3949 %pure-parser along with %push-parser since this test case was designed
3950 for pure push parsers.
3951 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
3952 (AT_YACC_OR_PUSH_IF): New.
3953 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
3954 add a note that it's still wrong for some cases (as it has been for a
3956 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
3957 %push-parser no longer implies %pure-parser.
3959 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3961 Remove some unnecessary differences between the pull parser code and
3962 the push parser code. This patch enables yynerrs in push mode.
3963 * data/push.c: Reformat M4 a little.
3964 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
3965 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
3966 because push mode is on. Instead, if pure mode is on, move yynerrs
3968 (b4_declare_parser_state_variables): ... here.
3969 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
3970 to yyps->NAME so it can be used in yypush_parse.
3971 (yypush_parse): Don't omit uses of yynerrs in push mode.
3973 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3975 Fix bug such that the first pushed token's value and location are
3976 sometimes overwritten (sometimes by %initial-action) before being used.
3977 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
3978 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
3979 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
3980 more closely mimic the pull parser logic.
3981 Don't copy the pushed token to yychar, yylval, and yylloc until it's
3982 time to read a token, which is after any initialization of yylval and
3984 (gottoken): Rename label to...
3985 (yyread_pushed_token): ... for clarity and to avoid infringing on the
3988 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3990 Rearrange initialization of the parser state variables so that the
3991 skeleton doesn't have to have a copy for pull mode and another for push
3992 mode. This patch also fixes at least a bug such that yylloc was not
3993 initialized (with b4_location_initial_line and
3994 b4_location_initial_column) upon calling yypush_parse. However, that
3995 initialization now overwrites the first token's location;
3996 %initial-action assigning @$ already did the same thing, and both bugs
3997 will be fixed in a later patch.
3998 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
3999 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4000 yyss, yyvs, yyls, and yystacksize.
4001 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4002 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4004 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4005 yyps->NAME so it can be used in yypush_parse.
4006 (yyparse or yypush_parse): For yypush_parse, don't print the
4007 "Starting parse" diagnostic for invocations after the first.
4008 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4009 yypush_parse, only do it for the first invocation.
4010 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4011 initialization to occur in yypush_parse but only on the first
4014 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4016 * data/push.c: Add CPP guards around push parser declarations in both
4017 the header and the code file.
4018 In the code file, move the push parser declarations to the same place
4019 they appear in the header file.
4020 Clean up the M4 some, especially the inconsistent underquoting in
4021 some b4_c_function_def and b4_c_function_decl uses.
4023 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4025 Encapsulate the push parser state variables into an M4 macro so the
4026 push skeleton doesn't have to list them again for pull mode's yyparse.
4027 For push mode, remove yypush_parse's local equivalents of these
4028 variables to eliminate unnecessary copying between the two sets at
4029 run-time. This patch also fixes at least a bug related to multiple
4030 %initial-action invocations in push mode.
4031 * data/push.c (b4_declare_parser_variables): Rename to...
4032 (b4_declare_scanner_communication_variables): ... this for clarity and
4034 (b4_declare_yyparse_variables): Remove and move its contents to the one
4035 spot where it was invoked.
4036 (b4_declare_parser_state_variables): New macro containing the parser
4037 state variables required by push mode.
4038 (struct yypstate): Replace all fields but yynew with
4039 b4_declare_parser_state_variables.
4040 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4041 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4042 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4043 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4044 parser state variable declarations with
4045 b4_declare_parser_state_variables.
4046 Don't initialize parser state variables when calling yypush_parse since
4047 yypstate_new already does that.
4048 Invoke the user's initial action only upon the first yypush_parse
4050 Remove all code that copies between the local parser state variables
4053 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4055 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4056 prevent a name collision in a future patch where these names will
4057 sometimes be #define'd.
4058 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4059 since it no longer has the same name as the existing argument.
4060 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4062 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4063 and Joel E. Denny <jdenny@ces.clemson.edu>
4065 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4066 that the argument is case-insensitive, and there's no `=' here.
4067 For the %skeleton entry, mention that %language is better.
4068 (Bison Options): Likewise for --language and --skeleton. Move the
4069 --skeleton entry so that the `Tuning the parser' section is sorted
4070 alphabetically on long options.
4071 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4072 %language directive in detail here; cross-reference the %language
4073 documentation instead.
4074 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4075 `%require "2.3b"' so that the example is always up-to-date.
4076 (Table of Symbols): Add entries for %language and %skeleton.
4077 * examples/extexi (normalize): Instead of replacing every %require
4078 argument with the current Bison version, just substitute for
4079 `@value{VERSION}'. This guarantees that we're testing what actually
4080 appears in the documentation.
4081 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4082 rather than `@VERSION@'.
4084 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4086 * NEWS: Reword the %language news a bit, and put it earlier.
4088 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4089 Rewrite to simplify the logic.
4090 (language_argmatch): Likewise.
4091 (program_name): We now own this var.
4092 * src/getargs.h (struct bison_language): Use char[] rather than
4095 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4097 * src/complain.c (program_name): Remove decl; no longer needed.
4098 * src/main.c (program_name): Remove; now belongs to getargs.
4100 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4102 * NEWS: Document %language.
4104 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4106 * data/c-skel.m4, data/c++-skel.m4: New files.
4107 * data/glr.c: Complain on push parsers.
4109 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4111 (Decl Summary): Document %language and %skeleton.
4112 (Command line): Document -L.
4114 * examples/extexi: Rewrite %require directive.
4115 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4117 * src/files.c (compute_exts_from_gc): Look in language structure
4119 (compute_file_name_parts): Check whether .tab should be added.
4120 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4121 (language, skeleton_arg, language_argmatch): New.
4122 (long_options): Add --language.
4123 (getargs): Use skeleton_arg, add -L/--language.
4124 * src/getargs.h: Include location.h.
4125 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4126 * src/output.c (prepare): Pick default skeleton from struct language.
4127 Don't dispatch C skeletons here.
4128 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4129 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4130 * src/scan-gram.l ("%language"): New rule.
4132 * tests/calc.at: Test %skeleton and %language.
4133 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4134 (AT_GLR_IF): Look for %skeleton "glr.cc".
4135 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4136 (AT_YACC_IF): Reject %language.
4138 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4140 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4141 since it wasn't used; only the typedef name 'semantic_type' is needed.
4142 Also, omit trailing white space.
4144 * bootstrap: Sync from coreutils.
4145 (gnulib_extra_files): Add build-aux/announce.gen.
4146 (slurp): Adjust .gitignore files like .cvsignore files.
4147 * build-aux/announce-gen: Remove from CVS, since bootstrap
4150 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4152 Make %push-parser imply %pure-parser. This fixes several bugs; see
4153 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4154 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4156 * data/push.c: Don't bother testing b4_push_if when deciding whether
4157 to expand b4_declare_parser_variables globally.
4158 (yypush_parse): Likewise in here.
4160 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4161 (yy_reduce_print): Reformat M4 for readability.
4163 2006-12-15 Bob Rossi <bob@brasko.net>
4164 and Joel Denny <jdenny@ces.clemson.edu>
4166 * data/push.c (yypstate): Add typedef, and update all uses of
4167 struct yypstate to just yypstate.
4168 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4170 2006-12-14 Bob Rossi <bob@brasko.net>
4172 * data/push.c (yypush_parse): Declare prototype regardless of
4175 2006-12-14 Bob Rossi <bob@brasko.net>
4177 * data/push.c (yyparse): Remove the prototype and the #define when in
4180 2006-12-13 Bob Rossi <bob@brasko.net>
4182 * data/push.c (yypstate_init): Rename to...
4183 (yypstate_new): ... this and use b4_c_function_def.
4184 (yypstate_delete): New.
4185 (yypush_parse): Change parameters yynval and yynlloc to be const.
4186 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4187 yypstate_delete functions.
4189 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4191 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4192 strange test case titles. Reported by Bob Rossi.
4194 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4196 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4197 of potential ambiguities in GLR grammers.
4199 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4201 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4202 `bison ', use m4_index instead of m4_substr since chopping up a string
4203 containing M4-special characters causes problems here.
4205 Fix a couple of bugs related to special characters in user-specified
4206 file names, and make it easier for skeletons to compute output file
4207 names with the same file name prefix as Bison-computed output file
4209 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4210 b4_parser_file_name and b4_spec_defines_file instead of
4211 @output_parser_name@ and @output_header_name@, which are now redundant.
4212 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4213 b4_parser_file_name, b4_spec_defines_file, and the new
4214 @basename(FILENAME@) instead of @output_parser_name@ and
4215 @output_header_name@, which inappropriately escaped the file names as
4217 * src/files.c (all_but_ext): Remove static qualifier.
4218 (compute_output_file_names): Move `free (all_but_ext)' to...
4219 (output_file_names_free): ... here since all_but_ext is needed later.
4220 * src/files.h (all_but_ext): Extern.
4221 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4222 exactly what MUSCLE_INSERT_STRING used to do.
4223 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4224 characters are escaped properly.
4225 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4227 For pkgdatadir muscle, maintain previous functionality by using
4228 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4229 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4230 digraphs would never be expanded. Hopefully no one has M4-special
4231 characters in his Bison installation path.
4232 * src/scan-skel.l: Don't parse @output_header_name@ and
4233 @output_parser_name@ anymore since they're now redundant.
4234 In @output, use decode_at_digraphs.
4235 Parse a new @basename command that invokes last_component.
4236 (decode_at_digraphs): New.
4237 (BASE_QPUTS): Remove unused.
4238 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4239 (Output file name): New tests.
4241 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4243 Warn about output files that are generated by the skeletons and that
4244 conflict with other output files.
4245 * data/glr.c: Don't generate the header file here when glr.cc does.
4246 * src/files.c (file_names, file_names_count): New static globals.
4247 (compute_output_file_names): Invoke output_file_name_check for files
4248 not generated by the skeletons and remove existing checks.
4249 (output_file_name_check): New function that warns about conflicting
4251 (output_file_names_free): Free file_names.
4252 * src/files.h (output_file_name_check): Declare.
4253 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4255 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4256 (Conflicting output files): New tests.
4258 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4260 * doc/bison.texinfo: Fix a couple of typos.
4262 2006-12-08 Bob Rossi <bob@brasko.net>
4264 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4266 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4268 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4269 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4271 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4272 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4274 2006-12-07 Bob Rossi <bob@brasko.net>
4275 and Joel Denny <jdenny@ces.clemson.edu>
4277 * data/push.c (yypvarsinit): Change return type from void* to struct
4278 yypvars*. No longer cast to void* on return.
4279 (struct yypvars): Remove yylen since it need not be remembered between
4280 yypushparse invocations.
4281 (yypushparse): Don't copy between yylen and pv->yylen.
4283 2006-12-05 Bob Rossi <bob@brasko.net>
4285 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4286 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4287 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4288 (struct yypvars): Remove b4_declare_parser_variables.
4289 (yypvarsinit): Remove init code for removed variables.
4290 (global scope): Do not declare b4_declare_parser_variables if
4292 (yypushparse): Add b4_declare_parser_variables.
4293 Init new local variables, and remove init code for removed
4296 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4297 and yyparse for other modes.
4298 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4299 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4300 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4301 (AT_PURE_LEX_IF): True if pure or push parser.
4303 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4305 Document Yacc prologue alternatives and default %destructor's and
4306 %printer's as experimental. Don't mention Java yet. Discussed at
4307 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4308 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4309 (2.3a): Annotate this entry to say the old forms of these features were
4311 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4312 Table of Symbols): Say they're experimental. Comment out any mention
4313 of Java (we'll want this back eventually).
4315 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4317 Support a file name argument to %defines. Deprecate `=' in
4318 %file-prefix, %name-prefix, and %output. Discussed at
4319 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4320 * NEWS (2.3a+): Mention.
4321 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4322 form of %defines, and remove `=' from entries for %file-prefix,
4323 %name-prefix, and %output.
4324 * src/parse-gram.y (prologue_declaration): Implement.
4325 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4326 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4327 all but one occurrence of %name-prefix.
4328 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4329 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4330 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4331 occurrence of each of %file-prefix and %output. Add check for %defines
4333 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4334 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4335 Remove the `=' from %output.
4337 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4339 Don't escape $ in test case titles since Autoconf 2.61 now does that
4341 * tests/actions.at (Default %printer and %destructor are not for error
4342 or $undefined): Here.
4343 (Default %printer and %destructor are not for $accept): Here.
4344 * tests/input.at (Invalid $n and @n): Here.
4346 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4348 Rename <!> to <>. Discussed starting at
4349 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4350 * NEWS (2.3a+): Update.
4351 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4353 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4354 * src/scan-gram.l (INITIAL): Implement.
4355 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4356 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4358 * tests/actions.at (Default tagless %printer and %destructor,
4359 Default tagged and per-type %printer and %destructor,
4360 Default %printer and %destructor are not for error or $undefined,
4361 Default %printer and %destructor are not for $accept,
4362 Default %printer and %destructor for mid-rule values): Update.
4363 * tests/input.at (Default %printer and %destructor redeclared,
4364 Unused values with default %destructor): Update.
4366 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4368 Don't let %prec take a nonterminal.
4369 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4371 * tests/input.at (%prec takes a token): New test checking that %prec
4372 won't take a nonterminal.
4374 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4376 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4377 it was double-quoted.
4378 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4379 grammar is maintained with Bison's highest standards.
4380 * src/getargs.c: Fix some typos in Doxygen comments.
4382 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4384 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4385 later. Reported by Paul Eggert in
4386 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4387 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4388 * src/scan-code.l (translate_action): Don't bother invoking
4389 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4390 (code_scanner_free): Instead of invoking
4391 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4393 * src/scan-gram.l (gram_scanner_free): Likewise.
4394 * src/scan-skel.l (scan_skel): Likewise.
4396 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4398 * src/files.c (tr): Change return type to void.
4399 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4400 has been called previously for the same key.
4401 (muscle_find): Return storage instead of value so that
4402 --enable-gcc-warnings doesn't produce warnings that the return discards
4403 const. aver that the value and storage are the same since storage
4404 could potentially be NULL when value is not.
4405 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4408 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4410 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4411 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4412 us a slightly cleaner distribution, and also works.
4413 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4416 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4417 and Paul Eggert <eggert@cs.ucla.edu>
4419 Don't let Bison leak memory except when it complains.
4420 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4421 (spec_defines_file, dir_prefix): Now char *, not const char *,
4422 since they are freed.
4423 * src/files.c: Likewise.
4424 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4426 (tr): Now operates in-place. All uses changed.
4427 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4429 (compute_file_name_parts, compute_output_file_names): Don't store
4430 read-only data in variables that will be freed.
4431 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4432 src_extension, and header_extension.
4433 (output_file_names_free): New public function to free
4434 spec_verbose_file, spec_graph_file, spec_defines_file,
4435 parser_file_name, and dir_prefix.
4436 * src/getargs.c (getargs): Don't store read-only data in variables that
4438 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4439 (which previously existed but was unused), and quotearg_free.
4440 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4441 * src/muscle_tab.c: Likewise.
4442 (muscle_entry): Make the value char const *,
4443 and add a new storage member that is char * and can be freed.
4444 (muscle_entry_free): New private function.
4445 (muscle_init): Use it instead of free.
4446 (muscle_insert, muscle_grow): Update and use new storage member.
4447 (muscle_code_grow): Free the string passed to muscle_grow
4448 since it's not needed anymore.
4449 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4450 add a new `char *code' member.
4451 ("{...}"): Declare semantic type as code.
4452 * src/scan-code.h (translate_rule_action):
4453 (translate_symbol_action, translate_code, translate_action): Return
4454 `char const *' rather than `char *' since external code should not free
4456 * src/scan-code.l: Likewise.
4457 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4458 which is "{...}" in the parser.
4459 * tests/Makefile.am (maintainer-check-valgrind): Set
4460 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4462 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4464 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4465 expecting a non-zero exit status sets --leak-check=summary and
4466 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4467 this case, and we don't want to hear about it.
4469 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4471 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4472 instead of from the template, to simplify configuration a bit.
4473 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4474 and m4/wint_t.m4, as they are needed with the latest gnulib.
4476 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4478 Disable unset/unused mid-rule value warnings by default, and recognize
4479 --warnings=midrule-values to enable them. Discussed starting at
4480 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4481 * NEWS (2.3a+): Mention.
4482 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4483 warnings): Add entry for midrule-values subargument.
4484 * src/reader.c (symbol_should_be_used): Don't return true just because
4485 the value is a set/used mid-rule value unless
4486 --warnings=midrule-values was specified.
4487 * tests/input.at (Unused values, Unused values before symbol
4488 declarations): Run tests with and without --warnings=midrule-values.
4490 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4491 than LIST_FREE directly.
4493 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4495 Finish implementing --warnings=error, which should not be implied by
4496 --warnings=all (or by its synonyms -W and --warnings without
4498 * src/complain.c (set_warning_issued): New function to report that
4499 warnings are being treated as errors and to record an error if so.
4501 (warn_at, warn): ... here.
4502 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4503 "error - warnings are errors" does not appear above "all - all of the
4505 (getargs): For -W and --warnings without subarguments, don't let
4506 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4507 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4509 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4511 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4512 empty subargument list. For example: `bison --warnings= parser.y'.
4514 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4516 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4517 the parser header file so that gcc doesn't warn.
4519 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4521 Split the default %destructor/%printer into two kinds: <*> and <!>.
4522 Discussed starting at
4523 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4524 * NEWS (2.3a+): Mention.
4525 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4526 previous change today related to mid-rules.
4527 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4528 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4529 (TYPE_TAG_ANY): Add as <*>.
4530 (TYPE_TAG_NONE): Add as <!>.
4531 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4533 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4534 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4535 * src/symlist.c (symbol_list_default_new): Split into tagged and
4537 (symbol_list_destructor_set, symbol_list_printer_set): Split
4538 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4539 SYMLIST_DEFAULT_TAGLESS.
4540 * src/symlist.h: Update symbol_list_default*_new prototypes.
4541 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4542 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4543 * src/symtab.c (default_destructor, default_destructor_location,
4544 default_printer, default_printer_location): Split each into tagged and
4546 (symbol_destructor_get, symbol_destructor_location_get,
4547 symbol_printer_get, symbol_printer_location_get): Implement tagged
4548 default and tagless default cases.
4549 (default_destructor_set, default_printer_set): Split each into tagged
4550 and tagless versions.
4551 * src/symtab.h: Update prototypes.
4552 * tests/actions.at (Default %printer and %destructor): Rename to...
4553 (Default tagless %printer and %destructor): ... this, and extend.
4554 (Per-type %printer and %destructor): Rename to...
4555 (Default tagged and per-type %printer and %destructor): ... this, and
4557 (Default %printer and %destructor for user-defined end token): Extend.
4558 (Default %printer and %destructor are not for error or $undefined):
4560 (Default %printer and %destructor are not for $accept): Update.
4561 (Default %printer and %destructor for mid-rule values): Extend.
4562 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4563 (Unused values with default %destructor): Extend.
4565 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4567 Don't apply the default %destructor/%printer to an unreferenced midrule
4569 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4570 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4571 like $@n instead of just @n so that the default %destructor/%printer
4572 logic doesn't see them as user-defined symbols.
4573 (symbol_is_dummy): Check for both forms of the name.
4574 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4575 name for which the midrule value is referenced in any action.
4576 * tests/actions.at (Default %printer and %destructor for mid-rule
4578 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4579 for change to dummy symbol names.
4581 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4583 Warn about unset midrule $$ if the corresponding $n is used.
4584 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4586 (packgram): Before invoking grammar_rule_check on any rule, make sure
4587 all actions have already been scanned in order to set `used' flags.
4588 Otherwise, checking that a midrule's $$ is set will not always work
4589 properly because the midrule check must forward-reference the midrule's
4591 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4594 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4596 More improvements to the documentation of the prologue alternatives:
4597 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4599 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4600 some text to clarify the relative importance of the new directives and
4601 to show how these directives may be viewed as code labels.
4603 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4605 Similar to the recently removed %before-header, add %code-top as the
4606 alternative to the pre-prologue. Mentioned at
4607 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4608 Also, let the prologue alternatives appear in the grammar section.
4609 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4610 (prologue_declaration): Move the existing prologue alternatives to...
4611 (grammar_declaration): ... here and add %code-top.
4612 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4614 Clean up and extend documentation for the prologue alternatives.
4615 * NEWS (2.3a+): Describe prologue alternatives.
4616 * doc/bison.texinfo (Prologue): Move discussion of prologue
4618 (Prologue Alternatives): ... this new section, and extend it to discuss
4619 all 4 directives in detail.
4620 (Table of Symbols): Clean up discussion of prologue alternatives and
4623 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4625 DJGPP specific issues.
4627 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4628 config.bat accordingly.
4629 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4630 * djgpp/config.site: Likewise.
4632 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4634 Replace %*-header with %provides, %requires, %code. See discussion at
4635 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4637 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4638 (b4_user_start_header): Remove.
4639 * data/glr.c: Use new macros instead of b4_*start_header
4641 * data/glr.cc: Likewise.
4642 * data/lalr1.cc: Likewise.
4643 * data/push.c: Likewise.
4644 * data/yacc.c: Likewise.
4646 * doc/bison.texinfo: Remove %before-header, rename
4647 %{start,end,after}-header to %requires, %provides, %code.
4649 * src/parse-gram.y: Likewise (also rename token names accordingly).
4650 * src/scan-gram.l: Likewise.
4651 * tests/actions.at: Likewise.
4653 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4655 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4656 Problem reported by Joel E. Denny.
4658 2006-10-14 Jim Meyering <jim@meyering.net>
4660 (Sync from coreutils.)
4661 Work also when the working directory (with e.g. coreutils sources)
4662 is version controlled with git, rather than CVS.
4663 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4665 In messages and comments, say e.g., "checked-out sources",
4666 rather than "CVS sources".
4667 (version_controlled_file): New function. Work for git as well as
4668 for CVS. Don't use grep's -q option.
4669 (slurp): Call it here, in place of CVS-specific code.
4671 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4673 Fix testsuite for ./configure --enable-gcc-warnings:
4674 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4675 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4676 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4677 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4678 * test/regression.at (Diagnostic that expects two alternatives):
4681 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4683 * bootstrap.conf (gnulib_modules): Add config-h.
4684 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4685 worry about HAVE_CONFIG_H.
4686 * lib/abitset.c: Likewise.
4687 * lib/bitset.c: Likewise.
4688 * lib/bitset_stats.c: Likewise.
4689 * lib/bitsetv-print.c: Likewise.
4690 * lib/bitsetv.c: Likewise.
4691 * lib/ebitset.c: Likewise.
4692 * lib/get-errno.c: Likewise.
4693 * lib/lbitset.c: Likewise.
4694 * lib/subpipe.c: Likewise.
4695 * lib/timevar.c: Likewise.
4696 * lib/vbitset.c: Likewise.
4697 * lib/bitset.c: Include "bitset.h" first, to test interface.
4698 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4699 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4700 * lib/bitsetv.c: Include "bitsetv.h" first.
4701 * lib/get-errno.c: Include "get-errno.h" first.
4702 * m4/.cvsignore: Add config-h.m4.
4703 * tests/actions.at (Default %printer and %destructor for ...):
4704 Adjust expected line numbers in output to reflect removal of #if
4705 HAVE_CONFIG_H lines.
4706 * tests/glr-regression.at (Missed %merge type warnings when ...):
4708 * tests/regression.at (Braced code in declaration in rules section):
4710 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4711 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4712 Include <config.h> unconditionally.
4714 * bootstrap: Sync from coreutils, as follows:
4716 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4718 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4719 variable was sometimes used without being initialized. This
4720 messed up the installation of the INSTALL file in some cases.
4722 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4724 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4725 --copy. Inspired by a suggestion from Bruno Haible.
4727 2006-10-03 Jim Meyering <jim@meyering.net>
4729 * bootstrap: Undo last change to this file, since now gnulib-tool
4730 sticks with the automake default in generating dependencies.
4732 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4734 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4735 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4737 * doc/bison.1: Add copyright notice.
4739 * data/glr.c: Don't include <stdarg.h>; not used.
4741 * NEWS: The -g and --graph options now output graphs in Graphviz
4742 DOT format, not VCG format.
4743 * doc/bison.1: Likewise.
4744 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4745 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4747 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4748 * TODO: Remove Graphviz entry.
4749 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4750 remove vcg.c, vcg.h, vcg_defaults.h.
4751 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4752 * src/graphviz.c, src/graphviz.h: New files.
4753 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4754 * src/files.h: Make comment more generic.
4755 * src/main.c (main): Likewise.
4756 * src/print_graph.h: Likewise.
4757 * src/getargs.c (usage): Make usage description more generic.
4758 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4759 (static_graph, fgraph): Remove. All uses changed to pass
4760 arguments instead of sharing a static var.
4761 (print_core, print_actions, print_state, print_graph):
4762 Output graphviz format rather than VCG format.
4763 * tests/.cvsignore: Remove *.vcg; add *.dot.
4764 * tests/output.at: Expect *.dot files, not *.vcg files.
4766 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4767 accommodates the 2006-10-08 change.
4769 2006-10-11 Bob Rossi <bob@brasko.net>
4771 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4772 (b4_yyssa, b4_yyerror_range): New macros.
4773 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4774 (yypvarsinit): Remove init of removed fields.
4775 (yypushparse): Remove use of removed fields; use new macros instead.
4777 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4779 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4780 in a push parser. Reindent slightly to match yacc.c better.
4782 2006-10-11 Bob Rossi <bob@brasko.net>
4784 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4786 (yypvarsinit, yypushparse): Remove init of removed fields.
4787 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4789 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4791 * THANKS: Add Paolo Bonzini and Bob Rossi.
4793 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4795 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4796 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4797 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4798 b4_define_user_cde and uses): Remove.
4799 (b4_comment, b4_prefix, b4_sync_start): New.
4800 * data/bison.m4: New file, with most of the content removed from c.m4.
4801 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4802 * src/output.c (output_skeleton): Pass bison.m4.
4803 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4806 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4808 Fix test failure reported by Tom Lane in
4809 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4810 and try to make such failures easier to catch in the future.
4811 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4812 that's now the caller's responsibility.
4813 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4814 Set yychar = YYEOF if it's negative.
4815 * tests/actions.at (yylex): Abort if asked to read past EOF.
4816 * tests/conflicts.at (yylex): Likewise.
4817 * tests/cxx-type.at (yylex): Likewise.
4818 * tests/glr-regression.at (yylex): Likewise.
4819 * tests/input.at (yylex): Likewise.
4820 * tests/regression.at (yylex): Likewise.
4821 * tests/torture.at (yylex): Likewise.
4823 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4825 Fix problems with translating English-language diagnostics.
4826 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4827 respect to bison-runtime pot generation. The YY_ stuff
4828 wasn't being captured.
4829 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4830 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4831 * runtime-po/POTFILES.in: Add data/push.c.
4833 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4835 Merge bootstrap changes from coreutils.
4837 2006-09-28 Jim Meyering <jim@meyering.net>
4839 Automatically generated dependencies are important even
4840 when all of the sources in a directory come from gnulib.
4841 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4842 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4844 2006-09-23 Jim Meyering <jim@meyering.net>
4846 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4848 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4850 * bootstrap: Add support for --force.
4851 (usage): New function. Describe usage less tersely.
4852 (CVS_only_file): New var.
4854 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4856 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4857 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4858 Adjust white space and comments to match GNU style better.
4860 2006-09-20 Bob Rossi <bob@brasko.net>
4862 * data/push.c (yyresult_get): Remove function.
4863 (YYPUSH_MORE): Add #define.
4864 (yypushparse): Modify return value.
4866 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4868 * stamp-h.in: Remove; no longer needed.
4869 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4870 Remove config.h, config.hin, intl (no longer created).
4871 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4874 Sync bootstrap from coreutils, as follows:
4876 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4878 * bootstrap (symlink_to_gnulib): New function.
4879 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4880 to copies-of-gnulib.
4881 (cp_mark_as_generated, slurp, gnulib_files):
4882 Avoid making a copy if it's the same as the old version.
4883 (gnulib_files): Add support for this variable (used by Bison).
4885 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4887 * src/getargs.c (usage): Rework to use conventions similar to
4888 coreutils, to make translation a bit easier and the code a bit
4889 smaller. Problem reported by Tim Van Holder.
4891 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4893 Use some of gnulib's new modules, taken from coreutils.
4895 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4896 * bootstrap.conf: New file.
4897 (gnulib_modules): Add configmake, inttypes, unistd.
4898 (XGETTEXT_OPTIONS): Add complain, complain_at,
4899 fatal, fatal_at, warn, warn_at, unexpected_end.
4900 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4901 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4903 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4905 (GNULIB_AUTOCONF_SNIPPET): Remove.
4906 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4908 * lib/.cvsignore: Add inttypes_.h.
4909 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4910 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4911 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4912 no-longer-necessary initializations.
4913 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4914 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4915 use the unistd module.
4916 * src/system.h: Likewise.
4917 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4918 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4919 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4920 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4921 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4922 * src/system.h: Include inttypes.h unconditionally, now that we
4923 use the inttypes module. Don't bother to include stdint.h, since
4924 inttypes.h now does that for us.
4925 (LOCALEDIR): Remove, now that we use the configmake module.
4926 * src/getargs.c: Include configmake.h.
4927 * src/main.c: Likewise.
4928 * src/output.c: Likewise.
4929 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4930 not from $abs_top_builddir, since config.h moved.
4933 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
4934 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
4936 * src/parse-gram.y (symbol_declaration): Don't put statements
4937 before declarations; it's not portable to C89.
4938 * src/scan-code.l (handle_action_at): Likewise.
4940 * src/scan-code.l: Always initialize braces_level; the old code
4941 left it uninitialized and therefore had undefined behavior.
4943 Don't attempt to redefine 'assert', since it runs afoul of
4944 systems where standard headers (mistakenly) include <assert.h>.
4945 Instead, define and use our own alternative, called 'aver'.
4946 * src/reader.c: Don't include assert.h, since we no longer
4948 * src/scan-code.l: Likewise.
4949 * src/system.h (assert): Remove, replacing with....
4950 (aver): New function, taking a bool arg. All uses changed.
4951 * src/tables.c (pack_vector): Ensure that aver arg is bool,
4952 not merely an integer.
4954 2006-09-15 Bob Rossi <bob@brasko.net>
4956 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
4957 * data/c.m4 (YYPUSH): New.
4958 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
4959 * src/getargs.c (push_parser): New var.
4960 * src/getargs.h (push_parser): New declaration.
4961 * src/output.c (prepare): Add macro insertion of `push_flag'.
4962 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
4963 (prologue_declaration): Parse %push-parser.
4964 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
4965 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
4966 list of removed lines from the traces observed.
4967 (AT_CHECK_CALC_LALR): Added push parser tests.
4969 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
4971 * NEWS: Version 2.3a.
4972 * configure.ac (AC_INIT): Likewise.
4974 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
4975 "#define YYSTYPE int" that caused "make maintainer-check" to fail
4976 due to header ordering dependencies. I don't know why the #define
4979 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
4980 runtime cost when YYDEBUG is not defined, and so that some tests
4981 that used to fail now work. Problem and initial suggestion by
4983 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
4984 * data/glr.cc (b4_parser_class_name):
4985 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
4986 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
4987 (yydebug_) [YYDEBUG]: New member.
4988 (yycdebug_): Now defined only if YYDEBUG.
4989 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
4990 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
4991 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
4993 (debug_stream, set_debug_stream, debug_level, set_debug_level):
4994 Define only if YYDEBUG.
4995 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
4997 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
4998 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
4999 AT_CHECK_CALC_GLR_CC that are working now.
5001 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5003 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5004 We don't need them in glr.cc, and glr.c defines them.
5005 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5006 assumes that defining it to anything is the same as defining
5007 it to 1. Problem reported by Paolo Bonzini.
5009 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5011 * data/c.m4 (b4_null, b4_case): Define.
5012 * src/output.c (prepare_symbols): Use b4_null.
5013 (user_actions_output): Use b4_case.
5015 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5017 * data/glr.c (b4_shared_declarations): Put start-header first,
5018 before any #includes that we generate, so that feature-test
5019 macros work. Problem reported by Michael Deutschmann in
5020 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5021 * data/lalr1.cc: Likewise.
5022 * doc/bison.texinfo (Prologue): Document that feature-test macros
5023 should be defined before any Bison declarations.
5024 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5025 that depend on location.hh after, not before, Bison decls, since
5026 we now include location.hh after the first user prologue.
5028 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5029 Sander Brandenburg in
5030 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5031 Also, fix minor white space and comment issues.
5032 (Prologue): Mention that it's better to define feature-test macros
5033 before Bison declarations. Problem reported by Michael Deutschmann.
5035 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5037 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5038 This adjusts to recent gnulib changes.
5040 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5042 Finish implementation of per-type %destructor/%printer. Discussed
5044 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5046 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5047 * NEWS (2.3+): Add a description of this feature to the default
5048 %destructor/%printer description.
5049 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5050 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5051 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5052 list node contains a semantic type.
5053 * src/symtab.c, src/symtab.h: Extend with a table that associates
5054 semantic types with their %destructor's and %printer's.
5055 (semantic_type_from_uniqstr, semantic_type_get,
5056 semantic_type_destructor_set, semantic_type_printer_set): New functions
5057 composing the public interface of that table.
5058 (symbol_destructor_get, symbol_destructor_location_get,
5059 symbol_printer_get, symbol_printer_location_get): If there's no
5060 per-symbol %destructor/%printer, look up the per-type before trying
5062 * tests/actions.at (Per-type %printer and %destructor): New test case.
5063 * tests/input.at (Default %printer and %destructor redeclared):
5064 Extend to check that multiple occurrences of %symbol-default in a
5065 single %destructor/%printer declaration is an error.
5066 (Per-type %printer and %destructor redeclared, Unused values with
5067 per-type %destructor): New test cases.
5069 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5071 Require default %destructor/%printer to be declared using
5072 %symbol-default instead of an empty symbol list, and start working on
5073 new per-type %destructor/%printer. Discussed at
5074 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5075 * NEWS (2.3+): Add %symbol-default to example.
5076 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5077 (Table of Symbols): Add entry for %symbol-default.
5078 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5079 (generic_symlist, generic_symlist_item): New nonterminals for creating
5080 a list in which each item is a symbol, semantic type, or
5082 (grammar_declaration): Use generic_symlist in %destructor and %printer
5083 declarations instead of symbols.1 or an empty list.
5084 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5085 for changes to symbol_list.
5086 * src/reader.c: Update for changes to symbol_list.
5087 * src/scan-code.l: Likewise.
5088 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5089 * src/symlist.c, src/symlist.h: Extend such that a list node may
5090 represent a semantic type or a %symbol-default in addition to just an
5091 ordinary symbol. Add switched functions for setting %destructor's and
5093 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5094 %destructor/%printer declarations.
5096 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5098 Whether the default %destructor/%printer applies to a particular symbol
5099 isn't a question of whether the user *declares* that symbol (in %token,
5100 for example). It's a question of whether the user by any means
5101 *defines* the symbol at all (by simply using a char token, for
5102 example). $end is defined by Bison whereas any other token with token
5103 number 0 is defined by the user. The error token is always defined by
5104 Bison regardless of whether the user declares it with %token, but we
5105 may one day let the user define error as a nonterminal instead.
5106 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5107 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5108 the meaning of "user-defined".
5109 * tests/actions.at (Default %printer and %destructor for user-declared
5110 end token): Rename to...
5111 (Default %printer and %destructor for user-defined end token): ...
5114 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5115 computation of whether to apply the default, don't maintain a list of
5116 every Bison-defined symbol. Instead, just check for a first character
5117 of '$', which a user symbol cannot have, and check for the error token.
5119 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5121 Don't apply the default %destructor or %printer to the error token,
5122 $undefined, or $accept. This change fits the general rule that the
5123 default %destructor and %printer are only for user-declared symbols,
5124 and it solves several difficulties that are described in the new test
5126 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5127 * tests/actions.at (Default %printer and %destructor are not for error
5128 or $undefined, Default %printer and %destructor are not for $accept):
5131 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5133 Allow %start after the first rule.
5134 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5135 when parsing the first rule.
5136 (check_and_convert_grammar): Search for it here after all grammar
5137 declarations have been parsed. Skip midrules, which have dummy LHS
5139 * src/symtab.c (symbol_is_dummy): New function.
5140 * src/symtab.h (symbol_is_dummy): Declare it.
5141 * tests/input.at (%start after first rule): New test.
5143 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5145 Redo some of the previous commit: add back the ability to use
5146 non-aliased/undeclared string literals since it might be useful to
5147 those declaring %token-table.
5148 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5149 commit: don't worry about complaints from symbols_pack.
5150 * src/symtab.c (symbol_new, symbol_class_set,
5151 symbol_check_alias_consistency): Undo changes in previous commit: count
5152 each string literal as a new symbol and token, assign it a symbol
5153 number, and don't complain about non-aliased string literals.
5154 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5155 and token counts but does still set aliased tokens to the same number,
5156 symbol_pack_processor now leaves empty slots in the symbols array.
5158 * tests/regression.at (Undeclared string literal): Remove test case
5159 added in previous commit since non-aliased string literals are allowed
5161 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5162 remove unnecessary string literal declarations.
5163 * tests/sets.at (Firsts): Likewise.
5165 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5167 Don't allow an undeclared string literal, but allow a string literal to
5168 be used before its declaration.
5169 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5170 symbols_pack complained.
5171 * src/symtab.c (symbol_new): Don't count a string literal as a new
5173 (symbol_class_set): Don't count a string literal as a new token, and
5174 don't assign it a symbol number since symbol_make_alias does that.
5175 (symbol_make_alias): It's not necessary to decrement the symbol and
5176 token counts anymore. Don't assume that an alias declaration occurs
5177 before any uses of the identifier or string, and thus don't assert that
5178 one of them has the highest symbol number so far.
5179 (symbol_check_alias_consistency): Complain if there's a string literal
5180 that wasn't declared as an alias.
5181 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5182 symbol_pack asserts that every token has been assigned a symbol number
5183 although undeclared string literals have not.
5184 * tests/regression.at (String alias declared after use, Undeclared
5185 string literal): New test cases.
5186 (Characters Escapes, Web2c Actions): Declare string literals as
5188 * tests/sets.at (Firsts): Likewise.
5190 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5192 In the grammar scanner, STRING_FINISH unclosed constructs and return
5193 them to the parser in order to improve error messages.
5194 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5195 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5196 * tests/input.at (Unclosed constructs): New test case.
5197 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5200 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5203 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5205 Handle string aliases for character tokens correctly.
5206 * src/symtab.c (symbol_user_token_number_set): If the token has an
5207 alias, check and set its alias's user token number instead of its own,
5208 which is set to indicate the alias. Previously, every occurrence of
5209 the character token in the grammar overwrote that alias indicator with
5211 * tests/input.at (String aliases for character tokens): New test.
5213 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5215 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5217 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5219 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5220 to prevent failures when building on older platforms.
5221 Check for autopoint failure.
5222 Set XGETTEXT_OPTIONS to values that check for C format strings,
5223 so that translators are warned about them (this also helps
5224 prevent core dumps).
5226 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5227 function, since it simplifies our code a bit.
5229 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5230 rather than -W, so we don't get bogus warnings about sign comparisons.
5231 Add -Wpointer-arith, since that warning is useful (it reports code
5232 that does not conform to C89 and that some compilers reject).
5233 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5234 since it's no longer needed.
5236 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5238 Clean up scanners a bit.
5239 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5240 definitions so gcc won't warn when obstack_for_string is unused.
5241 * src/scan-code.l: config.h and system.h are already #include'd by
5242 scan-code-c.c, so get rid of them here.
5243 * src/scan-gram.l: Likewise.
5244 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5245 definitions rather than duplicating the rest of it.
5246 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5248 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5250 Suppress signed/unsigned comparison warnings for yycheck.
5251 * data/c.m4 (b4_safest_int_type): New macro.
5252 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5253 a signed int type, cast it to b4_safest_int_type first.
5254 * data/yacc.c: Likewise.
5255 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5258 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5260 * doc/bison.texinfo: Fix some typos.
5262 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5264 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5265 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5267 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5268 the latest gnulib does this a different way.
5269 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5270 translation was patched, so stop omitting it.
5272 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5274 Enable declaration of default %printer/%destructor. Make the parser
5275 use these for all user-declared grammar symbols for which the user does
5276 not declare a specific %printer/%destructor. Thus, the parser uses it
5277 for token 0 if the user declares it but not if Bison generates it as
5278 $end. Discussed starting at
5279 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5280 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5282 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5283 * NEWS (2.3+): Mention.
5284 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5285 declare a %destructor for a mid-rule's semantic value. It's just
5286 impossible to declare one specific to it.
5287 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5288 code. Describe default %destructor form.
5289 * src/parse-gram.y (grammar_declaration): Parse default
5290 %printer/%destructor declarations.
5291 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5292 and symbol_destructor_location_get rather than accessing the destructor
5293 and destructor_location members of struct symbol.
5294 (symbol_printers_output): Likewise but for %printer's.
5295 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5297 * src/symtab.c (default_destructor, default_destructor_location,
5298 default_printer, default_printer_location): New static global
5299 variables to record the default %destructor and %printer.
5300 (symbol_destructor_get, symbol_destructor_location_get,
5301 symbol_printer_get, symbol_printer_location_get): New functions to
5302 compute the appropriate %destructor and %printer for a symbol.
5303 (default_destructor_set, default_printer_set): New functions to set the
5304 default %destructor and %printer.
5305 * src/symtab.h: Prototype all those new functions.
5306 * tests/actions.at (Default %printer and %destructor): New test to
5307 check that the right %printer and %destructor are called, that they're
5308 not called for $end, and that $$ and @$ work correctly.
5309 (Default %printer and %destructor for user-declared end token): New
5310 test to check that the default %printer and %destructor are called for
5311 a user-declared end token.
5312 * tests/input.at (Default %printer and %destructor redeclared, Unused
5313 values with default %destructor): New tests to check related grammar
5314 warnings and errors.
5316 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5318 Clean up handling of %destructor for the end token (token 0).
5319 Discussed starting at
5320 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5322 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5324 Make the skeletons consistent in how they pop the end token and invoke
5326 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5327 state, which has token number 0, since this would invoke the
5328 %destructor for the end token.
5329 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5330 until after shifting the end token, or else it won't be popped.
5331 * data/yacc.c (yyparse): Likewise.
5333 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5334 it's the end token. Upon termination, destroy an unshifted lookahead
5335 even when it's the end token.
5336 * data/lalr1.cc (yy::parser::parse): Likewise.
5337 * data/yacc.c (yyparse): Likewise.
5339 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5340 value warnings for the end token when the user gives the end token a
5343 * tests/actions.at (Printers and Destructors): Test all the above.
5345 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5347 Update to latest gnulib and gettext versions.
5348 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5350 (gnulib_files): Add m4/warning.m4. Don't worry about files
5351 overwritten by autopoint.
5352 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5353 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5355 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5356 so that we can remove the intl files at a better time.
5357 (intl_files_to_remove): Remove aclocal.m4, since it gets
5358 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5359 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5360 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5361 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5362 Remove datarootdir hack; no longer needed.
5363 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5364 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5365 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5367 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5368 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5370 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5372 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5373 it with --assume-autoconf='latest-stable'.
5375 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5377 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5378 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5380 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5381 those from muscle_tab.c since the old ones are misleading.
5383 2006-07-13 Akim Demaille <akim@epita.fr>
5385 Support %define "KEY" {VALUE}.
5386 * src/scan-code.h, src/scan-code.l (translate_action)
5387 (translate_rule_action, translate_symbol_action, translate_code):
5388 Return char *, not const char *.
5389 * src/parse-gram.y (declaration): Rename as...
5390 (prologue_declaration): this.
5391 (string_content): Remove this nonterminal, use STRING.
5392 (braceless, content, content.opt): New nonterminal.
5394 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5396 * src/scan-gram.l (getargs.h): Don't include it.
5398 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5400 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5401 rather than a for-loop that declares a local bool variable. This
5402 should work around a compatibility problem with a Cray x1e C++
5403 compiler reported by Hung Nguyen in
5404 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5405 The for-loop was introduced in the 2004-11-17 change but I don't
5406 know why it was needed.
5408 2006-07-12 Akim Demaille <akim@epita.fr>
5410 * data/c.m4: Comment changes.
5412 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5414 * src/complain.c (error_message, ERROR_MESSAGE): New.
5416 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5417 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5419 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5421 * NEWS: Instead of %union, you can define and use your own union type
5422 YYSTYPE if your grammar contains at least one <type> tag.
5423 Your YYSTYPE need not be a macro; it can be a typedef.
5424 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5425 (Union Decl, Decl Summary): Document this.
5426 * data/glr.c (YYSTYPE): Implement this.
5427 * data/glr.cc (YYSTYPE): Likewise.
5428 * data/lalr1.cc (YYSTYPE): Likewise.
5429 * data/yacc.c (YYSTYPE): Likewise.
5430 * src/output.c (prepare): Output tag_seen_flag.
5431 * src/parse-gram.y (declaration, grammar_declaration):
5432 Use 'union_seen' rather than 'typed' to determine whether
5433 %union has been seen, since grammars can now be typed without
5435 (symbol_declaration, type.opt, symbol_def):
5436 Keep track of whether a tag has been seen.
5437 * src/reader.c (union_seen, tag_seen): New vars.
5439 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5440 * src/scan-code.l (untyped_var_seen): New variable.
5441 (handle_action_dollar): Adjust to above changes.
5442 (handle_action_dollar, handle_action_at):
5443 Improve overflow checking for outlandish numbers.
5444 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5445 avoid new diagnostics generated by above changes.
5446 * tests/regression.at (YYSTYPE typedef): Add test to check
5447 for type tags without %union.
5449 * src/symlist.c (symbol_list_length): Return int, not unsigned
5450 int, since callers expect int. This may need to get revisited
5451 once we have proper integer overflow checking.
5453 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5454 object is now static.
5456 * src/getargs.c (flags_argmatch): Return void, not int,
5457 to pacify ./configure --enable-gcc-warnings.
5459 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5460 since last_string is already defined to FLEX_PREFIX (last_string).
5462 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5464 Implement --warnings/-W.
5465 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5467 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5469 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5470 (warnings_args, warnings_types): New.
5471 (getargs, short_options, long_options): Accept -W/--warnings.
5472 Sort the options by alphabetical order, upper case letter right
5473 before its lower case.
5475 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5477 Change %merge result type clash warnings to errors. Discussed at
5478 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5479 * src/reader.c (record_merge_function_type): Use complain_at.
5480 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5481 declared later): Update test case results.
5483 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5485 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5486 to be in alphabetical order.
5487 (trace_args): Spelling fixes.
5489 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5491 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5492 so they don't collide with user-defined macros.
5493 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5494 this was never guaranteed, and now that we're using gnulib stdint,
5495 which defines int_fast16_t to long int, the problem is exposed.
5497 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5499 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5500 need the full POSIX semantics (and weren't implementing them
5503 Adjust to Autoconf 2.60 and today's gnulib.
5504 * bootstrap (gnulib_modules): Add stdint.
5505 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5506 no longer copies it.
5507 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5508 since stdint needs the former and wcwidth (which is now required
5509 by mbswidth) needs the latter.
5510 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5511 work around a compatibility glitch between gettext 0.14.6 and
5513 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5514 Do not check for uintptr_t, since new stdint module does the right
5516 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5517 Add stdint.h, stdint_.h, wcwidth.h.
5518 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5519 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5520 stdint.m4, wchar_t.m4, wcwidth.m4.
5521 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5522 usual order for ../lib/*.h files.
5523 (file_name_split): Use last_component, not base_name, to adjust
5525 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5526 for ../lib/*.h files.
5527 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5528 Define unconditionally, since we now assume the stdint module.
5529 * src/scan-skel.l: Include <dirname.h>.
5530 (BASE_QPUTS): Use last_component, not base_name.
5531 * src/system.h: Include <unlocked-io.h> in the usual order
5532 for ../lib/*.h files. Include <stdint.h> unconditionally,
5533 since we now use the stdint module.
5534 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5535 HAVE_UINTPTR_T, since we now use the stdint module.
5536 (base_name): Remove decl, since files now include <dirname.h>
5539 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5541 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5543 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5544 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5546 * tests/calc.at: Adjust.
5548 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5550 * data/c.m4 (b4_basename): New.
5551 (b4_syncline): Also output the location of its invocation (from
5553 (b4_user_action, b4_define_user_action, b4_user_actions)
5554 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5555 (b4_user_stype): New.
5556 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5558 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5560 In the grammar file, the first column is 1 not 0 on the first line as
5561 on every other line.
5562 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5563 * tests/input.at (Torturing the Scanner): Update output.
5565 * src/scan-gram.l (scanner_cursor): Declare it static.
5567 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5569 In warnings, say "previous declaration" rather than "first
5571 * src/symtab.c (redeclaration): Do that here.
5572 * src/reader.c (record_merge_function_type): In the case of a result
5573 type clash, report the previous declaration rather than the very first
5574 one in the grammar file.
5575 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5576 declared later): Add a third declaration to check this behavior.
5577 * tests/input.at (Incompatible Aliases): Update output.
5579 2006-06-27 Akim Demaille <akim@epita.fr>
5581 * doc/Doxyfile.in: New.
5582 * doc/Makefile.am: Use it.
5583 * src/lalr.h, src/symtab.h: Initial doxygenation.
5585 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5587 Don't miss %merge result type warnings just because the LHS types are
5588 declared after the %merge. This continues the effort of the previous
5590 * src/reader.c (get_merge_function): Don't set the merger type yet.
5591 (record_merge_function_type): New function for setting the merger type
5592 and checking for clashes.
5593 (grammar_current_rule_merge_set): Set the location of the %merge for
5595 (packgram): Invoke record_merge_function_type for each rule now that
5596 all symbol type declarations have been parsed.
5597 * src/reader.h (merger_list.type_declaration_location): New member
5598 storing the location of the first %merge from which the type for this
5599 merging function was derived.
5600 * src/symlist.h (symbol_list.merger_declaration_location): New member
5601 storing the location of a rule's %merge, if any.
5602 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5603 declared later): New test to catch the error fixed by the above patch.
5605 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5607 Get action warnings (grammar_rule_check) right even when symbol
5608 declarations appear after the rules. Discussed at
5609 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5611 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5612 Don't mistake the type of $$ in a midrule to be that of its parent
5614 * src/reader.c (grammar_current_rule_end): Don't invoke
5615 grammar_rule_check yet since not all symbol declarations may have been
5617 (grammar_midrule_action): Likewise.
5618 Don't record whether the midrule's $$ has been used yet since actions
5619 haven't been translated yet.
5620 Record the midrule's parent rule and its RHS index within the parent
5622 (grammar_current_rule_action_append): Don't translate the action yet
5623 since not all symbol declarations may have been parsed yet and, thus,
5624 warnings about types for $$, $n, @$, and @n can't be reported yet.
5625 (packgram): Translate the action and invoke grammar_rule_check now that
5626 all symbol declarations have been parsed.
5627 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5628 after parsing the entire grammar file, the symbol list here in the case
5629 of a midrule is actually the midrule's empty RHS, so reference its
5630 parent rule's RHS where necessary.
5631 On the other hand, now that you can already know it's a midrule, you
5632 aren't forced to think $$ has the same type as its parent rule's $$.
5633 (handle_action_at): In the case of a midrule, reference the parent rule
5635 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5637 (symbol_list_length): Now that this is invoked after all rules have
5638 been parsed, a NULL symbol (rather than a NULL symbol list node)
5639 terminates a rule. symbol_list_print already does this correctly.
5640 * src/symlist.h (symbol_list.midrule_parent_rule,
5641 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5642 remember their relationships with their parents.
5643 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5644 fixed by the above patch.
5645 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5647 (Unused values): ... this old test case and...
5648 (Unused values before symbol declarations): ... this new test case.
5649 This one is the same as `Unused values' except that all symbol
5650 declarations appear after the rules in order to catch the rest of the
5651 errors fixed by the above patch.
5653 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5656 * src/reader.c (current_rule): Declare it static since it's no longer
5657 used outside this file.
5658 (grammar_current_rule_action_append): Remove redundant arguments from
5659 translate_rule_action invocation.
5660 * src/reader.h (current_rule): Remove this unused extern.
5661 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5662 * src/scan-code.l (translate_rule_action): Likewise.
5664 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5666 Clean up yesterday's patch.
5667 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5669 * src/reader.c (grammar_current_rule_action_append): ... here for
5670 consistency with grammar_current_rule_symbol_append.
5671 * tests/regression.at (Braced code in declaration in rules section):
5672 Make yyerror and yylex static as usual.
5674 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5676 Fix bug that mistakes braced code in a declaration in the rules section
5677 to be a rule action. Mentioned at
5678 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5679 * src/scan-gram.l: Move midrule action detection from the start of the
5680 scanning of any braced code to...
5681 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5682 action. For readability, use $2 and @2 rather than the equivalent
5684 * tests/regression.at (Braced code in declaration in rules section):
5685 New test to catch the error fixed by the above patch.
5687 Work on code readability some.
5688 * src/scan-code.l (current_rule): Get rid of this misleading and
5689 redundant declaration: it's actually extern'ed in reader.h.
5690 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5691 translate_action): Add a rule argument and use it instead of the global
5693 (translate_rule_action): This already receives current_rule through an
5694 argument, so pass it on to translate_action instead of assigning
5695 current_rule to current_rule.
5696 (translate_symbol_action, translate_code): Pass rule = NULL to
5699 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5701 Rename %before-definitions to %start-header and %after-definitions to
5702 %end-header. Don't use these declarations to separate pre-prologue
5703 blocks from post-prologue blocks. Add new order-independent
5704 declarations %before-header and %after-header as alternatives to the
5705 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5706 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5707 * NEWS (2.3+): Update for these changes.
5708 * data/glr.c (b4_before_definitions): Update to...
5709 (b4_start_header): ... this.
5710 (b4_after_definitions): Update to...
5711 (b4_end_header): ... this.
5712 * data/glr.cc: Likewise.
5713 * data/lalr1.cc: Likewise.
5714 * data/yacc.c: Likewise.
5715 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5716 prologue blocks with %*-header declarations.
5717 (Calc++ Parser): Likewise.
5718 (Decl Summary): Update names.
5719 (Table of Symbols): Update description.
5720 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5721 (PERCENT_END_HEADER): ... this.
5722 (PERCENT_BEFORE_DEFINITIONS): Update to...
5723 (PERCENT_START_HEADER): ... this.
5724 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5725 (declaration): Update token names and m4 macro names.
5726 When parsing %end-header and %start-header, invoke translate_code
5727 before muscle_code_grow, and no longer set global booleans to remember
5728 whether these declarations have been seen.
5729 Parse new %after-header and %before-header.
5730 * src/reader.c (before_definitions, after_definitions): Remove.
5731 (prologue_augment): Accept a new bool argument to specify whether to
5732 augment the pre-prologue or post-prologue.
5733 * src/reader.h (before_definitions, after_definitions): Remove these
5735 (prologue_augment): Add new bool argument.
5736 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5737 (PERCENT_END_HEADER): ... this.
5738 (PERCENT_BEFORE_DEFINITIONS): Update to...
5739 (PERCENT_START_HEADER): ... this.
5740 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5741 * tests/actions.at (Printers and Destructors): Update names.
5743 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5745 Add comparison operators for C++ location classes. Discussed at
5746 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5747 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5748 declaration indicating whether filename_type has an operator==. If
5749 filename_type is `std::string', it defaults to `1', `0' otherwise.
5750 * data/location.cc: Iff b4_define_location_comparison is `1', add
5751 operator== and operator!= for class position and for class location.
5754 * src/scan-action.l: Remove unused file.
5755 * src/symtab.c (symbol_printer_set): Use printer_location not
5756 destructor_location.
5757 * src/symtab.h (struct symbol): Replace incorrect source comment for
5759 * tests/input.at (Incompatible Aliases): Update output with correct
5762 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5764 Don't put the pre-prologue in the header file. For the yacc.c code
5765 file and the glr.c header and code files, move the pre-prologue before
5766 the token definitions. Add new %before-definitions and
5767 %after-definitions to declare code that will go in both the header file
5768 and code file. Discussed at
5769 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5770 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5772 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5773 * NEWS (2.3+): Describe these changes.
5774 * data/glr.c (b4_pre_prologue): Move from within to before...
5775 (b4_shared_declarations): ... this.
5776 Add new b4_before_definitions before b4_token_enums.
5777 Add new b4_after_definitions at the end.
5778 * data/glr.cc (b4_pre_prologue): Replace with...
5779 (b4_before_definitions): ... this in the header file.
5780 (b4_after_definitions): New near the end of the header file.
5781 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5782 code file right before including the header file.
5783 (b4_before_definitions): New in the previous position of
5784 b4_pre_prologue in the header file.
5785 (b4_after_definitions): New near the end of the header file.
5786 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5787 (b4_token_enums_defines): In the code file, move to right before
5788 YYSTYPE for consistency with the header file.
5789 (b4_before_definitions): New right before b4_token_enums_defines in
5790 both the header and code file.
5791 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5792 header and code file.
5793 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5794 of prologues for %union dependencies.
5795 (Decl Summary): In %defines description, mention the effect of
5796 %before-definitions and %after-definitions on the header file.
5797 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5798 than in the pre-prologue so that make check succeeds.
5799 (Table of Symbols): Add entries for %before-definitions and
5801 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5802 %before-definitions.
5803 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5804 (declaration): Parse those declarations and append to
5805 b4_before_definitions and b4_after_definitions, respectively.
5806 * src/reader.c (before_definitions, after_definitions): New bools to
5807 track whether those declarations have been seen.
5808 (prologue_augment): Add to the post-prologue if %union,
5809 %before-definitions, or %after-definitions has been seen.
5810 * src/reader.h (before_definitions, after_definitions): New extern's.
5811 * src/scan-gram.l: Scan the new declarations.
5812 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5813 prologue block in a %before-definitions or a %after-definitions based
5814 on whether the %union is declared.
5815 * tests/regression.at (Early token definitions with --yacc, Early token
5816 definitions without --yacc): Move tests for token definitions into the
5817 post-prologue since token names are no longer defined in the
5820 2006-06-20 Akim Demaille <akim@epita.fr>
5822 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5823 (symbol_get): Use it.
5824 * src/parse-gram.y: Use it.
5826 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5828 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5829 build succeeds when configured with --enable-gcc-warnings.
5831 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5833 * src/parse-gram.y (char_name): New function.
5834 (CHAR, STRING, string_content): For %printer, properly escape.
5835 (ID): Prefer fputs to fprintf.
5836 (id): Reindent to be consistent with other rules.
5837 Properly quote char.
5839 The Translation Project changed its way of publishing translations
5840 to maintainers. I haven't received any responses to my request
5841 for supporting the old way, or for documenting the new way. I
5842 have modified 'bootstrap' to use screen scraping
5843 (in this case, HTML scraping). This is unreliable and inelegant,
5844 but I don't see any better way. Yuck.
5845 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5846 (get_translations): New function, which uses HTML scraping to
5847 deduce locations of latest translations.
5848 Use this function to grab both bison and bison-runtime .po files.
5849 Don't bother priming the pump for the runtime-po domain any more,
5850 as it's now translated better than bison is.
5852 2006-06-19 Akim Demaille <akim@epita.fr>
5854 * src/scan-gram.l: No longer "parse" things after `%union' until
5855 `{'. Rather, return a single "%union" token.
5856 No longer make symbols: return strings, and leave the conversion
5857 to symbols to the parser.
5858 (SC_PRE_CODE, token_type): Remove.
5859 * src/parse-gram.y (%union): New field `character'.
5862 (ID, ID_COLON): Now that the scanner no longer makes them
5863 identifiers, adjust all uses to invoke symbol_get.
5864 (id_colon): New, wraps the conversion from string to symbol.
5865 (%union): Accept a possible union_name.
5866 (symbol): Now can be a char.
5867 * data/c.m4 (b4_union_name): Leave a default value.
5868 * data/glr.c, data/yacc.c: Use it.
5870 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5872 For associating token numbers with token names for "yacc.c", don't use
5873 #define statements unless `--yacc' is specified; always use enum
5874 yytokentype. Most important discussions start at:
5875 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5876 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5878 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5879 * NEWS (2.3+): Mention.
5880 * data/c.m4 (b4_yacc_if): New.
5881 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5883 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5884 on token name definitions.
5885 * src/getargs.c (usage): Capitalize `Yacc' in English.
5886 * src/output.c (prepare): Define b4_yacc_flag.
5887 * tests/regression.at (Early token definitions): Test that tokens names
5888 are defined before the pre-prologue not just before the post-prologue.
5889 Remove this test case and copy to...
5890 (Early token definitions with --yacc): ... this to test #define's.
5891 (Early token definitions without --yacc): ... and this to test enums.
5893 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5895 * NEWS: Reword the post-2.3 change to not be so optimistic about
5896 removing the old "look-ahead" spelling.
5897 Update previous look-ahead/lookahead change reports.
5898 * REFERENCES: look-ahead -> lookahead (since that's
5899 what he actually wrote).
5900 * doc/refcard.tex: look ahead -> lookahead,
5901 look-ahead -> lookahead
5903 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5905 For consistency, use `lookahead' instead of `look-ahead' or
5906 `look_ahead'. Discussed starting at
5907 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5909 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5910 * NEWS: For the next release, note the change to `--report'.
5911 * TODO, doc/bison.1: Update English.
5912 * doc/bison.texinfo: Update English.
5913 (Understanding Your Parser, Bison Options): Document as
5914 `--report=lookahead' rather than `--report=look-ahead'.
5915 * src/conflicts.c: Update English in comments.
5916 (lookahead_set): Rename from look_ahead_set.
5917 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5918 (resolve_sr_conflict): Rename local look_ahead_tokens to
5919 lookahead_tokens, and update other uses.
5920 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5921 count_rr_conflicts, conflicts_free): Update uses.
5922 * src/getargs.c (report_args): Move "lookahead" before alternate
5924 (report_types): Update uses.
5925 (usage): For `--report' usage description, state `lookahead' spelling
5926 rather than `look-ahead'.
5927 * src/getargs.h (report.report_lookahead_tokens): Rename from
5928 report_look_ahead_tokens.
5929 * src/lalr.c: Update English in comments.
5930 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5931 (state_lookahead_tokens_count): Rename from
5932 state_look_ahead_tokens_count.
5933 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5934 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
5935 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5937 Update English in output.
5938 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
5939 * src/print.c: Update English in comments.
5940 (lookahead_set): Rename from look_ahead_set.
5941 (print_reduction): Rename argument lookahead_token from
5943 (print_core, state_default_rule, print_reductions, print_results):
5945 * src/print_graph.c: Update English in comments.
5946 (print_core): Update uses.
5947 * src/state.c: Update English in comments.
5948 (reductions_new): Update uses.
5949 (state_rule_lookahead_tokens_print): Rename from
5950 state_rule_look_ahead_tokens_print, and update other uses.
5951 * src/state.h: Update English in comments.
5952 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
5953 (state_rule_lookahead_tokens_print): Rename from
5954 state_rule_look_ahead_tokens_print.
5955 * src/tables.c: Update English in comments.
5956 (conflict_row, action_row): Update uses.
5957 * tests/glr-regression.at
5958 (Incorrect lookahead during deterministic GLR,
5959 Incorrect lookahead during nondeterministic GLR): Rename
5960 print_look_ahead to print_lookahead.
5961 * tests/torture.at: Update English in comments.
5962 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
5963 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
5964 (Many lookahead tokens): Update uses.
5965 * data/glr.c: Update English in comments.
5966 * lalr1.cc: Likewise.
5968 * src/conflicts.h: Likewise.
5969 * src/lalr.h: Likewise.
5970 * src/main.c: Likewise.
5971 * src/output.c: Likewise.
5972 * src/parse-gram.c: Likewise.
5973 * src/tables.h: Likewise.
5974 * tests/calc.at: Likewise.
5976 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
5978 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
5980 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
5982 * TODO: Add request from Nelson H. F. Beebe to be able to install
5983 Bison without installing the yacc script.
5985 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5987 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
5988 and yytext if they're already #define'd.
5989 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
5990 * src/scan-code-c.c: ... here.
5991 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
5994 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
5996 Get Bison to build again when configured with --enable-gcc-warnings.
5997 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
5999 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6000 loc argument as it shadows a global.
6001 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6004 * src/.cvsignore: Add scan-code.c.
6006 2006-06-07 Akim Demaille <akim@epita.fr>
6008 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6010 * src/scan-code.l: here.
6011 * tests/input.at (Torturing the Scanner): Fix another location
6014 2006-06-07 Akim Demaille <akim@epita.fr>
6016 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6018 2006-06-06 Akim Demaille <akim@epita.fr>
6020 Extract the parsing of user actions from the grammar scanner.
6021 As a consequence, the relation between the grammar scanner and
6022 parser is much simpler. We can also split "composite tokens" back
6024 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6025 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6027 * src/location.h, src/location.c (add_column_width)
6028 (location_compute): these.
6029 Fix the column count: the initial column is 0.
6030 (location_print): Be robust to ending column being 0.
6031 * src/location.h (boundary_set): New.
6032 * src/main.c: Adjust to scanner_free being renamed as
6034 * src/output.c: Include scan-code.h.
6035 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6037 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6038 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6039 which is now, again, a separate token.
6040 Adjust all dependencies.
6041 Whereever actions with $ and @ are used, use translate_code.
6042 (action): Remove this nonterminal which is now useless.
6043 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6044 (grammar_current_rule_action_append): Use translate_code.
6045 (packgram): Bound check ruleno, itemno, and rule_length.
6046 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6047 (last_string, last_braced_code_loc, max_left_semantic_context)
6048 (scanner_initialize, scanner_free, scanner_last_string_free)
6049 (gram_out, gram_lineno, YY_DECL_): Move to...
6050 * src/scan-gram.h: this new file.
6051 (YY_DECL): Rename as...
6053 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6054 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6055 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6056 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6057 Move these declarations, and...
6058 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6060 * src/flex-scanner.h: this new file.
6061 * src/scan-gram.l (rule_length, rule_length_overflow)
6062 (increment_rule_length): Remove.
6063 (last_braced_code_loc): Rename as...
6064 (gram_last_braced_code_loc): this.
6065 Adjust to the changes of the parser.
6066 Move all the handling of $ and @ into...
6067 * src/scan-code.l: here.
6068 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6069 (handle_action_dollar, handle_action_at): Move to...
6070 * src/scan-code.l: here.
6071 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6072 scan-code.h, scan-code-c.c, scan-gram.h.
6073 (EXTRA_bison_SOURCES): Add scan-code.l.
6074 (BUILT_SOURCES): Add scan-code.c.
6075 (yacc): Be robust to white spaces.
6077 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6078 * tests/regression.at: Adjust the column numbers.
6079 * tests/regression.at: Adjust the error message.
6081 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6083 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6084 Use Akim's wording from
6085 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6087 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6089 Between Bison releases, manually append `+' to the previous Bison
6090 release number, and use that as a signal to automatically print the
6091 ChangeLog's CVS Id keyword from --version. Discussed starting at
6092 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6093 * ChangeLog: Add Id header.
6094 * configure.ac (AC_INIT): Append `+' to `2.3'.
6095 * src/.cvsignore: Add revision.c.
6096 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6097 (BUILT_SOURCES): Add revision.c.
6098 (revision.c): New target rule. This file defines a new global variable
6099 named revision. It initializes it with either the Id from ChangeLog
6100 or, if VERSION doesn't contain `+', with the empty string.
6101 * src/getargs.c (version): Print the value of revision.
6102 * src/revision.h: Extern revision.
6104 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6106 * NEWS: Version 2.3.
6107 * configure.ac (AC_INIT): Likewise.
6109 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6111 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6112 with no arguments, not as an object-like macro. This is for
6113 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6114 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6115 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6118 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6120 * src/getargs.c (usage): Back out yesterday's modification of the
6121 --help output so that we don't have to wait for translation before
6124 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6126 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6127 Problem reported by Akim Demaille.
6129 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6131 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6133 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6135 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6136 generated source code. Problem reported by Frans Englich in
6137 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6139 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6141 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6142 shell, not within 'make', so that 'make' by an ordinary builder
6143 (using GNU make) does not worry about configuring gzip. This also
6144 works around a bug reported independently by Keith Thompson and by
6145 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6146 stderr rather than stdout, messing up the build logs.
6148 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6150 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6151 to make sure that YYID will never be unused. This fixes a 'make
6152 maintainer-check' failure caused by the recent changes to the 'Trivial
6153 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6155 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6157 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6159 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6160 state before an empty RHS is always resolved here. Only the location
6161 of that state is guaranteed to be resolved, and that's enough. This
6162 fixes the remaining bug reported by Derek M. Jones in
6163 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6164 * tests/glr-regression.at (Uninitialized location when reporting
6165 ambiguity): Test the above case.
6166 Also, the embedded comments in this test case claim it checks the case
6167 of an empty RHS that has inherited the initial location. However, the
6168 corresponding LHS was already resolved, so yyresolveLocations didn't
6169 actually have reason to modify it. Fix this by forcing
6170 nondeterministic operation at the beginning of the parse.
6172 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6174 * data/c.m4 (b4_yy_symbol_print_generate):
6175 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6176 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6177 of the bugs reported today by Derek M Jones in
6178 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6179 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6180 defined to be a type name without parens or brackets.
6181 (Location Type): Similarly for YYLTYPE.
6182 * tests/regression.at (Trivial grammars): Put in a test for this
6183 bug that will be caught by 'make maintainer-check' (though not,
6184 alas, by 'make check' unless your compiler is picky).
6186 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6188 * NEWS: Version 2.2.
6189 * configure.ac (AC_INIT): Likewise.
6191 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6193 * data/glr.c (yyreportTree): Make room in yystates for the state
6194 preceding the RHS. This fixes the segmentation fault reported by Derek
6196 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6197 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6198 to the user. Reported for yyreportTree by Derek M. Jones later in the
6200 * THANKS: Add Derek M. Jones.
6201 Update my email address.
6202 Fix typo in Steve Murphy's name.
6204 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6206 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6207 checking against YYLAST that caused the parser to miss a potential
6208 alternative in its diagnostic.
6209 Problem reported by Maria Jose Moron Fernandez in
6210 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6211 * data/lalr1.cc (yysyntax_error_): Likewise.
6212 * data/yacc.c (yysyntax_error): Likewise.
6213 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6214 tokens, in case we run into an older C compiler.
6215 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6216 Use them to check for the off-by-one error fixed above.
6218 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6219 YYSIZE_T, not size_t.
6220 * tests/regression.at (Trivial grammars): New test, to catch
6221 the error fixed by the above patch.
6223 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6225 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6227 Reported by Steve Murphy.
6229 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6231 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6232 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6234 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6236 Implement --trace=m4.
6237 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6238 * src/output.c (output_skeleton): When set, pass -dV to m4.
6240 Factor the handling of flags in m4.
6241 * src/output.c (prepare): Rename the muscle names debug, defines,
6242 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6243 * data/c.m4: Adjust.
6244 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6245 Use b4_define_flag_if to define other b4_FLAG_if macros.
6246 (b4_location_if): As a consequence, rename as...
6247 (b4_locations_if): this, for consistency.
6248 Adjust all the skeletons.
6250 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6252 * etc/bench.pm: Shorten bench names.
6254 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6256 * src/output.h, src/output.c (error_verbose): Move to...
6257 * src/getargs.h, src/getargs.c: here.
6259 Adjust dependencies.
6261 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6263 * data/c.m4 (b4_copyright): Put the special exception for Bison
6264 skeletons here, so we don't have to put it in each skeleton. All
6265 uses changed. Suggested by Akim Demaille. Also, wrap the
6266 copyright notice, in case it is longer than 80 columns. Replace
6267 comma by newline after title.
6269 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6271 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6272 incompatibility, not a bug. Mention that it wasn't fixed as of
6275 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6277 * examples/extexi: Enforce the precedence of concatenation over
6279 Reported by Tommy Nordgren.
6281 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6283 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6284 with the member "token".
6285 Reported by Martin Nylin.
6287 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6289 * data/glr.c: Switch to Bison 2.2 special-exception language in
6290 the copyright notice. Use more-regular format for titles and
6292 * data/glr.cc: Likewise.
6293 * data/location.cc: Likewise.
6294 * data/yacc.cc: Likewise.
6295 * doc/bison.texinfo (Conditions): Document this.
6296 * NEWS: likewise. Upgrade version to 2.2.
6298 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6300 * data/glr.cc: Remove dead code.
6302 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6304 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6305 that variable and the line breaks the bootstrap. Problem reported
6306 by Juan M. Guerrero.
6308 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6310 * doc/bison.texinfo (Multiple start-symbols): New.
6312 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6314 * etc/README, etc/bench.pl: New.
6316 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6318 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6320 Reported by Mickael Labau.
6321 * tests/input.at (Torturing the Scanner): Test it.
6323 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6325 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6326 Problem reported by Bob Rossi.
6328 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6330 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6331 and didn't really work.
6332 For the index, use @ifnotinfo, not @iftex.
6333 Minor cleanups of spacing and terminology.
6335 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6337 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6338 of AT_NAME_PREFIX when %name-prefix is not used.
6340 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6342 Apply --prefix to C++ skeletons too: they change the namespace.
6343 The test suite already exercize these cases.
6344 * data/c++.m4 (b4_namespace): New.
6345 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6346 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6347 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6348 * doc/bison.texinfo: Document it.
6349 (Option Cross Key): Use @multitable in all formats. It looks
6350 nicer, even in TeX outputs.
6351 (Rules): Use the same code whatever the output type is.
6352 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6353 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6354 * tests/calc.at: Use it, instead of hard coding `yy'.
6356 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6358 * TODO: Remove dead items.
6360 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6362 * doc/FAQ: Remove, merged into...
6363 * doc/bison.texinfo (FAQ): this.
6364 * doc/Makefile.am (EXTRA_DIST): Adjust.
6366 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6368 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6370 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6371 * doc/bison.texinfo (Calc++ Scanner): Use it.
6373 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6375 Fix two nits reported by twlevo, plus one more that I discovered.
6377 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6378 this is the usual Bison style.
6379 * src/location.h (location_print): Likewise.
6381 * src/reader.h (token_name): Likewise.
6383 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6385 Fix some nits reported by twlevo.
6386 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6387 and "POSIX". Use more-modern syntax for URLs. Mention C++
6388 and ask for Java. Don't hardwire OS version numbers. Add
6390 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6391 * src/conflicts.c (solved_conflicts_obstack): Now static.
6393 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6395 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6396 page. Say "you can use it" not "you may use it" as on the web page;
6397 we're describing capabilities not granting permission.
6399 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6401 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6402 shadowing warnings. Use usual patter for iterating through RHS.
6403 * tests/glr-regression.at
6404 (Uninitialized location when reporting ambiguity):
6405 Modify yylex so that it uses its argument, rather than trying
6406 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6407 const char -> char const.
6409 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6410 Don't use tabs inside commands; it messes up 'ps'.
6411 Problem reported by twlevo.
6413 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6415 * tests/glr-regression.at (Uninitialized location when reporting
6416 ambiguity): New test case.
6417 * data/glr.c (yyresolveLocations): New function, which uses
6419 (yyresolveValue): Invoke yyresolveLocations before reporting an
6421 * doc/bison.texinfo (Default Action for Locations): Note
6422 YYLLOC_DEFAULT's usage for ambiguity locations.
6423 (GLR Semantic Actions): Cross-reference those notes.
6425 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6427 * tests/glr-regression.at (Leaked semantic values when reporting
6428 ambiguity): Remove unnecessary union and type declarations.
6429 (Leaked lookahead after nondeterministic parse syntax error): New test
6431 * data/glr.c (yyparse): Check for zero stacks remaining before
6432 attempting to shift the lookahead so that you don't lose it.
6434 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6436 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6437 * tests/glr-regression.at (Leaked semantic values when reporting
6438 ambiguity): New test case.
6439 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6440 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6441 now unnecessary yystackp parameter.
6442 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6443 destructors can be called.
6445 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6446 in existing testcases.
6448 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6450 Don't leak semantic values for parent RHS when a user action cuts the
6451 parser, and clean up related code a bit.
6452 * tests/glr-regression.at (Leaked merged semantic value if user action
6453 cuts parse): Rename to...
6454 (Leaked semantic values if user action cuts parse): ... this. Add check
6455 for leaked parent RHS values.
6456 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6457 between an unresolved state (non-empty chain of semantic options) and
6458 an incomplete one (signaled by an empty chain).
6459 (yyresolveStates): Document the interface. Move all manipulation of a
6460 successfully or unsuccessfully resolved yyGLRState to...
6461 (yyresolveValue): ... here so that yyresolveValue always leaves a
6462 yyGLRState with consistent data and thus is easier to understand.
6463 Remove the yyvalp and yylocp parameters since they are always just
6464 taken from the yys parameter. When reporting a discarded merged value
6465 in debugging output, note that it is incompletely merged. Document the
6467 (yyresolveAction): If resolving any of the RHS states fails, destroy
6468 them all rather than leaking them. Thus, as long as user actions are
6469 written to clean up the RHS correctly, yyresolveAction always cleans up
6470 the RHS of a semantic option. Document the interface.
6472 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6474 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6475 led to a segmentation fault in GNU Pascal. Problem reported
6478 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6480 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6481 mid-rule action inside a nonterminal symbol in order to declare a
6482 destructor for its semantic value.
6484 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6486 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6487 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6488 __cplusplus && ! defined _STDLIB_H && !
6489 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6490 defined free))]: Include <stdlib.h> rather than rolling our own
6491 declarations of malloc and free, to avoid problems with
6492 incompatible declarations (using 'throw') C++'s stdlib.h. This
6493 should fix Debian bug 340012
6494 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6495 reported by Guillaume Melquiond.
6497 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6499 * NEWS: Clarify symbols versus types in unused-value warnings.
6501 * configure.ac (AC_INIT): Bump version number.
6503 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6505 * NEWS: Version 2.1a.
6506 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6507 since C99 requires this.
6509 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6511 * m4/c-working.m4: New file.
6512 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6514 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6516 * Makefile.maint: Merge from coreutils.
6518 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6520 More portability fixes for problems summarized by Nelson H. F. Beebe.
6522 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6523 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6524 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6525 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6526 messes up because C++ code is compiled in 32-bit mode but linked
6529 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6531 More portability fixes for problems summarized by Nelson H. F. Beebe.
6533 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6534 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6536 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6537 nodist_PROGRAMS, since we don't need to actually compile the
6538 example if we're just doing a plain 'make'. This avoids bothering
6539 the installer unnecessarily about problems due to weird C++
6542 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6544 More portability fixes for problems summarized by Nelson H. F. Beebe.
6546 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6547 than #include "...", and compile with -I'.'. The old method was
6548 not portable, according to Posix and the C standard, and it does
6549 not work with Sun C 5.7, where previous #line directives affect
6550 the working directory used in later #include "..." directives.
6552 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6554 Various DJGGP specific issues in /djgpp
6556 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6558 More portability fixes for problems summarized by Nelson H. F. Beebe.
6560 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6561 '#include <map>' works and that you can apply ++ to iterators.
6563 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6565 Work around portability problems summarized by Nelson H. F. Beebe in
6566 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6568 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6569 that '#include <string>' works.
6571 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6572 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6573 "warning: sorry: semantics of inline function static data `const
6574 unsigned char translate_table[262]' are wrong (you'll wind up with
6577 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6578 or, xor to not_, and_, or_, and xor_, respectively. This works
6579 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6580 random system header somewhere that includes the equivalent of
6583 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6584 -E" works; it apparently doesn't work with PathScale EKO Compiler
6587 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6589 During deterministic GLR operation, user actions should be able to
6590 influence the parse by changing yychar. To make this easier to fix and
6591 to make glr.c easier to evolve in general, don't maintain yytoken in
6592 parallel with yychar; just compute yytoken when needed.
6593 * tests/glr-regression.at (Incorrect lookahead during deterministic
6594 GLR): Check that setting yychar in a user action has the intended
6596 * data/glr.c (yyGLRStack): Remove yytokenp member.
6597 (yyclearin): Don't set *yytokenp.
6598 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6599 yychar rather than *yytokenp to determine the current lookahead.
6600 Compute yytoken locally when needed.
6601 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6604 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6605 after `--report' documentation.
6607 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6609 * src/parse-gram.y (grammar_declaration): Location of printer
6610 symbol is @1, not list->location. Bug reported by twlevo.
6611 * tests/input.at (Incompatible Aliases): Adjust to above change.
6613 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6615 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6616 all the test at once. This makes the output easier to read in the
6619 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6620 got from <http://bro-ids.org/download.html>. The bug is that
6621 when two actions appeared in succession, the second one was
6622 scanned before the first one was added to the grammar rule
6623 as a midrule action. Bison then output the incorrect warning
6624 "parse.y:905.17-906.36: warning: unused value: $3".
6625 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6626 associated with a value.
6627 (rhs): Don't invoke grammar_current_rule_action_append.
6628 (action): Invoke it here instead.
6629 * src/reader.c (grammar_midrule_action): Now extern.
6630 (grammar_current_rule_action_append): Don't invoke
6631 grammar_midrule_action; that is now the scanner's job.
6632 * src/reader.h (last_string, last_braced_code_loc):
6633 (grammar_midrule_action): New decls.
6634 * src/scan-gram.l (last_string): Now extern, sigh.
6635 (last_braced_code_loc): New extern variable.
6636 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6637 rule already has an action.
6638 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6639 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6640 Add some tests to check that the above changes fixed the bug.
6642 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6644 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6645 All used changed. Check whether the symbol has a destructor,
6646 not whether it is typed.
6647 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6648 that the values are still reported as unused. All line numbers
6651 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6653 Work around a bug in bro 0.8, which underparenthesizes its
6654 definition of YYLLOC_DEFAULT.
6655 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6657 * data/lalr1.cc: Likewise.
6658 * data/yacc.cc: Likewise.
6660 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6662 Work around a bug in Pike 7.0, and give the Pike folks a
6663 better way to override the usual int widths.
6664 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6665 user can override the types.
6666 (short): #undef, to work around a bug in Pike 7.0.
6667 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6668 (union yyalloc.yyss): Use yytype_int16 rather than short.
6670 (yysigned_char): Remove.
6671 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6672 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6673 * tests/regression.at (Web2c Actions): Adjust to above changes.
6675 * src/reader.c (check_and_convert_grammar): New function.
6676 (reader): Close the input file even if something went wrong during
6677 parsing. Minor file descriptor leak reported by twlevo.
6679 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6680 to pacify gcc -Wswitch-default.
6681 * src/scan-gram.l (adjust_location): Use a default: break; case
6682 to pacify gcc -Wswitch-default.
6683 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6684 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6685 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6686 Move these decls to scan-skel.l, since they don't need to be
6688 * src/scan-skel.l: Accept the above decls.
6689 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6692 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6694 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6695 since we don't want to insist on a version number at the start
6696 of the changelog every time.
6697 * Makefile.maint: Sync from coreutils a bit better.
6698 (sc_trailing_blank): Renamed from sc_trailing_space.
6700 (sc_no_if_have_config_h, sc_require_config_h):
6701 (sc_prohibit_assert_without_use): New rules.
6702 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6703 (sc_dd_max_sym_length): Fix leading spaces in rule.
6704 (sc_system_h_headers): Prefix with @.
6705 (sc_useless_cpp_parens, m4-check): Output line numbers.
6706 (changelog-check): Allow version only in head.
6707 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6708 satisfy new Makefile.maint rule.
6709 * data/glr.c: Likewise.
6710 * data/glr.cc: Likewise.
6711 * data/lalr1.cc: Likewise.
6712 * data/yacc.c: Likewise.
6713 * lib/ebitsetv.c: Likewise.
6714 * lib/lbitset.c: Likewise.
6715 * lib/subpipe.c: Likewise.
6716 * lib/timevar.c: Likewise.
6717 * src/system.h: Likewise.
6718 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6719 * djgpp/Makefile.maint: Add copyright notice.
6720 * djgpp/README.in: Likewise.
6721 * djgpp/config.bat: Likewise.
6722 * djgpp/config.site: Likewise.
6723 * djgpp/config_h.sed: Likewise.
6724 * djgpp/djunpack.bat: Likewise.
6725 * djgpp/config.sed: Fix copyright notice to match standard format.
6726 * djgpp/subpipe.h: Likewise.
6727 * lib/bitsetv-print.c: Likewise.
6728 * lib/bitsetv.c: Likewise.
6729 * lib/subpipe.h: Likewise.
6730 * lib/timevar.c: Likewise.
6731 * lib/timevar.h: Likewise.
6732 * djgpp/subpipe.c: Use standard recipe for config.h.
6733 * lib/abitset.c: Likewise.
6734 * lib/bitset.c: Likewise.
6735 * lib/bitset_stats.c: Likewise.
6736 * lib/bitsetv-print.c: Likewise.
6737 * lib/bitsetv.c: Likewise.
6738 * lib/ebitsetv.c: Likewise.
6739 * lib/get-errno.c: Likewise.
6740 * lib/lbitset.c: Likewise.
6741 * lib/subpipe.c: Likewise.
6742 * lib/timevar.c: Likewise.
6743 * lib/vbitset.c: Likewise.
6744 * tests/local.at: Likewise.
6745 * src/scan-gram.l: Don't include verify.h, since system.h does
6747 * .x-sc_require_config_h: New file.
6748 * .x-sc_unmarked_diagnostics: New file.
6750 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6752 Be a bit more systematic about using 'abort'.
6753 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6754 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6755 Put 'default: abort ();' before some other case, to satisfy older
6757 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6758 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6759 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6760 * src/conflicts.c (resolve_sr_conflict): Likewise.
6761 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6762 (get_decision_str, get_orientation_str, get_node_alignment_str):
6763 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6764 (get_linestyle_str, get_arrowstyle_str): Likewise.
6765 * src/conflicts.c (resolve_sr_conflict):
6766 Use a default case rather than one for the one remaining enum
6767 value, to catch invalid enum values as well.
6768 * src/lalr.c (set_goto_map, map_goto):
6769 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6770 * src/nullable.c (nullable_compute, token_definitions_output):
6772 * src/reader.c (packgram, reader): Likewise.
6773 * src/state.c (transitions_to, state_new, state_reduction_find):
6775 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6776 (symbol_pack): Likewise.
6777 * src/tables.c (conflict_row, pack_vector): Likewise.
6778 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6779 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6780 * src/system.h: Don't include <assert.h>.
6781 (assert): New macro.
6783 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6784 (Destructor Decl, Parser Function, Pure Calling):
6785 Describe rules for braces inside C code more carefully.
6787 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6789 Fix some porting glitches found by Nelson H. F. Beebe.
6790 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6791 compilers that don't understand that abort () does not return.
6792 * src/state.c (transitions_to): Likewise.
6793 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6794 that '#include <cstdlib>' works.
6795 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6796 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6797 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6798 for the benefit of some pre-C99 compilers.
6800 * bootstrap: Undo changes to gnulib files that autoreconf made.
6802 Minor fixups to get 'make maintainer-check' to work.
6803 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6804 with the new verify.h implementation.
6805 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6806 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6807 * data/yacc.c (YYUSE): Likewise.
6808 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6809 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6810 * src/parse-gram.y (declaration): Don't pass a string constant
6811 to a function that expects char *, since GCC might complain
6812 about the constant value.
6813 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6814 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6815 before #defining them.
6816 * tests/glr-regression.at
6817 (Incorrectly initialized location for empty right-hand side in GLR):
6818 In yyerror, use the msg arg.
6819 (Corrupted semantic options if user action cuts parse):
6820 (Incorrect lookahead during deterministic GLR):
6821 (Incorrect lookahead during nondeterministic GLR):
6822 Don't name a local var 'index'; it shadows string.h's 'index'.
6824 2006-01-19 Akim Demaille <akim@epita.fr>
6826 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6827 location, not just parts of it.
6829 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6831 * NEWS: Document the fact that multiple %unions are now allowed.
6832 * doc/bison.texinfo (Union Decl): Likewise.
6833 * TODO: This feature is now implemented, so remove it from
6836 * Makefile.maint: Merge with coreutils Makefile.maint.
6837 (CVS_LIST): Use build-aux version if available.
6838 (VERSION_REGEXP): New macro.
6839 (syntax-check-rules): Add sc_no_if_have_config_h,
6840 sc_prohibit_assert_without_use, sc_require_config_h,
6841 sc_useless_cpp_parens.
6842 (sc_obsolete_symbols): Check for O_NDELAY.
6843 (sc_dd_max_sym_length): Track coreutils.
6844 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6845 (sc_useless_cpp_parens): New rule.
6846 (news-date-check): Look for version or today's date.
6847 (changelog-check): Don't require version number near head.
6848 (copyright-check): Use current year instead of hardwiring 2005.
6849 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6850 (announcement): Add --gpg-key-ID.
6852 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6855 Avoid undefined behavior that addressed just before the start of an
6856 array. Problem reported by twlevo.
6857 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6858 * src/lalr.c (build_relations): Rely on new sentinel.
6859 * src/gram.c (gram_free): Adjust to new sentinel.
6861 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6863 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6864 yylookaheadNeeds. All uses updated.
6865 (yysplitStack): Rename local yynewLookaheadStatuses to
6866 yynewLookaheadNeeds.
6867 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6868 GLR): In comments, change `lookahead status' to `lookahead need'.
6870 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6872 * data/glr.c (yysplitStack): A little stylistic rewrite.
6874 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6876 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6878 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6880 * doc/bison.texinfo: Fix some typos.
6881 (GLR Semantic Actions): New subsection discussing special
6882 considerations because GLR semantic actions might be deferred.
6883 (Actions): Mention look-ahead usage of yylval.
6884 (Actions and Locations): Mention look-ahead usage of yylloc.
6885 (Special Features for Use in Actions): Add YYEOF entry and mention it
6886 in the yychar entry.
6887 In the yychar entry, remove mention of the local yychar case (pure
6888 parser) since this is irrelevant information when writing semantic
6889 actions and since it's already discussed in `Table of Symbols' where
6890 yychar is otherwise described as an external variable.
6891 In the yychar entry, don't call it the `current' look-ahead since it
6892 isn't when semantic actions are deferred.
6893 In the yychar and yyclearin entries, add note about deferred semantic
6895 Add yylloc and yylval entries discussing look-ahead usage.
6896 (Look-Ahead Tokens): When discussing yychar, don't call it the
6897 `current' look-ahead, and do mention yylval and yylloc.
6898 (Error Recovery): Cross-reference `Action Features' when mentioning
6900 (Table of Symbols): In the yychar entry, don't call it the `current'
6902 In the yylloc and yylval entries, mention look-ahead usage.
6904 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6906 * tests/glr-regression.at: Update copyright year to 2006.
6908 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6910 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6911 use during nondeterministic operation to track which stacks have
6912 actually needed the current lookahead.
6913 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6914 Allocate, deallocate, resize, and otherwise shuffle space for
6915 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6916 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6917 appropriately during nondeterministic operation.
6918 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6919 members to store the current lookahead to be used by the deferred
6921 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6922 from which the RHS is taken. Set the lookahead members of the new
6923 yySemanticOption according to the lookahead status for stack yyk.
6924 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6925 yyaddDeferredAction.
6926 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6927 members of yySemanticOption before invoking yyuserAction, and then set
6928 them back to their current values afterward.
6929 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6930 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6931 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6932 titles for consistency.
6933 (Leaked merged semantic value if user action cuts parse): In order to
6934 suppress lint warnings, use arguments in merge function, and assign
6935 char value < 128 in main.
6936 (Incorrect lookahead during deterministic GLR): New test case.
6937 (Incorrect lookahead during nondeterministic GLR): New test case.
6939 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6941 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
6942 !yyvaluep as signal that no semantic value is available to print.
6943 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
6944 to print a semantic value.
6946 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6948 * tests/glr-regression.at: For consistency with my newer test cases,
6951 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6953 * data/glr.c (yyresolveValue): When merging semantic options, if at
6954 least one user action succeeds but a later one cuts the parse, then
6955 destroy the semantic value before returning rather than leaking it.
6956 (yyresolveStates): If a user action cuts the parse and thus
6957 yyresolveValue fails, ignore the (unset) semantic value rather than
6958 corrupting the yyGLRState, and empty the semantic options list since
6959 the user actions should have called all necessary destructors.
6960 Simplify code with YYCHK.
6961 * tests/glr-regression.at (Corrupted semantic options if user action
6962 cuts parse): New test case.
6963 (Undesirable destructors if user action cuts parse): New test case.
6964 Before applying any of this patch, this test case never actually failed
6965 for me... but only because the corrupted semantic options usually
6967 (Leaked merged semantic value if user action cuts parse): New test
6970 2006-01-05 Akim Demaille <akim@epita.fr>
6972 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
6974 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
6976 * data/c.m4 (b4_c_modern): New macro, with a new provision for
6977 _MSC_VER. Problem reported by Cenzato Marco.
6978 (b4_c_function_def): Use it.
6979 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
6981 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
6982 than rolling our own.
6984 2006-01-04 Akim Demaille <akim@epita.fr>
6986 Also warn about non-used mid-rule values.
6987 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
6989 (symbol_list_new): Adjust.
6990 * src/reader.c (symbol_typed_p): New.
6991 (grammar_rule_check): Use it.
6992 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
6994 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
6996 * tests/actions.at (Exotic Dollars): Adjust.
6998 2006-01-04 Akim Demaille <akim@epita.fr>
7000 * src/reader.c (grammar_midrule_action): If $$ is set in a
7001 mid-rule, move the `used' bit to its lhs.
7002 * tests/input.at (Unused values): New.
7003 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7005 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7007 * doc/bison.texinfo (Bison Options): Say more accurately what
7009 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7010 about declarations in the grammar when in Yacc mode, as POSIX does
7011 not require a diagnostic when the grammar uses extensions.
7013 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7015 Warn about dubious constructions like "%token T T".
7017 * src/symtab.h (struct symbol.declared): New member.
7018 * src/symtab.c (symbol_new): Initialize it to false.
7019 (symbol_class_set): New arg DECLARING, specifying whether
7020 this is a declaration that we want to warn about, if there
7021 is more than one of them. All uses changed.
7023 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7024 Allow multiple %union directives, whose contents concatenate.
7025 * src/parse-gram.y (grammar_declaration): Likewise.
7026 Use muscle_code_grow, so that we don't need stype_line any more.
7029 * src/muscle_tab.c (muscle_grow): Fix comment.
7031 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7032 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7033 Update copyright year to 2006.
7035 2006-01-03 Akim Demaille <akim@epita.fr>
7037 Have glr.cc pass (some of) the calc.at tests.
7038 * data/glr.cc (b4_parse_param_orig): New.
7039 (b4_parse_param): Improve its definition, and bound it more
7040 clearly in the skeleton.
7041 (b4_epilogue): Append, instead of prepending, in order to keep
7043 Simplify the generation of auxiliary functions: locations and
7044 purity are mandated.
7045 (b4_global_tokens_and_yystype): Honor it.
7046 * data/location.cc (c++.m4): Don't include it.
7047 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7049 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7051 Be sure to initialize the first position's filename.
7052 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7054 (AT_CHECK_CALC_GLR_CC): New.
7055 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7057 2006-01-02 Akim Demaille <akim@epita.fr>
7059 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7061 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7062 * data/glr.cc: Do not include stack.hh.
7064 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7066 * data/glr.c: Reformat whitespace with tabs.
7067 (b4_lpure_formals): Remove this unused m4 macro.
7068 * tests/cxx-type.at: Reformat whitespace with tabs.
7069 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7070 since it's a member. Rename type to isNterm for clarity.
7072 2005-12-29 Akim <akim@sulaco.local>
7074 Let glr.cc catch up with symbol_value_print.
7075 * data/glr.cc (b4_yysymprint_generate): Replace by...
7076 (b4_yy_symbol_print_generate): this.
7077 (yy_symbol_print, yy_symbol_value_print): Declare them.
7079 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7081 * src/location.h (boundary): Note that a line or column equal
7082 to INT_MAX indicates an overflow.
7083 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7084 (rule_length_overflow, increment_rule_length, add_column_width):
7086 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7087 (<SC_BRACED_CODE>"}"):
7088 Use increment_rule_length rather than incrementing it by hand.
7089 (adjust_location, handle_syncline): Diagnose overflow.
7090 (handle_action_dollar, handle_action_at):
7091 Fix bug with monstrosities like $-2147483648.
7092 Remove now-unnecessary checks.
7093 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7094 (convert_ucn_to_byte): Verify assumptions.
7095 (handle_syncline): New arg LOC. All callers changed.
7096 Don't store through a value derived from char const * pointer.
7098 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7101 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7103 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7104 Remove unnecessary forward static decls.
7106 2005-12-27 Akim Demaille <akim@epita.fr>
7108 * src/reader.c (grammar_current_rule_check): Also check that $$
7110 Take the rule to check as argument, hence rename as...
7111 (grammar_rule_check): this.
7112 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7114 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7115 (grammar_midrule_action, grammar_symbol_append): Now static.
7116 * tests/torture.at (input): Don't rely on the default action
7117 being always performed.
7118 * tests/calc.at: "Set" $$ even when the action is "cut" with
7120 * tests/actions.at (Exotic Dollars): Instead of using unused
7121 values, check that the warning is issued.
7123 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7125 * NEWS: Improve wording for unused-value warnings.
7127 2005-12-22 Akim Demaille <akim@epita.fr>
7129 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7130 (b4_yysymprint_generate): Rename as...
7131 (b4_yy_symbol_print_generate): this.
7132 Generate yy_symbol_print instead of yysymprint.
7133 Generate also yy_symbol_value_print, and use it.
7135 2005-12-22 Akim Demaille <akim@epita.fr>
7137 * NEWS: Warn about unused values.
7138 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7140 (symbol_list_n_get, symbol_list_n_used_set): New.
7141 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7142 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7143 * src/reader.c (grammar_current_rule_check): Check that values are
7145 * src/symtab.c (symbol_print): Accept 0.
7146 * tests/existing.at: Remove the type information.
7148 Remove useless actions (beware of mid-rule actions: perl -000
7149 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7150 * tests/actions.at (Exotic Dollars): Use unused values.
7151 * tests/calc.at: Likewise.
7152 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7155 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7158 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7160 Undo 2005-12-01 tentative license wording change. The wording is
7161 still being reviewed by the lawyers, and we don't want to wait for
7162 them before publishing a test release. For now, revert to the
7164 * NEWS: Undo 2005-12-01 change.
7165 * data/glr.c: Revert to previous license wording.
7166 * data/glr.cc: Likewise.
7167 * data/lalr1.cc: Likewise.
7168 * data/location.cc: Likewise.
7169 * data/yacc.c: Likewise.
7171 * NEWS: Reword %destructor vs YYABORT etc.
7172 * data/glr.c: Use American spacing, for consistency.
7173 * data/glr.cc: Likewise.
7174 * data/lalr1.cc: Likewise.
7175 * data/yacc.c: Likewise.
7176 * data/yacc.c: Reformat comments slightly.
7177 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7178 for consistency. Fix some spelling errors and reword recently-included
7180 * tests/cxx-type.at: Cast results of malloc, for C++.
7182 2005-12-21 Joel E. Denny <address@hidden>
7184 * tests/cxx-type.at: Construct a tree, count the parents of shared
7185 nodes, and free each node once and only once. Previously, the memory
7186 for semantic values was leaked instead.
7188 2005-12-21 Joel E. Denny <address@hidden>
7190 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7191 (yylval, yylloc): If pure, #define to yystackp->yyval and
7192 yystackp->yyloc similar to yychar and yynerrs.
7193 (yyparse): If pure, remove local yylval and yylloc. Add local
7194 yystackp to accommodate pure definitions of yylval and yylloc.
7195 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7196 yylvalp and yyllocp to &yylval and &yylloc.
7197 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7198 namespace. Previously, nerrs and char were missing, but lval and lloc
7200 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7201 yylvalp and yyllocp parameters since, if pure, these are now always
7202 accessible through yystackp. If not pure, they are still accessible
7204 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7205 `if (YYID (N))' to pacify lint.
7207 2005-12-21 Akim Demaille <akim@epita.fr>
7209 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7210 destroy the RHS symbols of a rule.
7211 * data/yacc.c (yylen): Initialize to 0.
7212 Keep its value to the number of items to possibly shift.
7213 In particular, a regular successful parse that ends on YYFINAL by
7214 a (internal) YYACCEPT must not have yylen != 0.
7215 (yyerrorlab, yyreturn): Pop the RHS.
7216 Reorder a bit to emphasize the `shifting' bits of code.
7217 (YYPOPSTACK): Now accept a number of items to pop.
7218 * data/lalr1.cc: Likewise.
7219 * data/glr.c: Formatting changes.
7220 Use goto instead of fall through.
7221 * doc/bison.texinfo (Destructor Decl): Complete.
7223 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7225 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7226 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7227 * djgpp/config.bat: Replace every occurence of the file name
7228 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7229 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7230 * djgpp/config.sed: Replace every occurence of the file name
7231 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7232 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7233 * djgpp/djunpack.bat: DJGPP specific file.
7234 * djgpp/fnchange.lst: DJGPP specific file.
7235 * djgpp/README.in: Add new information about how to unpack the bison
7236 source on MSDOS and other systems which have 8.3 file name restrictions
7237 using djunpack.bat and fnchange.lst.
7239 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7241 * bootstrap (build_cvs_prefix): Remove; unused.
7242 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7243 when getting gnulib.
7245 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7247 * data/glr.c: Reorder typedef declarations for structs to match order
7248 of struct declarations.
7249 Rename yystack everywhere to yystackp except in yyparse where it's not
7251 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7253 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7254 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7255 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7258 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7260 * tests/sets.at (Accept): Fix typos in regular expression used to
7261 sed out the final state number.
7263 Work around portability problem on Solaris 10: flex-generated
7264 files include <stdio.h> before <config.h>, which messes up
7265 because the latter defines __EXTENSIONS__. Address the problem
7266 by creating two new little files that include <config.h> first,
7267 then include the flex-generated files. Rewrite everyone else
7268 to include <config.h> first, as well.
7269 * lib/timevar.c: Always include "config.h".
7270 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7271 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7272 (EXTRA_bison_SOURCES): New macro.
7273 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7274 * src/system.h: Don't include config.h.
7275 * src/LR0.c: Include <config.h> first.
7276 * src/assoc.c: Likewise.
7277 * src/closure.c: Likewise.
7278 * src/complain.c: Likewise.
7279 * src/conflicts.c: Likewise.
7280 * src/derives.c: Likewise.
7281 * src/files.c: Likewise.
7282 * src/getargs.c: Likewise.
7283 * src/gram.c: Likewise.
7284 * src/lalr.c: Likewise.
7285 * src/location.c: Likewise.
7286 * src/main.c: Likewise.
7287 * src/muscle_tab.c: Likewise.
7288 * src/nullable.c: Likewise.
7289 * src/output.c: Likewise.
7290 * src/parse-gram.y: Likewise.
7291 * src/print.c: Likewise.
7292 * src/print_graph.c: Likewise.
7293 * src/reader.c: Likewise.
7294 * src/reduce.c: Likewise.
7295 * src/relation.c: Likewise.
7296 * src/state.c: Likewise.
7297 * src/symlist.c: Likewise.
7298 * src/symtab.c: Likewise.
7299 * src/tables.c: Likewise.
7300 * src/uniqstr.c: Likewise.
7301 * src/vcg.c: Likewise.
7303 * src/parse-gram.y: Fix minor problems uncovered by lint.
7304 (current_lhs, current_lhs_location): Now static.
7305 (current_assoc): Remove unused variable.
7307 Cleanups so that Bison-generated parsers have less lint.
7308 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7309 Prepend /*ARGSUSED*/, for lint's sake.
7310 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7311 definition if 'lint' is defined.
7312 (YYID): New macro (or function, if lint).
7313 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7314 * data/yacc.c: Likewise.
7315 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7316 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7317 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7319 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7320 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7321 Use YYID(0) rather than 0, for lint.
7322 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7323 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7325 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7327 * tests/glr-regression.at
7328 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7329 Close memory leak reported by twlevo.
7331 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7333 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7335 (yyparse): Iterate another stack in order to call user destructors.
7336 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7338 (Duplicated user destructor for lookahead): This test now is expected
7341 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7343 * NEWS: Document the following change.
7344 * data/yacc.c: Say "parser skeleton" rather than "file", since
7345 it's no longer just a file.
7346 * data/glr.c: Grant a special exception for C GLR parsers, that
7347 reads like the already-existing exception for C LALR(1) parsers.
7348 * data/glr.cc: Likewise.
7349 * data/lalr1.cc: Likewise.
7350 * data/location.cc: Likewise.
7351 * data/yacc.c: Reword the "written by" statement to clarify that
7352 it was the parser skeleton, not the entire output file.
7353 * data/glr.c: Written by Paul Hilfinger.
7354 * data/glr.cc: Written by Akim Demaille.
7355 * data/lalr1.cc: Likewise.
7357 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7359 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7360 Fix typos in previous change that broke 'make check'.
7361 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7363 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7364 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7365 We can revert this once things settle down.
7367 * src/conflicts.c (conflicts_print): Don't print file name twice
7368 when %expect fails because there were no conflicts.
7369 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7371 * tests/conflicts.at (%expect not enough, %expect too much):
7372 (%expect with reduce conflicts): Adjust to new behavior.
7374 2005-11-18 Akim Demaille <akim@epita.fr>
7376 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7378 * NEWS: Document this.
7379 * doc/bison.texinfo (Expect Decl): Likewise.
7381 2005-11-16 Akim Demaille <akim@epita.fr>
7383 Generalize the display of semantic values and locations in traces.
7384 * data/glr.c (yy_reduce_print): Fix indices (again).
7385 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7387 * data/lalr1.cc (yyreduce_print): Rename as...
7388 (yy_reduce_print): this.
7389 Display values and locations.
7390 * data/yacc.c (yy_reduce_print): Likewise.
7391 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7392 (yysymprint): Move higher to be visible from yy_reduce_print).
7394 * tests/calc.at: Adjust the expected length of the traces.
7396 2005-11-14 Akim Demaille <akim@epita.fr>
7398 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7399 from 1 to N, while values and location start at 0.
7400 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7402 2005-11-14 Akim Demaille <akim@epita.fr>
7404 * data/glr.c (yy_reduce_print): Fix the $ number.
7406 2005-11-14 Akim Demaille <akim@epita.fr>
7408 "Use" parse parameters.
7409 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7410 * data/glr.c, data/glr.cc: Use them.
7411 * data/glr.c (YYUSE): Have a C++ definition that supports
7414 2005-11-14 Akim Demaille <akim@epita.fr>
7416 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7418 2005-11-14 Akim Demaille <akim@epita.fr>
7421 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7423 2005-11-12 Akim Demaille <akim@epita.fr>
7425 Let position and location be PODs.
7426 * data/location.cc (position::initialize, location::initialize): New.
7427 (position::position, location::location): Define only if
7428 b4_location_constructors is defined.
7429 * data/lalr1.cc (b4_location_constructors): Define it for backward
7431 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7433 2005-11-12 Akim Demaille <akim@epita.fr>
7435 * data/lalr1.cc: Move the body of the ctor and dtor into the
7436 parser file (instead of the header).
7437 Wrap the implementations in a "namespace yy".
7439 2005-11-12 Akim Demaille <akim@epita.fr>
7441 Have glr.c include its header file when created.
7442 * data/glr.c (b4_shared_declarations): New.
7443 Output them verbatim in the parser if !%defines, otherwise
7444 output then in the header file, and include it instead.
7446 2005-11-11 Akim Demaille <akim@epita.fr>
7448 * data/glr.c: Comment changes.
7450 2005-11-11 Akim Demaille <akim@epita.fr>
7452 When yydebug, report semantic and location values for reductions.
7453 * data/glr.c (yy_reduce_print): Report the semantic values and the
7455 (YY_REDUCE_PRINT): Adjust.
7456 (yyglrReduce): Use them.
7457 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7458 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7459 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7462 2005-11-10 Akim Demaille <akim@epita.fr>
7464 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7465 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7466 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7468 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7470 * m4/cxx.m4, examples/Makefile.am: Don't build
7471 examples/calc++ if no C++ compiler is available. (trivial change)
7473 2005-11-09 Akim Demaille <akim@epita.fr>
7475 * src/scan-skel.l: Use a couple of asserts.
7477 2005-11-03 Akim Demaille <akim@epita.fr>
7479 In some (weird) cases, the final state number is incorrect.
7480 Reported by Alexandre Duret-Lutz.
7481 * src/LR0.c (state_list_append): Remove the computation of
7483 (save_reductions): Do it here.
7484 (get_state): Alpha conversion.
7485 (generate_states): Use a for loop.
7486 * src/gram.h (item_number_is_rule_number)
7487 (item_number_is_symbol_number): New.
7488 * src/state.c: Use assert.
7489 * src/system.h: Include assert.h.
7490 * tests/sets.at (Accept): New.
7492 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7494 * data/glr.c (yyfill): Adjust comment.
7495 (yyresolveAction): Initialize default location properly
7496 for empty right-hand sides.
7497 (yydoAction): Ditto.
7498 Add comment explaining apparently dead code.
7499 * tests/glr-regression.at
7500 (Incorrectly initialized location for empty right-hand side in GLR):
7503 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7505 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7506 gnulib when interrupted. This fixes some race conditions and
7507 works around some portability problems (one noted by Paul
7510 2005-10-22 Akim <akim@epita.fr>
7512 * Makefile.cfg: Adjust to config -> build-aux.
7515 2005-10-21 Akim Demaille <akim@epita.fr>
7517 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7519 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7520 * data/yacc.c (b4_Pure_if): Rename as...
7521 (b4_yacc_pure_if): this.
7522 (YY_SYMBOL_PRINT, yyparse): Adjust.
7523 * doc/bison.texinfo: Formatting changes.
7525 2005-10-21 Akim Demaille <akim@epita.fr>
7527 Finish the transition config -> build-aux.
7528 * configure.ac, Makefile.am: Use build-aux.
7529 * config/prev-version, config/announce-gen, config/Makefile.am:
7531 * build-aux/prev-version, build-aux/announce-gen,
7532 * build-aux/Makefile.am: here.
7534 2005-10-14 Akim Demaille <akim@epita.fr>
7536 * examples/calc++/test: Use set -x only when VERBOSE.
7538 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7540 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7541 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7543 2005-10-13 Akim Demaille <akim@epita.fr>
7545 * src/scan-skel.l: Output the base name parts of the parser and
7547 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7549 Use this to exercise C++ outputs in subdirs.
7550 Reported by Oleg Smolsky.
7552 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7554 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7555 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7556 Problem reported by John P. Hartmann.
7557 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7560 2005-10-12 Akim Demaille <akim@epita.fr>
7562 * src/parse-gram.y (version_check): Exit 63 to please missing
7563 (stands for "version mismatch).
7564 * tests/input.at, doc/bison.texinfo: Adjust.
7566 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7568 Work around portability problems with Visual Age C compiler
7569 (xlc and xlC_r) reported by John P. Hartmann.
7570 * data/location.cc (initial_column, initial_line): Remove.
7571 All uses replaced by 0 and 1.
7572 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7573 that xlc complains about.
7574 * src/scan-skel.l (skel_wrap): Likewise.
7575 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7577 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7578 __STDC_VERSION__. Use it everywhere instead of looking at
7579 __STDC__ and __cplusplus.
7581 2005-10-10 Akim Demaille <akim@epita.fr>
7583 * examples/calc++/test: Be quiet unless VERBOSE.
7585 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7587 * data/c.m4 (yydestruct, yysymprint):
7588 Use YYUSE instead of casting to void.
7589 * data/glr.c (YYUSE): New macro.
7590 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7591 Use it instead of rolling our own.
7592 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7594 Use /*CONSTCOND*/ to suppress lint warnings.
7595 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7596 (YY_STACK_PRINT): Use 'false' not '0'.
7598 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7599 * data/yacc.c (YYUSE): New macro.
7600 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7601 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7602 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7605 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7606 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7608 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7610 Undo the parts of the unlocked-I/O change that substituted
7611 putc or puts for printf. This might hurt performance a bit,
7612 but some people prefer the printf style.
7613 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7614 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7615 All uses replaced by YYFPRINTF and YYDPRINTF.
7616 * data/yacc.c: Likewise.
7617 * lib/bitset.c (bitset_print): Likewise.
7618 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7620 * lib/lbitset.c (debug_lbitset): Likewise.
7621 * src/closure.c (print_firsts, print_fderives): Likewise.
7622 * src/gram.c (grammar_dump): Likewise.
7623 * src/lalr.c (look_ahead_tokens_print): Likewise.
7624 * src/output.c (escaped_output): Likewise.
7625 (user_actions_output): Break apart two printfs.
7626 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7627 * src/reduce.c (reduce_print): Likewise.
7628 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7629 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7631 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7632 Use assignments rather than casts-to-void to suppress
7633 unused-variable warnings. This pacifies 'lint'.
7634 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7635 unused-variable warnings.
7637 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7639 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7641 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7643 Use unlocked I/O for a minor performance improvement on hosts like
7644 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7645 is to use the gnlib unlocked-io module, and to prefer putc and
7646 puts to printf when either will work (since the latter doesn't
7647 come in an unlocked flavor).
7648 * bootstrap (gnulib_modules): Add unlocked-io.
7649 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7650 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7651 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7652 and similarly for puts and putc and printf.
7653 * data/yacc.c: Likewise.
7654 * lib/bitset.c (bitset_print): Likewise.
7655 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7656 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7658 * lib/lbitset.c (debug_lbitset): Likewise.
7659 * src/closure.c (print_firsts, print_fderives): Likewise.
7660 * src/gram.c (grammar_dump): Likewise.
7661 * src/lalr.c (look_ahead_tokens_print): Likewise.
7662 * src/output.c (escaped_output): Likewise.
7663 (user_actions_output): Coalesce two printfs.
7664 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7665 * src/reduce.c (reduce_print): Likewise.
7666 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7667 * src/system.h: Include unlocked-io.h rather than stdio.h.
7669 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7670 this confuses xgettext.
7672 2005-10-02 Akim Demaille <akim@epita.fr>
7674 * bootstrap (gnulib_modules): Add strverscmp.
7675 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7676 * m4/.cvsignore: Add strverscmp.m4.
7677 * src/parse-gram.y (%require): New token, new rule.
7678 (version_check): New.
7679 * src/scan-gram.l (%require): Adjust.
7680 * tests/input.at (AT_REQUIRE): New.
7682 * doc/bison.texinfo (Require Decl): New.
7683 (Calc++ Parser): Use %require.
7685 2005-10-02 Akim Demaille <akim@epita.fr>
7687 * data/location.cc: New.
7689 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7690 Akim Demaille <akim@epita.fr>
7692 Make sure -odir/foo.cc creates dir/location.hh etc.
7693 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7694 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7695 (spec_defines_file): Now const.
7697 (short_base_name): Remove.
7698 * src/files.c: Adjust.
7699 (dirname.h): Include.
7700 (base_name): Don't prototype it.
7701 (finput): Remove, duplicates gram_in.
7702 (full_base_name, short_base_name): Replace by...
7703 (all_but_ext, all_but_tab_ext): these.
7704 (compute_base_names): Rename as...
7705 (compute_file_name_parts): this.
7706 Update to compute the new variables, including dir_prefix.
7707 Adjust dependencies.
7708 * src/output.c (prepare): Output them.
7709 * src/reader.c: Adjust to use gram_in, not finput.
7710 * src/scan-skel.l (@dir_prefix@): New.
7712 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7714 * lib/subpipe.c: New function end_of_output_subpipe() added
7715 to allow support for non-posix systems. This is a no-op function
7718 * lib/subpipe.h: New function end_of_output_subpipe() added
7719 to allow support for non-posix systems. This is a no-op function
7722 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7723 handle the lack of pipe/fork functionality on non-posix systems.
7725 * djgpp/Makefile.maint: DJGPP specific file.
7727 * djgpp/README.in: DJGPP specific file.
7729 * djgpp/config.bat: DJGPP specific configuration file.
7731 * djgpp/config.sed: DJGPP specific configuration file.
7733 * djgpp/config.site: DJGPP specific configuration file.
7735 * djgpp/config_h.sed: DJGPP specific configuration file.
7737 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7739 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7741 2005-10-02 Akim Demaille <akim@epita.fr>
7743 * data/location.cc: New, extract from...
7744 * data/lalr1.cc: here.
7745 (location.hh): Include it after the user prologue, in case the
7746 filename type is defined by the user.
7747 Forward declation location and position before the pre-prologue.
7748 (yyresult_): Rename as...
7749 (yyresult): this, it's a local variable, not an attribute.
7750 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7752 2005-10-01 Akim Demaille <akim@epita.fr>
7754 * examples/extexi: Restore the #line generation.
7756 2005-09-30 Akim Demaille <akim@epita.fr>,
7757 Alexandre Duret-Lutz <adl@gnu.org>
7759 Move the token type and YYSTYPE in the parser class.
7760 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7761 (parser::token): New, from the moved free definition of tokens.
7762 (parser::semantic_value): Now a full definition instead of an
7763 indirection to YYSTYPE.
7764 (b4_post_prologue): No longer included in the header file, but
7765 in the implementation file.
7766 * doc/bison.texi (C+ Language Interface): Update.
7767 * src/parse-gram.y: Support unary %define.
7768 * tests/actions.at: Define global_tokens_and_yystype for backward
7769 compatibility until we update the tests.
7770 * tests/calc.at: Idem.
7771 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7772 to simplify the code.
7774 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7776 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7777 Ah, the good old days! Problem reported by Peter Klein.
7778 * bootstrap (gnulib_modules): Add strerror, strtoul.
7779 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7780 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7782 2005-09-29 Akim Demaille <akim@epita.fr>
7784 * data/c.m4 (b4_error_verbose_if): New.
7785 * data/lalr1.cc: Use it.
7786 (YYERROR_VERBOSE_IF): Remove.
7787 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7788 parser members, replaced by...
7789 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7791 (yysyntax_error_): Takes the state number as argument.
7792 (yyreduce_print_): Use the argument yyrule, not the former
7795 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7797 * bootstrap (gnulib_modules): Add verify.
7798 * lib/.cvsignore: Add verify.h.
7799 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7800 * src/system.h (verify): Remove.
7801 Include verify.h instead.
7802 * src/tables.c (tables_generate): Use new API for 'verify'.
7804 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7806 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7807 local variables whose names begin with 'yy'.
7808 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7809 Trivial changes from Joel E. Denny.
7811 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7813 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7814 don't use alloca any more.
7816 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7817 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7818 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7819 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7820 to match yacc.c, to test more hosts.
7822 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7824 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7825 doesn't affect behavior.
7826 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7828 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7829 This works a bit better with glibc, if user code has already included
7831 * doc/bison.texinfo (Bison Parser): Document that users can't
7832 arbitrarily use malloc and free for other purposes. Document
7833 that <alloca.h> and <malloc.h> might be included.
7834 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7835 user must declare alloca.
7837 * HACKING (release): Forwarn the Translation Project about
7840 2005-09-20 Akim Demaille <akim@epita.fr>
7842 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7844 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7846 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7847 (YYSTACK_ALLOC_MAXIMUM): Use it.
7848 (yysyntax_error): New function.
7849 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7850 multiple syntax errors are reported, and alloca is being used.
7851 Instead, reallocate buffers twice as big each time, so that
7852 we waste at most half the allocated memory. Start with a small
7853 (128-byte) buffer that will suffice in most cases anyway.
7854 Use yysyntax_error to do most of the work.
7856 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7857 yynerrs is the number of errors reported, not the number of
7860 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7861 Mark it as expected to fail.
7862 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7863 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7864 Don't start user-code symbols with "yy", to avoid name space problems.
7866 2005-09-19 Akim Demaille <akim@epita.fr>
7868 Remove the traits, failed experiment.
7869 It never proved useful, and anyway because of the current
7870 definition, it was not possible to have several specialization of
7871 this traits, making it useless.
7872 * data/lalr1.cc (yy:traits): Remove.
7873 Inline its definitions in the parser class.
7875 2005-09-19 Akim Demaille <akim@epita.fr>
7877 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7878 least Mac OSX with a /usr/local install of gettext.
7880 2005-09-19 Akim Demaille <akim@epita.fr>
7882 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7883 and yytoken for similarity with the other skeletons.
7885 2005-09-19 Akim Demaille <akim@epita.fr>
7887 * NEWS, configure.ac: update version number to 2.1a.
7889 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7891 * NEWS: Version 2.1.
7893 * NEWS: Remove notice of yytname change, since it was never in an
7895 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7897 * src/output.c (prepare): Likewise.
7898 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7899 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7900 is not defined. This is an awful hack, but it's enough for now.
7901 All callers changed.
7902 * tests/glr-regression-at (make_value): Args are const pointers now,
7903 to avoid GCC warning.
7904 (Duplicated user destructor for lookahead): New test. Currently
7905 skipped. It fails on my host but I'm not sure it'll always fail.
7907 2005-09-16 Akim Demaille <akim@epita.fr>
7909 * src/symtab.h (struct symbol): Declare the printer and destructor
7910 as const, to avoid accidental calls to free.
7911 (symbol_destructor_set, symbol_printer_set): Adjust.
7912 * src/symtab.c: Adjust.
7914 2005-09-16 Akim Demaille <akim@epita.fr>
7916 * data/c.m4 (b4_token_enums): New.
7917 (b4_token_defines): Rename as...
7918 (b4_token_enums_defines): this.
7919 (b4_token_defines): New, output only the #defines.
7920 * data/yacc.c, data/glr.c: Adjust.
7921 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7922 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7925 2005-09-16 Akim Demaille <akim@epita.fr>
7927 * data/lalr1.cc (yylex_): Remove, inline its code.
7928 (yyreport_syntax_error_): Remove, replaced by...
7929 (yysyntax_error_): this which returns a string and leaves to the
7930 caller the call to the users' error function.
7931 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7932 Move from members of the parser object...
7933 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
7934 to local variables of the parse function.
7936 2005-09-16 Akim Demaille <akim@epita.fr>
7938 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
7939 since it's in Bison's name space.
7941 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
7943 * data/glr.c (yyresolveValue): Add default case to pacify
7944 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
7946 * NEWS: Document when yyparse started to return 2.
7947 * doc/bison.texinfo (Parser Function): Document when yyparse
7950 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
7951 (b4_filename_type): Renamed back from b4_file_name_type. All uses
7953 (class position): file_name -> filename (reverting). All uses changed.
7955 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
7957 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
7958 do anything if $@ exists. This reverts part of the 2005-07-07
7961 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
7963 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
7964 contains obsolete information and isn't worth distributing as a
7965 separate file anyway.
7966 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
7967 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
7968 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
7969 (yyparse): Abort if user code uses longjmp to throw an unexpected
7972 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
7974 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
7975 Suggested by twlevo@xs4all.nl.
7977 * data/glr.c (YYCHK1): Do not assume YYE is in range.
7978 This avoids a diagnostic from gcc -Wswitch-enum.
7979 Problem reported by twlevo@xs4all.nl.
7981 * doc/bison.texinfo: Don't use "filename", as per GNU coding
7982 standards. Use "file name" or "file" or "name", depending on
7984 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
7985 not to hack/foo.tab.c.
7986 (Calc++ Top Level): 2nd arg of main is not const.
7987 * data/glr.c: b4_filename -> b4_file_name.
7988 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
7990 (class position): filename -> file_name. All uses changed.
7991 * data/yacc.c: b4_filename -> b4_file_name.
7992 * lib/bitset.h: filename -> file_name in local vars.
7993 * lib/bitset_stats.c: Likewise.
7994 * src/files.c: Likewise.
7995 * src/scan-skel.l ("@output ".*\n): Likewise.
7996 * src/files.c (file_name_split): Renamed from filename_split.
7997 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
7999 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8001 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8002 to accommodate latest gnulib.
8004 * tests/glr-regression.at (Duplicate representation of merged trees):
8005 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8007 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8010 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8012 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8013 All uses changed. Invoke user destructor after an error during a
8014 split parse (trivial change from Joel E. Denny).
8016 * tests/glr-regression.at
8017 (User destructor after an error during a split parse): New test case.
8018 Problem reported by Joel E. Denny in:
8019 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8021 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8023 * README-cvs: Give URLs for recommended tools.
8024 Mention Gzip version problem, and bootstrapping issues.
8025 Remove troubleshooting section, as it's somewhat obsolete.
8027 * bootstrap (no_cache): New var, to accommodate different wget
8028 variants. Use it instead of '-C off'. Problem reported by
8031 * data/glr.c (yydestroyStackItem): New function.
8032 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8033 debugging information. Problem reported by Joel E. Denny.
8035 2005-08-25 Akim Demaille <akim@epita.fr>
8037 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8039 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8041 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8042 Don't invoke destructor on unresolved entries.
8043 * tests/glr-regression.at
8044 (User destructor for unresolved GLR semantic value): New test case.
8045 Problem reported by Joel E. Denny in:
8046 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8048 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8050 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8052 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8053 lib-prefix.m4, po.m4.
8055 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8056 in yydestruct diagnostic, since it might not be an error.
8057 Problem reported by Joel Denny near end of
8058 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8059 * data/lalr1.cc (yyerturn): Likewise.
8060 * data/yacc.c (yyreturn): Likewise.
8061 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8063 * src/files.c: Remove obsolete FIXME comment.
8065 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8066 with the other templates, and to fix bogus run-on messages such
8067 as the one reported at the end of
8068 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8069 All callers changed to avoid the newline.
8070 (yyprocessOneStack): Output two lines rather than one, to accommodate
8071 the above change. This changes the debug output format slightly.
8073 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8074 reported by Joel E. Denny in
8075 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8077 * tests/glr-regression.at (Duplicate representation of merged trees):
8078 New test, from Joel E. Denny in:
8079 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8080 * THANKS: Add Joel E. Denny.
8082 * configure.ac (AC_INIT): Bump to 2.0c.
8084 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8086 * NEWS: Version 2.0b.
8088 * Makefile.am (SUBDIRS): Put examples before tests, so that
8089 "make check" doesn't finish with "All 1 tests passed".
8091 * tests/regression.at (Token definitions): Don't rely on
8092 AT_PARSER_CHECK for data that contains backslashes. It currently
8093 uses 'echo', and 'echo' isn't portable if its argument contains
8094 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8095 that the byte '\0xff' is not printable in the C locale; it is,
8096 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8097 not printable, so use '\0x81' to test.
8099 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8100 version of GCC, since the macro is used with non-GCC compilers.
8102 Fix core dump reported by Pablo De Napoli in
8103 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8104 * tests/regression.at (Invalid inputs with {}): New test.
8105 * src/parse-gram.y (token_name): Translate type before using
8108 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8109 the user's name space. All uses changed to __attribute__
8111 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8112 Add __attribute__ ((__noreturn__)).
8114 * etc/clcommit: Remove. We weren't using it, and it failed
8115 "make maintainer-distcheck".
8116 * Makefile.maint: Merge from coreutils.
8117 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8118 (syntax-check-rules): Change list of rules as described below.
8119 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8120 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8121 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8122 (sc_trailing_space): New rules.
8123 (sc_xalloc_h_in_src): Remove.
8124 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8125 (sc_space_tab, sc_error_exit_success, sc_changelog):
8126 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8127 (makefile-check, po-check, author_mark_check):
8128 (makefile_path_separator_check, copyright-check):
8129 Use grep -n, to make it easier to find violations.
8130 Use CVS_LIST and CVS_LIST_EXCEPT.
8131 (header_regexp, h_re): Remove.
8133 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8134 (my-distcheck): Use more-modern GCC flags.
8135 (signatures, %.asc): Remove.
8136 (rel-files, announcement): Remove signatures.
8137 Restore old updating code, even though we don't use it, so
8138 that we're the same as coreutils.
8139 (alpha, beta, major): Depend on news-date-check.
8140 Make the upload commands.
8142 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8143 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8144 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8145 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8146 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8147 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8148 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8149 * tests/sets.at: Likewise.
8151 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8152 we comment out the Autoconf version number.
8153 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8154 it's error-prone and "make maintainer-distcheck" rejects it.
8156 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8157 Indent calls to "error" to pacify "make maintainer-distcheck",
8158 when the calls are not intended to be translated.
8159 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8161 * src/Makefile.am (DEFS): Use +=, to pacify
8162 "make maintainer-distcheck".
8163 (bison_SOURCES): Add scan-skel.h.
8164 (sc_tight_scope): New rule, from coreutils.
8166 * src/files.c (src_extension, header_extension):
8167 Now static, not extern.
8168 * src/getargs.c (short_options): Likewise.
8169 * src/muscle_tab.c (muscle_table): Likewise.
8170 * src/parse-gram.y (current_class, current_type, current_prec):
8172 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8173 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8174 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8175 void, to avoid warning when NLS is disabled.
8176 * src/output.c: Include scan-skel.h.
8177 (scan_skel): Remove decl, since scan-skel.h does this.
8179 Indent calls to "error" to pacify "make maintainer-distcheck".
8180 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8181 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8182 "make maintainer-distcheck".
8183 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8184 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8185 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8186 (skel_lex_destroy, scan_skel): Move these decls to...
8187 * src/scan-skel.h: New file.
8188 * src/uniqstr.c (uniqstr_assert):
8189 Indent calls to "error" to pacify "make maintainer-distcheck".
8191 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8194 * tests/torture.at: Revamp to avoid misuse of atoi that
8195 "make maintainer-distcheck" complained about.
8197 * examples/extexi (message): Don't print a message more than once,
8198 and omit line-number decoration that makes Emacs compile think
8199 that informative messages are worth worrying about.
8201 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8203 * configure.ac: Update version number.
8205 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8207 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8208 autogenerated by the maintainer.
8209 * examples/calc++/.cvsignore: Add *.yy.
8211 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8212 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8213 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8215 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8217 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8218 from maintainer-distcheck about casting the argument of 'free'.
8220 * NEWS: Mention recent yytname changes.
8221 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8223 * bootstrap: For translations that have not yet been upgraded to
8224 the new runtime-po domain, prime the pump by extracting the
8225 relevant strings from the obsolete translations. This code can be
8226 removed once the bison-runtime domain has been translated by each
8229 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8230 now that token names are already quoted.
8232 Fix problem reported by Anthony Heading.
8233 * data/glr.c (YYTOKEN_TABLE): New macro.
8234 (yytname): Define if YYTOKEN_TABLE.
8235 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8236 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8237 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8238 * src/output.c (prepare_symbols): Output token_table_flag.
8240 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8242 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8243 again if the first call fails.
8245 * data/glr.c (yytnamerr): New function.
8246 (yyreportSyntaxError): Use it to dequote most string literals.
8247 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8248 with other skeletons. All uses changed.
8249 (yytnameerr_): New function.
8250 (yyreport_syntax_error): Use it to dequote most string literals.
8251 * data/yacc.c (yytnamerr): New function.
8252 (yyerrlab): Use it to decode most string literals.
8253 * doc/bison.texinfo (Decl Summary, Calling Convention):
8254 Clarify quoting convention of yytname.
8255 * src/output.c (prepare_symbols): Quote all names. This undoes
8256 the 2005-04-17 change, which is now accomplished (mostly) via
8257 changes in the parsers as described above.
8258 * tests/regression.at (Token definitions, Web2c Actions):
8259 Undo most 2005-04-17 change here, too.
8261 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8263 Fix more problems reported by twlevo@xs4all.nl.
8264 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8265 remove trailing spaces. This loses the exit status of ./types,
8266 and isn't needed since ./types shouldn't be emitting trailing
8268 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8269 as the stack isn't valid in that case.
8271 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8272 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8273 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8274 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8276 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8277 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8278 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8281 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8282 overly-picky compilers that reject 'char *foo = "bar";'.
8284 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8285 to FILE * parameter, not to stderr. This fixes a typo introduced
8286 in the 2005-07-12 change.
8288 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8289 warnings from GCC 4.
8291 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8292 (yyglrShiftDefer, yysplitStack):
8293 Remove unused parameters b4_pure_formals. All uses changed.
8294 (yyglrShift): Remove unused parameters b4_user_formals.
8296 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8298 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8300 Destructor cleanups and regularization among the three skeletons.
8301 * NEWS: Document the behavior changes.
8302 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8303 stack before failing, as the cleanup code will do it for us now.
8304 * data/lalr1.cc (yyerrlab): Likewise.
8305 * data/glr.c (yyparse): Pop everything off the stack before
8306 freeing it, so that destructors get called properly.
8307 * data/lalr1.cc (yyreturn): Likewise.
8308 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8309 This is more consistent.
8310 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8311 why destructors might be called. 1.875 -> 2.1.
8312 (Destructor Decl, Decl Summary, Table of Symbols):
8313 Some English-language cleanups for %destructor.
8314 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8315 Add output line for destructor of start symbol.
8316 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8317 because of that same extra output line.
8319 * NEWS: Document minor wording changes in diagnostics of
8320 Bison-generated parsers.
8321 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8322 Remove unused formals. All uses changed.
8323 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8324 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8325 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8326 Rename yyoverflowab to yyexhaustedlab.
8327 When memory exhaustion occurs during syntax-error reporting,
8328 report it separately rather than in a single diagnostic; this
8330 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8331 (Memory Exhausted): Renamed from Parser Stack Overflow.
8332 Revamp wording slightly to prefer "memory exhaustion".
8333 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8335 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8337 Add i18n support to the GLR skeleton. Partially fix the C++
8338 skeleton; a C++ expert needs to finish this. Remove debugging
8339 msgids; there's little point to having them translated, since they
8340 can be understood only by someone who can read the
8341 (English-language) source code.
8343 Generate runtime-po/bison-runtime.pot automatically, so that we
8344 don't have to worry about garbage getting in that file. We'll
8345 make sure after the next official release that old msgids don't
8347 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8349 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8351 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8352 Fix typos in explanations of the runtime file.
8353 * bootstrap: Change gettext keyword from YYI18N to YY_.
8354 Use standard Makefile.in.in in runtime-po, since we'll arrange
8355 for backward-compatible bison-runtime.po files in a different way.
8356 * data/glr.c (YY_): New macro, from yacc.c.
8357 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8358 Translate messages intended for users.
8359 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8360 the wording in the other skeletons. We don't know that the memory
8362 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8363 Use same method that yacc.c uses.
8364 Don't translate debugging messages.
8365 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8366 it doesn't work (yet), and requires C++ expertise to fix.
8367 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8368 Move defn to a more logical place, to be consistent with other
8370 Don't translate debugging messages.
8371 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8372 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8373 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8374 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8376 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8377 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8379 * tests/glr-regression.at (Badly Collapsed GLR States):
8381 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8382 yylex should return 0 at EOF rather than aborting.
8384 Improve tests for stack overflow in GLR parser.
8385 Problem reported by twlevo@xs4all.nl.
8386 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8388 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8389 can handle the problem.
8390 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8391 (yyparse): New local variable yyresult to record the result.
8392 Use result of setjmp to set it, rather than storing itinto
8394 (yyDone): Remove label.
8395 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8396 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8397 if YYABORT is used).
8398 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8399 yyparse status; put status > 1 into diagnostic.
8400 Check that status==2 works.
8401 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8402 Use exit status 3 for failure to open (which shouldn't happen).
8404 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8406 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8407 1 on syntax error; just let yyparse do its thing.
8408 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8409 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8410 (Exploding the Stack Size with Alloca):
8411 (Exploding the Stack Size with Malloc):
8412 Expect exit status 2, not 1, since the parser is supposed to blow
8413 its stack. Problem reported by twlevo@xs4all.nl.
8415 * data/glr.c (yyparse): Don't assume that the initial calls
8416 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8417 Print a stack-overflow message and fail instead.
8418 Initialize the line-number information before creating the stack,
8419 so that the stack-overflow message can report line zero safely.
8421 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8423 Fix problems reported by twlevo@xs4all.nl.
8424 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8425 (yyuserMerge): Provide a default case if b4_mergers is empty.
8426 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8427 * tests/glr-regression.at
8428 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8429 Add casts to pacify C++ compilers.
8430 * tests/glr-regression.at (Improper merging of GLR delayed action
8431 sets): Declare yylex before using it.
8432 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8433 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8434 test for valgrind; valgrind is independent of g++.
8435 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8436 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8437 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8438 Use a destructor, so that we can expand the stack. Change
8439 YYSTYPE to char * so that we can free it. Cast result of malloc.
8441 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8443 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8444 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8446 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8448 * PACKAGING: New file, suggested by Bruno Haible and taken from
8449 similar wording in gettext's PACKAGING file.
8450 * NEWS: Mention PACKAGING.
8451 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8453 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8455 * NEWS: Document recent i18n improvements.
8456 * bootstrap: Get runtime translations into runtime-po.
8457 Create runtime-po files automatically, if possible.
8458 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8459 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8460 does not infringe on the user's name space.
8461 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8462 * doc/bison.texinfo (Internationalization): Revamp the English
8463 and Texinfo syntax a bit, to try to make it clearer.
8464 (Bison Options, Option Cross Key): Mention --print-localedir.
8465 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8466 YYENABLE_NLS. Quote a bit more.
8467 * runtime-po/.cvsignore: New file.
8468 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8469 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8470 * runtime-po/quot.sed: Likewise.
8471 * runtime-po/boldquot.sed: Likewise.
8472 * runtime-po/en@quot.header: Likewise.
8473 * runtime-po/en@boldquot.header: Likewise.
8474 * runtime-po/insert-header.sin: Likewise.
8475 * runtime-po/remove-potcdate.sin: Likewise.
8476 * runtime-po/Makevars: Likewise.
8477 * runtime-po/LINGUAS: Likewise.
8478 * runtime-po/de.po: Likewise; we will rely on the translation project
8479 to maintain this, so "bootstrap" should get it.
8480 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8482 * src/main.c (main): Bind the bison-runtime domain, too.
8484 2005-07-12 Bruno Haible <bruno@clisp.org>
8486 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8487 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8488 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8489 * runtime-po: New directory.
8490 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8491 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8492 * runtime-po/Rules-quot: New file, copied from po/.
8493 * runtime-po/quot.sed: Likewise.
8494 * runtime-po/boldquot.sed: Likewise.
8495 * runtime-po/en@quot.header: Likewise.
8496 * runtime-po/en@boldquot.header: Likewise.
8497 * runtime-po/insert-header.sin: Likewise.
8498 * runtime-po/remove-potcdate.sin: Likewise.
8499 * runtime-po/Makevars: New file.
8500 * runtime-po/POTFILES.in: New file.
8501 * runtime-po/LINGUAS: New file.
8502 * runtime-po/bison-runtime.pot: New file.
8503 * runtime-po/de.po: New file.
8504 * m4/bison.m4: New file.
8505 * Makefile.am (SUBDIRS): Add runtime-po.
8506 (aclocaldir, aclocal_DATA): New variables.
8507 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8509 * src/getargs.c (usage): Document --print-localedir option.
8510 (PRINT_LOCALEDIR_OPTION): New enum item.
8511 (long_options): Add --print-localedir option.
8512 (getargs): Handle --print-localedir option.
8513 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8514 (Internationalization): New section.
8516 2005-07-12 Akim Demaille <akim@epita.fr>
8518 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8519 for consistency with the rest of the code.
8520 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8523 2005-07-12 Akim Demaille <akim@epita.fr>
8525 * src/parse-gram.y: Use %printer instead of YYPRINT.
8527 2005-07-12 Akim Demaille <akim@epita.fr>
8529 * src/symtab.h, src/symtab.c (symbol_print): New.
8530 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8531 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8533 2005-07-12 Akim Demaille <akim@epita.fr>
8535 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8536 b4_at_dollar and b4_dollar_dollar.
8538 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8540 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8541 and Pennello's paper.
8543 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8545 * data/yacc.c (yyparse): Undo previous patch. Instead,
8546 set yylsp[0] and yyvsp[0] only if the initial action
8547 sets yylloc and yylval, respectively.
8549 * data/yacc.c (yyparse): In the initial action, set
8550 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8551 This avoids the use of undefined variables if the initial
8552 action does not set yylloc and/or yylval.
8554 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8556 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8557 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8558 Remove from CVS. These files are automatically generated.
8559 * examples/extexi: Clarify that this file is now part of Bison,
8560 not GNU M4, and that it works with any POSIX-compatible Awk.
8561 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8562 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8563 so that we also get calc++-parser.yy. Geneate it.
8564 Use $(AWK), not gawk, since any conforming Awk will do.
8565 Put comment before action, since older 'make' can't handle comment
8567 $(BUILT_SOURCES): List all built sources, not just some of them.
8568 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8569 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8570 $($(calc_sources_generated)): Remove unnecessary test for existence
8571 of target. (This had a shell syntax error anyway; a stray "x".)
8572 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8574 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8576 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8577 implied by the other modules.
8579 2005-07-06 Akim Demaille <akim@epita.fr>
8581 Bind examples/calc++ to the package.
8582 * examples/calc++/Makefile: Remove, replaced by...
8583 * examples/calc++/Makefile.am: ... this new file.
8584 * examples/calc++/test: Remove input.
8585 * examples/calc++/compile: Remove.
8586 * examples/Makefile.am: New.
8587 * configure.ac, Makefile.am: Adjust.
8588 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8590 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8592 * data/glr.c (yyFail): Drastically simplify; since the format argument
8593 never had any % directives, we can simply pass it to yyerror.
8594 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8595 be modified later, as that is the usual style in glr.c.
8596 Problems reported by Paul Hilfinger.
8598 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8599 and size overflow errors.
8600 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8601 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8602 (YYSIZEMAX): New macro.
8603 (yystpcpy): New function, taken from yacc.c.
8604 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8605 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8606 so that we don't have to maintain their signatures.
8607 (yyFail): Check for buffer overflow, by using vsnprintf rather
8608 than vsprintf. Allocate a bigger buffer if possible.
8609 Report an error if buffer allocation fails.
8610 (yyStackOverflow): New function.
8611 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8612 the initialization was successful. It might fail if storage was
8614 (yyexpandGLRStack): Add more checks for storage allocation failure.
8615 Use yyStackOverflow to report failures.
8616 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8617 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8618 Don't assume stack number fits in int.
8619 (yysplitStack): Check for storage allocation failure.
8620 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8621 can print diagnostics on storage allocation failure. All callers
8623 (yyresolveValue): Use yybool for boolean.
8624 (yyreportSyntaxError): Check for size-calculation overflow.
8625 This code is taken from yacc.c.
8626 (yyparse): Check for storage allocation errors when allocating
8629 2005-07-05 Akim Demaille <akim@epita.fr>
8631 Extract calc++ from the documentation.
8632 * doc/bison.texinfo (Calc++): Add the extraction marks.
8633 * examples/extexi: New, from the aborted GNU Programming 2E.
8634 Separate the different paragraph of a file with empty lines.
8635 * examples/Makefile: Use it to extract the whole calc++ example.
8637 2005-06-24 Akim Demaille <akim@epita.fr>
8639 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8642 2005-06-22 Akim Demaille <akim@epita.fr>
8644 * doc/bison.texinfo (C++ Language Interface): First stab.
8645 (C++ Parsers): Remove.
8647 2005-06-22 Akim Demaille <akim@epita.fr>
8649 * data/lalr1.cc (yylex_): Honor %lex-param.
8651 2005-06-22 Akim Demaille <akim@epita.fr>
8653 Start a set of simple examples.
8654 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8655 * examples/calc++/calc++-driver.hh,
8656 * examples/calc++/calc++-parser.yy,
8657 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8658 * examples/calc++/compile, examples/calc++/test: New.
8660 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8662 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8663 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8664 which stems from the 2005-05-27 patch.
8666 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8668 * data/glr.c: Modify treatment of unused parameters to permit use
8669 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8671 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8673 Fix infringement on user name space reported by Janos Zoltan Szabo.
8674 * data/yacc.c (yyparse): strlen -> yystrlen.
8676 2005-05-30 Akim Demaille <akim@epita.fr>
8678 * data/lalr1.cc (_): New.
8679 Translate the various messages.
8681 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8683 Fix infringement on user name space reported by Bruno Haible.
8684 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8685 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8686 the user's name space.
8687 (alloca): Include <stdlib.h> to get it, if it's not built in.
8688 (YYMALLOC, YYFREE): Define only if needed.
8689 (malloc, free): Declare, but only if needed, as this infringes on
8690 the user name space.
8692 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8694 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8695 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8697 * lib/ebitset.c (min, max): Undef before defining.
8698 * lib/vbitset.c (min, max): Likewise.
8699 * lib/subpipe.c (create_subpipe): Save local variables in case
8700 vfork clobbers them.
8702 2005-05-24 Bruno Haible <bruno@clisp.org>
8704 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8705 error message syntax used by gcc-4.0.
8707 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8709 * README: Mention m4 1.4.3. Remove obsolete advice about
8710 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8712 * bootstrap: Remove workaround for problem I encountered with
8713 gettext 0.14.1; it seems to be fixed now.
8715 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8717 * NEWS: Version 2.0a.
8719 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8720 the previous change.
8722 Various maintainer cleanups.
8723 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8724 conftest*, for benefit of CVS commands run at the same time as
8725 "configure". Add build-aux, since "bootstrap" now creates it and
8727 * Makefile.cfg (move_if_change): Remove.
8728 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8729 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8730 (po_repo, do-po-update, po-update, wget_files, get-targets):
8731 (config.guess-url_prefix, config.sub-url_prefix):
8732 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8733 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8734 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8736 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8737 this is now the recommended name.
8738 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8739 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8740 ylwrap. These files now go into build-aux.
8741 * config/move-if-change: Remove.
8742 * config/prev-version.txt: Bump from 1.75 to 2.0.
8744 * bootstrap: Add stdio-safer, unistd-safer modules.
8745 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8747 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8748 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8749 * lib/subpipe.c: Include "unistd-safer.h".
8750 (create_subpipe): Make sure all the newly-created
8751 file descriptors are > 2, so that diagnostics don't
8752 get sent down them (which might cause Bison to hang, in theory).
8753 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8754 * src/files.c (xfopen): Use fopen_safer, not fopen.
8756 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8757 yesterday's yacc.c fix.
8759 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8761 * data/glr.c, data/lalr1.cc: Update copyright date.
8763 Fix a destructor bug reported by Wolfgang Spraul in
8764 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8765 * data/yacc.c (yyabortlab): Don't call destructor, and
8766 don't set yychar to EMPTY.
8767 (yyoverflowlab): Don't call destructor.
8768 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8769 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8770 since we no longer output the message "discarding lookahead token
8773 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8775 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8776 fix a small glitch in debugging output.
8777 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8778 after YY_SYMBOL_PRINT where needed.
8780 (struct yyGLRState): Add some comments.
8781 (struct yySemanticOption): Add some comments.
8782 (union yyGLRStackItem): Add comment.
8784 (yymergeOptionSets): Correct this to properly perform the union,
8785 avoiding infinite reported by Michael Rosien.
8788 * tests/glr-regression.at: Add test for GLR merging error reported
8791 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8793 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8794 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8795 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8796 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8797 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8798 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8799 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8800 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8801 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8802 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8803 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8804 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8805 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8806 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8807 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8808 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8809 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8810 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8811 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8812 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8813 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8814 src/output.h, src/parse-gram.c, src/parse-gram.h,
8815 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8816 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8817 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8818 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8819 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8820 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8821 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8822 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8823 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8824 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8825 tests/reduce.at, tests/regression.at, tests/sets.at,
8826 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8827 Update FSF postal mail address.
8829 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8831 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8832 Problem reported by Ralf Menzel.
8834 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8836 * tests/actions.at: Test that stack overflow invokes destructors.
8837 From Marcus Holland-Moritz.
8838 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8840 (yyreturn): to here. That way, destructors are called properly
8841 even if the stack overflows, or the user calls YYACCEPT or
8842 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8843 (yyoverflowlab): Destroy the lookahead.
8845 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8847 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8849 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8851 * NEWS: Bison-generated C parsers no longer quote literal strings
8852 associated with tokens.
8853 * src/output.c (prepare_symbols): Don't escape strings,
8854 since users don't want to see C escapes.
8855 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8857 * tests/input.at (Torturing the Scanner): Likewise.
8858 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8860 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8862 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8863 the data size is known to be too small and we can't increase it.
8864 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8866 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8868 * src/parse-gram.y: Include quotearg.h.
8869 (string_as_id): Quote $1 before using it as a key, since the
8870 lexer no longer quotes it for us.
8871 (string_content): Don't strip quotes, since lexer no longer
8873 * src/scan-gram.l: Include quotearg.h.
8875 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8876 a key, since the rest of the lexer doesn't quote it.
8877 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8878 * tests/regression.at (Token definitions): Check for backslashes
8881 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8882 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8883 (yyparse): Revamp code to generate long syntax error message, to
8884 make it easier to translate, and to avoid problems with arithmetic
8885 overflow. Change "virtual memory" to "memory" in diagnostic, since
8886 we don't know whether the memory is virtual.
8888 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8890 * NEWS: Bison-generated C parsers now use the _ macro to
8892 * data/yacc.c (_) [!defined _]: New macro.
8893 All English strings wrapped inside this macro.
8894 * doc/bison.texinfo (Bison Parser): Document _.
8895 * po/POTFILES.in: Include src/parse-gram.c, since it now
8896 includes translateable strings that parse-gram.y doesn't.
8898 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8900 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8901 reverting the 2004-10-11 change to this function.
8902 (symbol_check_alias_consistency): Don't call symbol_type_set
8903 if the type name is already correct.
8904 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8906 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8908 * tests/regression.at (Token definitions): Don't use a token named
8909 c, as that generates a "#define c ..." that runs afoul of buggy
8910 stdlib.h that uses the identifier c as a member of struct
8911 drand48_data. Problem reported by Horst Wente.
8913 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8915 * bootstrap: Change translation URL from
8916 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8917 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8918 redirection glitches. Problem reported by twlevo@xs4all.nl.
8920 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8922 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8923 after operands; POSIX says this isn't portable for the c99 command.
8925 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8927 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8928 immediately if a data overrun has occurred; this may help us track
8929 down what may be a spurious failure on MacOS.
8931 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8933 Respond to problems reported by twlevo@xs4all.nl.
8935 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
8937 * src/vcg.h: Comment fix.
8938 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
8939 (G_CMAX): Change to -1 instead of INT_MAX.
8941 * data/yacc.c (yyparse): Omit spaces before #line.
8943 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
8945 * src/tables.c (state_number_to_vector_number): Put it inside an
8946 "#if 0", since it's not currently used. Problem reported by
8949 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
8951 * src/output.c (escaped_output): Renamed from
8952 escaped_file_name_output, since we now use it for symbol tags as
8953 well. All uses changed.
8954 (symbol_destructors_output, symbol_printers_output):
8955 Escape symbol tags too.
8956 Problem reported by Matyas Forstner in
8957 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
8959 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
8961 * src/output.c (user_actions_output, token_definitions_output,
8962 symbol_destructors_output, symbol_printers_output): Likewise.
8963 * src/reader.c (prologue_augment): Likewise.
8964 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
8966 * src/vcg.c (output_edge): Don't quote linestyle arg.
8967 Problem reported by twlevo@xs4all.nl.
8969 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
8971 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
8972 example, reported by Derek M Jones. Also, make the example even
8973 more outrageous, to better illustrate how bad the problem is.
8975 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
8977 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
8978 putsym. Typo reported by Sebastian Piping.
8980 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
8982 * doc/bison.texinfo (Language and Grammar): some -> same
8983 (Epilogue): int he -> in the
8984 Typos reported by Sebastian Piping via Justin Pence.
8986 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
8988 * tests/glr-regression.at (Improper handling of embedded actions
8989 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
8990 embedded actions and $-N in GLR parsers", work around an Autoconf bug
8991 with dollar signs in test names.
8992 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
8993 for a similar reason.
8995 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
8997 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
8998 wants to redefine G_VIEW.
9000 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9002 * src/vcg.c (get_view_str): Remove case for normal_view.
9003 Problem reported by twlevo@xs4all.nl.
9005 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9007 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9008 Problem reported by twlevo@xs4all.nl.
9010 * doc/bison.texinfo: Change @dircategory from "GNU programming
9011 tools" to "Software development". Requested by Richard Stallman
9014 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9016 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9017 Problem reported by twlevo@xs4all.nl.
9019 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9021 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9022 keyword; it's not needed with modern compilers, and it doesn't
9023 affect correctness with older compilers. Suggested by
9026 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9028 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9029 gcc -Wswitch-default.
9030 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9031 * data/yacc.c (yyparse): Likewise.
9033 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9035 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9036 already. Let config.h define any nonstandard values.
9038 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9040 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9041 for the benefit of slower hosts. Problem reported by
9044 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9046 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9047 being defined and not used.
9048 * data/lalr1.cc (yyparse): Likewise.
9049 Use "if (false)" rather than "if (0)".
9051 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9053 * TODO: Mention that we should allow NUL bytes in tokens.
9055 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9057 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9058 Problem reported by Hans Aberg.
9060 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9062 * src/getargs.c (version): Happy new year; update overall
9063 program copyright date from 2004 to 2005.
9065 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9066 Problem reported by Hans Aberg.
9067 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9068 (Output file names.): Add a test for the case when standard output
9071 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9073 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9074 to fix an oversight in the Bison 2.0 manual.
9076 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9078 * NEWS: Version 2.0. Reformat the existing news items since
9079 1.875, so that related items are grouped together.
9080 * configure.ac (AC_INIT): Bump version to 2.0.
9081 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9083 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9084 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9085 otherwise, we're not testing alloca. Unfortunately there's no
9086 simple way to consult HAVE_ALLOCA here.
9088 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9091 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9092 hand. This avoids a warning about comparing int to size_t when
9093 GCC warnings are enabled.
9095 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9097 * NEWS: Bison-generated parsers no longer default to using the
9098 alloca function (when available) to extend the parser stack, due
9099 to widespread problems in unchecked stack-overflow detection.
9100 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9101 responsibility to set it to a positive value. This lets the user
9102 specify a value that is not a preprocessor constant.
9103 * data/yacc.c (YYMAXDEPTH): Likewise.
9104 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9105 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9106 to be a compile-time constant. However, explain the constraints on it.
9107 Also, explain the constraints on YYINITDEPTH.
9108 (Table of Symbols): Explain that alloca is no longer the default.
9109 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9112 * doc/bison.texinfo (Location Default Action): Mention that n must
9113 be zero when k is zero. Suggested by Frank Heckenbach.
9115 2004-12-22 Akim Demaille <akim@epita.fr>
9117 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9118 (parser::state_type, parser::semantic_type, parser::location_type):
9119 Private, not public.
9120 (parser::parse): Return ints, not bool.
9121 Returning a bool introduces a problem: 0 corresponds to false, and
9122 it seems weird to return false on success. Returning true changes
9123 the conventions for yyparse.
9124 Alternatively we could return void and send an exception.
9125 There is no clear consensus (yet?).
9126 (state_stack, semantic_stack, location_stack): Rename as...
9127 (state_stack_type, semantic_stack_type, location_stack_type): these.
9128 Private, not public.
9129 * tests/c++.at: New.
9130 * tests/testsuite.at, tests/Makefile.am: Adjust.
9132 2004-12-21 Akim Demaille <akim@epita.fr>
9134 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9136 2004-12-21 Akim Demaille <akim@epita.fr>
9138 Don't impose std::string for filenames.
9140 * data/lalr1.cc (b4_filename_type): New.
9141 (position::filename): Use it.
9142 (parser.hh): Move the inclusion of stack.hh and location.hh below
9143 the user code, so that needed headers for the filename type can be
9145 Forward declare them before the user code.
9146 * tests/Makefile.am (check-local, installcheck-local): Pass
9147 TESTSUITEFLAGS to the TESTSUITE.
9149 2004-12-20 Akim Demaille <akim@epita.fr>
9151 Use more STL like names: my_class instead of MyClass.
9153 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9154 (SemanticStack, SemanticType, StateStack, StateType)
9155 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9156 (Parser::value): Rename as...
9157 (location_stack, location_type, rhs_number_type, semantic_stack)
9158 (semantic_type, state_stack, state_type, token_number_type, stack)
9159 (slice, traits, parser::yylloc, parser::yylval): these.
9161 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9163 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9165 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9166 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9168 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9170 Remove uses of 'short int' and 'unsigned short int'. This raises
9171 some arbitrary limits. It uses more memory but nowadays that's
9172 not much of an issue.
9174 This change does not affect the generated parsers; that's a different
9175 task, as some users will want to conserve memory there.
9177 Ideally we should use size_t to represent all object counts, and
9178 something like ptrdiff_t to represent signed differences of object
9179 counts; but that will require more code-cleanup than I have the
9180 time to do right now.
9182 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9183 Use size_t, not int or short int, to count objects.
9184 * src/closure.c (nritemset, closure): Likewise.
9185 * src/closure.h (nritemset, closure): Likewise.
9186 * src/nullable.c (nullable_compute): Likewise.
9187 * src/print.c (print_core): Likewise.
9188 * src/print_graph.c (print_core): Likewise.
9189 * src/state.c (state_compare, state_hash): Likewise.
9190 * src/state.h (struct state): Likewise.
9191 * src/tables.c (default_goto, goto_actions): Likewise.
9193 * src/gram.h (rule_number, rule): Use int, not short int.
9194 * src/output.c (prepare_rules): Likewise.
9195 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9196 errs, reductions): Likewise.
9197 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9199 * src/tables.c (vector_number, tally, action_number,
9200 ACTION_NUMBER_MINIMUM): Likewise.
9201 * src/output.c (muscle_insert_short_int_table): Remove.
9203 2004-12-17 Akim Demaille <akim@epita.fr>
9205 * data/lalr1.cc: Extensive Doxygenation.
9206 (error_): Rename as...
9207 (error): this, since it is visible to the user.
9209 (Parser::message): Now an automatic variable from...
9210 (Parser::yyreport_syntax_error_): here.
9211 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9213 * tests/input.at: Escape $.
9215 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9217 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9218 Parenthesize rhs to avoid obscure problems with mistakes like
9219 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9220 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9221 b4_rhs_location): Likewise.
9222 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9223 b4_rhs_location): Likewise.
9225 2004-12-16 Akim Demaille <akim@epita.fr>
9227 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9228 yacc.c: be sure to stay within yycheck_.
9229 * tests/actions.at: Re-enable C++ tests.
9231 2004-12-16 Akim Demaille <akim@epita.fr>
9233 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9236 2004-12-16 Akim Demaille <akim@epita.fr>
9238 Use #define to handle the %name-prefix.
9240 * data/glr.c, data/yacc.c: Comment changes.
9241 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9242 so that one can refer to yylex in the parser file, and have it
9243 renamed, as is the case with other skeletons.
9245 2004-12-16 Akim Demaille <akim@epita.fr>
9247 Move lalr1.cc internals into yy*.
9249 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9250 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9251 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9252 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9253 (empty_, final_, terror_, errcode_, ntokens_)
9254 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9255 (looka_, ilooka_, error_range_, nerrs_):
9257 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9258 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9259 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9260 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9261 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9262 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9263 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9264 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9267 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9269 Fix some problems reported by twlevo at xs4all.
9270 * src/symtab.c (symbol_new): Report an error if the input grammar
9271 contains too many symbols. This is better than calling abort() later.
9272 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9273 (struct node, struct graph):
9274 Rename member expand to stretch. All uses changed.
9275 (struct graph): Remove member layoutalgorithm. All uses removed.
9276 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9277 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9279 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9281 2004-12-15 Akim Demaille <akim@epita.fr>
9283 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9284 Add more Doxygen comments.
9285 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9286 (report_syntax_error_, translate_): Rename as...
9287 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9288 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9290 2004-12-15 Akim Demaille <akim@epita.fr>
9292 * data/lalr1.cc (lex_): Rename as...
9294 Move the trace here.
9295 Take the %name-prefix into account.
9296 Reported by Alexandre Duret-Lutz.
9298 2004-12-15 Akim Demaille <akim@epita.fr>
9300 Simplify the C++ parser constructor.
9302 * data/lalr1.cc (debug_): Rename as...
9303 (yydebug_): so that the parser's internals are always in the yy*
9306 (b4_parse_param_decl): Remove the leading comma as it is now only
9307 called as unique argument list.
9308 (Parser::Parser): Remove the constructor accepting a location and
9309 an initial debugging level.
9310 Remove from the other ctor the argument for the debugging level.
9311 (debug_level_type, debug_level, set_debug_level): New.
9313 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9316 2004-12-15 Akim Demaille <akim@epita.fr>
9318 Remove b4_root related material: failure experiment
9319 (which goal was to allow to derive from a class).
9321 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9322 definitions and uses.
9324 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9326 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9327 not 2, since it's not portable to subtract 1 from the start of an
9328 array. The new item 0 is never set or used. All uses changed.
9330 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9331 the default definition of YYLLOC_DEFAULT. Problem reported
9332 by Frank Heckenbach.
9334 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9336 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9337 the normal case and one for the error case. Just use the
9338 first one uniformly. Problem reported by Frank Heckenbach.
9339 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9340 use exactly the same macro in both places.
9341 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9342 so that the normal-case YYRHSLOC works for the error case too.
9344 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9345 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9346 * doc/bison.texinfo (Location Default Action): Don't claim that
9347 we have an array of locations. Use the same macro for both glr
9348 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9351 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9353 * HACKING: Update email addresses to send announcements to.
9355 * configure.ac (AC_INIT): Bump version to 1.875f.
9357 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9359 * NEWS: Version 1.875e.
9360 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9362 * src/scan-skel.l: Include "complain.h", for "fatal".
9364 * src/relation.h (relation_print, relation_digraph):
9365 Relation sizes are of type relation_node, not size_t (this is
9366 merely a doc fix, since the two types are equivalent).
9367 (relation_transpose): Relation sizes are of type relation_node,
9369 * src/relation.c: Likewise.
9370 (top, infinity): Now of type relation_node, not int.
9371 (traverse, relation_transpose): Use relation_node, not int.
9373 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9374 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9375 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9377 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9378 specifying whether the test should be skipped. Use it tp
9379 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9380 fail on some hosts, and should be skipped.
9382 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9384 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9385 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9386 unless otherwise specified below.
9388 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9389 to allocate kernel_base, kernel_items, kernel_size, since
9390 they needn't be initialized to 0.
9391 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9392 * src/closure.c (new_closure): Likewise, for itemset.
9393 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9394 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9395 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9396 (build_relations): Likewise for edge, states1, includes.
9397 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9398 * src/reader.c (packgram): Likewise, for ritem, rules.
9399 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9400 * src/relation.c (relation_digraph): Likewise for VERTICES.
9401 (relation_transpose): Likewise for new_R, end_R.
9402 * src/symtab.c (symbols_token_translations_init): Likewise for
9404 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9405 (token_actions): Likewise for yydefact, actrow, conflrow,
9407 (save_column): Likewise for froms[symno], tos[symno].
9408 (goto_actions): Likewise for state_count.
9409 (pack_table): Likewise for base, pos, check.
9410 (tables_generate): Likewise for width.
9412 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9413 for initial core. Just have a separate core, so we needn't worry
9414 about whether kernel_size and kernel_base are initialized.
9416 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9417 kernel_size, kernel_items): Remove unnecessary initialization.
9418 * src/conflicts.c (conflicts): Likewise.
9419 * src/derives.c (derives): Likewise.
9420 * src/muscle_tablc (muscle_insert): Likewise.
9421 * src/relation.c (relation_digraph): Likewise.
9422 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9423 conflrow, conflict_table, conflict_list, table, check):
9426 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9427 This is because all callers pass unsigned int.
9428 * src/closure.h (new_closure): Likewise.
9430 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9431 (build_relations): Initialize includes[i] in all cases.
9432 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9433 and rules[ruleno].precsym. Initialize members in order.
9434 * src/relation.c (relation_transpose): Always initialize new_R[i]
9436 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9438 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9439 conflict_list[0] was always 0, but now it isn't initialized.
9441 * src/table.c (table_grow): When conflict_table grew, the grown
9442 area wasn't cleared. Fix this.
9444 * lib/.cvsignore: Add strdup.c, strdup.h.
9445 * m4/.cvsignore: Add strdup.m4.
9447 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9449 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9450 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9451 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9452 ngotos + 1 without checking for overflow.
9453 (build_relations): Use END_NODE, not -1, to denote end of edges.
9454 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9455 build_relations): Use goto_number, not int, for goto numbers.
9456 * src/tables.c (save_column, default_goto): Likewise.
9458 2004-11-23 Akim Demaille <akim@epita.fr>
9460 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9461 of #defining from yystype.
9462 Don't typedef yystype, C++ does not need it.
9463 This lets it possible to forward declare it as union.
9465 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9467 * bootstrap (gnulib_modules): Add extensions.
9468 Problem reported by Jim Meyering.
9470 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9472 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9473 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9474 src/system.h, src/tables.c: XFREE -> free, to accommodate
9475 recent change to gnulib xalloc.h.
9476 Problem reported by Jim Meyering.
9478 2004-11-17 Akim Demaille <akim@epita.fr>
9480 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9482 2004-11-17 Akim Demaille <akim@epita.fr>,
9483 Alexandre Duret-Lutz <adl@gnu.org>
9485 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9488 Use it instead of cdebug_.
9489 (Parser::debug_stream, Parser::set_debug_stream): New.
9490 (Parser::symprint_): Define cdebug_ for temporary backward
9492 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9495 2004-11-17 Akim Demaille <akim@epita.fr>
9497 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9498 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9499 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9500 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9502 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9504 * data/glr.c (yyloc_default): Remove; not used.
9505 Problem reported by Frank Heckenbach.
9507 2004-10-25 Akim Demaille <akim@epita.fr>
9509 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9510 Introduce another definition to address simple location arrays.
9511 (yyGLRStack): New member: yyerror_range.
9512 (yyrecoverSyntaxError, yyparse): Update it.
9513 (yyrecoverSyntaxError): Use it when shifting the error token to
9514 have an accurate range, equivalent to the one computed by both
9515 yacc.c and lalr1.cc.
9516 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9517 that column numbers start at column 0, as per GNU Coding
9518 Standards, the others tests, and the doc.
9519 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9520 Adjust to the above change (first column is 0).
9521 And adjust the location of the "<error>", now covering the whole
9524 2004-10-22 Akim Demaille <akim@epita.fr>
9525 and Paul Eggert <eggert@cs.ucla.edu>
9527 Remove some arbitrary limits on goto numbers and relations.
9528 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9529 initial values, since they're never used.
9530 (set_goto_map): ngotos is now unsigned, so test for overflow
9531 by seeing whether it wraps around to zero.
9532 * src/lalr.h (goto_number): Now size_t, not short int.
9533 (GOTO_NUMBER_MAXIMUM): Remove.
9534 * src/relation.c (relation_print, traverse, relation_transpose):
9535 Check for END_NODE rather than looking at sign.
9536 * src/relation.h (END_NODE): New macro.
9537 (relation_node): Now size_t, not short int.
9539 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9541 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9542 keyword, not an identifier. Problem reported by Baron Schwartz in
9543 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9545 2004-10-11 Akim Demaille <akim@epita.fr>
9547 * src/symtab.c (symbol_check_alias_consistency): Also check
9548 type names, destructors, and printers.
9549 Reported by Alexandre Duret-Lutz.
9550 Recode the handling of associativity and precedence in terms
9551 of symbol_precedence_set.
9552 Accept no redeclaration at all, not even equal to the previous
9554 (redeclaration): New.
9555 Use it to factor redeclaration complaints.
9556 (symbol_make_alias): Don't set the type of the alias, let
9557 symbol_check_alias_consistency do it as for other features.
9558 * src/symtab.h (symbol): Add new member prec_location, and
9560 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9561 * tests/input.at (Incompatible Aliases): New.
9563 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9565 .cvsignore fixes to accommodate gnulib changes,
9566 and the practice of naming build directories "_build".
9567 * .cvsignore: Add "_*". Sort.
9568 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9569 * m4/.cvsignore: Add "*_gl.m4".
9571 2004-10-06 Akim Demaille <akim@epita.fr>
9573 * src/parse-gram.y (add_param): Fix the truncation of trailing
9576 2004-10-05 Akim Demaille <akim@epita.fr>
9578 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9579 whether the reducion was empty or not. This leaves room to
9580 improve the use of YYLLOC_DEFAULT in such a case.
9581 lalr1.cc is still experimental, so changing this is acceptable.
9582 And finally, there are probably not many users who changed the
9583 handling of locations in GLR, so changing is admissible too.
9585 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9586 empty reduction, set @$ to an empty location ending the previously
9588 Adjust uses to make sure the code is triggered on empty
9590 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9591 expected output: empty reductions have empty locations.
9593 2004-09-29 Akim Demaille <akim@epita.fr>
9595 * data/lalr1.cc: Move towards a more standard C++ coding style
9596 for templates: Class < T > -> Class<T>.
9598 2004-09-29 Akim Demaille <akim@epita.fr>
9600 * data/lalr1.cc: Reinstall the former ctor, for sake of
9601 compatibility, but warn it will be removed.
9602 Move towards a more standard C++ coding style (i.e., type *var ->
9605 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9607 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9608 since it's less likely to work if NULs are involved in the future.
9610 2004-09-27 Akim Demaille <akim@epita.fr>
9612 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9614 2004-09-27 Akim Demaille <akim@epita.fr>
9616 * data/lalr1.cc (b4_parse_param_decl_1): New.
9617 (b4_parse_param_decl): Use it to have different names between attribute
9619 (b4_cc_constructor_call): Likewise.
9621 2004-09-24 Akim Demaille <akim@epita.fr>
9623 * src/parse-gram.y (add_param): Strip the leading and trailing
9624 blanks from a formal argument declaration.
9625 (YY_LOCATION_PRINT): New.
9627 2004-09-24 Akim Demaille <akim@epita.fr>
9629 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9632 2004-09-24 Akim Demaille <akim@epita.fr>
9634 * doc/bison.texinfo (Table of Symbols): Sort.
9636 2004-09-21 Akim Demaille <akim@epita.fr>
9638 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9639 the useless parentheses.
9640 Suggested by Paul Eggert.
9642 2004-09-20 Akim Demaille <akim@epita.fr>
9644 Let the initial-action act on the look-ahead, and use it for the
9645 "initial push" (corresponding to an hypothetical beginning-of-file).
9646 And let lalr1.cc honor %initial-action.
9648 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9650 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9651 (Parser::Parser): Remove the ctor that used to initialize it.
9652 (Parser::parse): Like in the other skeletons, issue the "starting
9653 parse" message before any action.
9654 Honor %initial-action.
9655 Initialize the stacks with the lookahead.
9656 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9658 Push them in the stacks.
9659 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9661 2004-09-20 Akim Demaille <akim@epita.fr>
9663 * doc/bison.texinfo (Initial Action Decl): New.
9665 2004-09-20 Akim Demaille <akim@epita.fr>
9667 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9668 clearer criterion to define it.
9669 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9670 When reducing on an empty RHS, use the latest stacked location as
9672 yylloc is not always available.
9673 * data/glr.c: Likewise.
9674 Also, honor initial-actions.
9676 2004-09-20 Akim Demaille <akim@epita.fr>
9678 * data/yacc.c (YY_LOCATION_PRINT): New.
9679 Define when we know YYLTYPE's structure, i.e., when the default
9680 YYLLOC_DEFAULT is used.
9681 * data/c.m4 (b4_yysymprint_generate): Use it.
9682 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9683 value of the result.
9684 (error_start_): Replace with...
9685 (error_range_): this location array.
9686 This allows to replace code relying on the implementation of
9687 locations by portable code.
9688 * data/yacc.c (yylerrsp): Replace with...
9689 (yyerror_range): this.
9690 Every time a token is popped, update yyerror_range[0], to have an
9691 accurate location for the error token.
9692 * data/glr.c (YY_LOCATION_PRINT): New.
9693 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9694 deference a pointer.
9695 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9696 report the location in %printers.
9698 * src/scan-skel.l: Instead of abort, report error messages to ease
9699 understanding skeleton scanning failures.
9701 2004-09-16 Akim Demaille <akim@epita.fr>
9703 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9704 (iterator, const_iterator): these, to be more in the C++ spirit.
9705 Also, return reverse iterators so that when displaying the stack
9706 we display its bottom first.
9707 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9709 We should probably use vector here though.
9711 2004-09-16 Akim Demaille <akim@epita.fr>
9713 Have more complete shift traces.
9715 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9716 to report Shifts instead of ad hoc YYDPRINTF invocations,
9717 including for the error token.
9718 * data/lalr1.cc (symprint_): Output the location.
9719 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9720 output the location within the %printer.
9721 Activate GLR tests, at least to make sure they compile properly.
9722 They still don't pass though.
9723 * tests/calc.at: Adjust expect verbose output, since now "Entering
9724 state..." is on a different line than the "Shifting" message.
9726 2004-09-08 Akim Demaille <akim@epita.fr>
9728 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9729 Bison directive from the Bison file to the invocation of this
9730 macro, so that these directives are passed to
9731 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9732 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9733 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9734 the extra Bison directives instead of the whole series.
9735 Change the grammar so that there are recoverable errors, and
9736 unrecoverable errors. Now we can have the parser give up before
9737 consuming the whole input. As a result we now can observe that
9738 the lookahead is freed when needed.
9739 Change the parser source to parse argv[1] instead of a hard coded
9741 Simplify yylex, and give a value and location to EOF.
9742 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9743 passed directives already coded in the file.
9744 Add some tests to check the location of "error".
9745 For some tests, the C++ parser is correct, and not yacc.c.
9746 For other tests, they provide different, but unsatisfying, values,
9747 so keep the C++ value so that at least one parser is "correct"
9748 according to the test suite.
9749 (Actions after errors): Remove, this is subsumed by the
9750 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9752 2004-09-06 Akim Demaille <akim@epita.fr>
9754 * data/lalr1.cc: Adjust the indentation of the labels.
9758 2004-09-06 Akim Demaille <akim@epita.fr>
9760 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9761 argument, an informative message.
9762 Call YY_SYMBOL_PRINT.
9763 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9764 * data/lalr1.cc (destruct_): Likewise.
9765 In addition, no longer depend on b4_yysymprint_generate and
9766 b4_yydestruct_generate to generate these functions, do it "by
9769 2004-09-03 Akim Demaille <akim@epita.fr>
9771 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9772 invoked, yydestruct the lookahead.
9773 * tests/calc.at (Calculator $1): Update the expected lengths of
9774 traces: there is an added line for the discarded lookahead.
9775 * doc/bison.texinfo (Destructor Decl): Some rewording.
9776 Define "discarded" symbols.
9778 2004-09-02 Akim Demaille <akim@epita.fr>
9780 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9782 2004-09-02 Akim Demaille <akim@epita.fr>
9784 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9785 (YYDSYMPRINTF): Rename as...
9786 (YY_SYMBOL_PRINT): this.
9787 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9789 Use it instead of direct symprint_ calls.
9790 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9793 2004-09-02 Akim Demaille <akim@epita.fr>
9795 * data/lalr1.cc (b4_yysymprint_generate): New.
9796 (symprint_): New member function, defined when YYDEBUG.
9797 Use it consistently instead of token/nterm debugging output by
9799 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9800 %printer calls to use cdebug_ when using lalr1.cc.
9802 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9804 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9805 with #ifdef YYDEBUG.
9807 2004-08-26 Akim Demaille <akim@epita.fr>
9809 * doc/bison.texinfo (Implementing Loops): Rename as...
9810 (Implementing Gotos/Loops): this.
9812 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9814 Adjust to latest gnulib.
9815 * bootstrap (gnulib_modules): Add xalloc-die.
9816 Set LC_ALL=C so that file names sort consistently.
9817 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9818 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9819 uintmax_t.m4, ulonglong.m4.
9820 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9821 po.m4 since we are now using _gl.m4 instead.
9823 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9825 * src/scan-action.l: Remove. Scanning of semantic actions is
9826 handled in scan-gram.l.
9828 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9830 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9832 * src/location.h (struct): The file member is a uniqstr.
9833 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9835 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9837 Fix bug with non-%union parsers that have printers or destructors,
9838 which led to a Bison core dump. Reported by Peter Fales in
9839 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9841 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9842 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9843 not to our own type.
9844 * src/output.c (symbol_destructors_output, symbol_printers_output):
9845 Don't assume %union.
9846 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9847 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9848 UNION-FLAG. All callers changed.
9849 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9850 Use type char, not unsigned int, when declaring an array of char;
9851 this lets us remove a cast.
9852 (Printers and Destructors): Add non-%union test cases.
9854 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9856 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9857 GLR writeups. E.g., avoid frenchspacing and the future tense,
9858 change "lookahead" to "look-ahead", and change "wrt" to "with
9861 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9863 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9864 New sections, split off from the GLR Parsers section. Put the new
9865 Simple GLR Parser near the start of the GLR section, for clarity.
9866 Rewrite connective text.
9868 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9870 * doc/bison.texinfo (Simple GLR Parsers): New section.
9872 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9874 * NEWS, TODO, doc/bison.texinfo:
9875 Use "look-ahead" instead of "lookahead", to be consistent.
9876 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9877 while we're fixing "look-ahead".
9878 * src/conflicts.c (shift_set): Renamed from shiftset.
9879 (look_ahead_set): Renamed from lookaheadset.
9880 * src/print.c: Likewise.
9881 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9882 name for "lookahead".
9883 (report_types, usage): Likewise.
9884 * src/getargs.h (report_look_ahead_tokens): Renamed from
9886 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9888 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9889 (look_ahead_tokens_print): Renamed from lookaheads_print.
9890 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9891 state_rule_lookaheads_print.
9892 * src/state.h: Likewise.
9893 (reductions.look_ahead_tokens): Renamed from lookaheads.
9894 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9895 AT_DATA_LOOKAHEADS_GRAMMAR.
9897 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9899 * README: Update location of patched M4 distribution.
9901 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9903 Don't assume the C++ compiler takes the same arguments as the C compiler
9905 * configure.ac (O0CXXFLAGS): New var.
9906 * tests/atlocal.in (CXXFLAGS): Use it.
9908 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9910 Fix some "make check" problems with C++ reported by
9911 Albert Chin-A-Young for Tru64 C++ in this thread:
9912 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9914 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9915 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9916 Output to a .cc file for C++, not to a .c file.
9917 * tests/calc.at (AT_CHECK_CALC): Likewise.
9918 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9919 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9921 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9923 * tests/calc.at, tests/actions.at: Workaround for SGI
9924 C++ compiler. (trivial change)
9926 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9928 Spent a few hours checking out which prerequisite versions the
9929 current sources actually require. I went all the way back to
9930 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9931 a seemingly endless set of combinations of versions more recent
9932 than that. The bottom line is that the current sources require
9933 fairly recent versions of the build tools, and it'll be some work
9935 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
9936 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
9937 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
9938 Add comments explaining why those particular versions are
9941 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
9942 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
9943 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
9945 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
9946 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
9948 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
9950 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
9951 0.11.5. Suggested by Bruno Haible.
9952 * bootstrap: Remove gettext version checking.
9954 * doc/bison.texinfo (Decl Summary): Also mention that %union
9955 can depend on prerequisite types. Problem reported by Tim
9958 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
9960 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
9961 * README-alpha: Don't tell people not to package this.
9963 * bootstrap: Don't assume $(...) works; use `...` instead.
9964 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
9967 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
9968 put into the -d output file, and mention what to do if YYSTYPE is
9971 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
9973 Undo change made earlier today: it caused autopoint to not bring
9974 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
9977 * bootstrap: Check that gettext version matches what's in
9978 configure.ac. Warn users to ignore robots.txt ERROR 404.
9979 * bootstrap: Undo today's earlier change (logged below).
9980 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
9982 The gettext version checking is causing more trouble than it's
9983 curing; remove it. Problem reported by Paul Hilfinger.
9985 * bootstrap: Issue a warning that one can expect a message
9986 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
9987 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
9989 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
9991 Ensure that the C++ compiler used for testing actually works on a
9992 simple test program; if not, skip the C++-related tests. Problem
9993 reported by Vin Shelton in:
9994 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
9996 * m4/cxx.m4: New file.
9997 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
9998 * tests/atlocal.in (BISON_CXX_WORKS): Add.
9999 * tests/local.at (AT_COMPILE_CXX): Use it.
10001 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10003 * data/glr.c (yylloc): Output this macro even if locations are not
10004 being generated, as the GLR parser needs it even in that case.
10005 Problem reported by Troy A. Johnson
10006 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10008 * configure.ac (AC_INIT): Update to 1.875e.
10010 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10012 * NEWS: Version 1.875d.
10013 * configure.ac (AC_INIT): Likewise.
10014 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10016 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10017 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10018 lalr1.cc runs afoul of the first, and the last two are no longer
10019 supported by GCC 3.4.0.
10020 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10021 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10023 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10025 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10026 unsigned int, for compatibility with latest gnulib hash module.
10027 * src/state.c (state_hash, state_hasher): Likewise.
10028 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10029 * src/uniqstr.c (hash_uniqstr): Likewise.
10031 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10033 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10035 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10036 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10037 character and string literals.
10038 (unexpected_end): New function.
10039 (unexpected_eof): Use it.
10040 (unexpected_newline): New function.
10041 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10044 * NEWS: Document %expect-rr.
10046 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10047 Fix typo by replacing $1 with $option.
10048 Remove more 'intl'-related files.
10049 Don't DEFUN AM_INTL_SUBDIR twice.
10051 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10052 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10054 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10055 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10056 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10057 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10058 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10059 * src/.cvsignore: Add *.output.
10061 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10062 gets copied to the output file.
10064 2004-04-28 Paul Eggert <eggert@twinsun.com>
10066 Get files from the gnulib and po repositories, instead of relying
10067 on them being in our CVS. Upgrade to latest versions of gnulib
10070 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10071 * bootstrap: Bootstrap from gnulib and po repositories.
10072 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10073 * README-cvs: Document these changes. Remove version numbers from
10074 mentions of build tools, since they change so often. Mention Flex.
10076 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10077 (gl_USE_SYSTEM_EXTENSIONS): Add.
10078 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10079 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10081 (AC_ISC_POSIX): Remove; we no longer support this
10082 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10083 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10084 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10085 Do not check for C89 headers, except for locale.h which is used
10086 by the Yacc library and must port to K&R hosts.
10087 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10088 Do not check for C89 functions, except for setlocale which is
10089 used by the Yacc library.
10090 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10091 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10092 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10093 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10094 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10095 AM_GNU_GETTEXT): Remove; now done by:
10096 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10097 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10100 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10101 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10102 Define to empty, as gnulib.mk will do the rest for us.
10103 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10105 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10106 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10108 * src/files.c: Include gnulib's xstrndup.h.
10110 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10111 (REALLOC): Use xnrealloc, for likewise.
10112 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10113 (strnlen, memrchr): Remove decls; functions no longer used.
10114 Include <stpcpy.h>.
10116 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10117 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10118 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10119 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10120 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10121 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10122 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10123 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10124 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10125 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10126 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10127 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10128 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10129 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10130 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10131 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10132 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10133 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10134 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10135 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10136 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10137 Remove, as these files are now generated automatically
10138 by bootstrap or automake.
10140 * po/ChangeLog: Remove: all but one entry was a duplicate
10141 of this file, and I moved that 2000-11-02 entry here.
10143 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10144 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10145 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10146 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10147 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10148 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10149 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10150 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10151 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10152 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10153 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10155 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10156 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10157 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10158 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10159 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10160 * src/.cvsignore: Remove *_.c.
10163 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10164 support it. (The latest stable gzip doesn't.)
10166 2004-04-27 Paul Eggert <eggert@twinsun.com>
10168 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10169 case, as stos_ is now used by destructors due to the 2004-02-09
10172 Remove more K&R C support.
10173 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10174 * lib/subpipe.c (errno): Remove decl.
10175 Include <stdlib.h> unconditionally.
10176 (EXIT_FAILURE): Remove macro.
10177 * src/complain.c (vfprintf, strerror): Remove.
10178 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10180 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10181 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10182 (strchr, strspn, memchr): Remove decls.
10183 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10184 unconditionally. Do not declare perror.
10185 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10188 * src/complain.c (_): Remove useless defn, as system.h defines this.
10190 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10191 with latest obstack.h.
10192 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10193 to procedure types, as obstack.h now does that for us.
10194 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10196 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10197 so that this include file can stand alone.
10198 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10199 does this now. Include subpipe.h first after config.h, to
10200 test whether it can stand alone.
10202 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10203 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10204 unused declaration.
10206 * tests/synclines.at (%union synch line): Put a dummy member in
10207 the union, because empty unions aren't allowed in C. Caught
10210 2004-04-13 Jim Meyering <jim@meyering.net>
10212 * src/conflicts.c (conflicts_print): Correct format string typo:
10213 use `%%' to produce literal `%'. (trivial change)
10215 2004-03-30 Paul Eggert <eggert@twinsun.com>
10217 * src/getargs.c (version): Update copyright year to 2004.
10219 * data/c.m4 (b4_int_type): Use 'short int' rather than
10220 'short', and similarly for 'long', 'unsigned', etc.
10221 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10222 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10223 yy_yypstack, yydumpstack): Likewise.
10224 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10225 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10227 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10228 yy_stack_print, yyparse): Likewise.
10229 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10230 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10231 * lib/bitset.c (bitset_print): Likewise.
10232 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10233 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10234 * lib/bitsetv.c (bitsetv_dump): Likewise.
10235 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10236 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10238 * src/LR0.c (allocate_itemsets): Likewise.
10239 * src/gram.h (rule_number, rule): Likewise.
10240 * src/lalr.h (goto_number): Likewise.
10241 * src/nullable.c (nullable_compute): Likewise.
10242 * src/output.c (prepare_rules): Likewise.
10243 * src/relation.c (relation_print, relation_digraph): Likewise.
10244 * src/relation.h (relation_node): Likewise.
10245 * src/state.h (state_number, transitions, errs, reductions,
10246 struct state): Likewise.
10247 * src/symtab.h (symbol_number, struct symbol): Likewise.
10248 * src/tables.c (vector_number, tally, action_number,
10249 default_goto, goto_actions): Likewise.
10250 * tests/existing.at (GNU Cim Grammar): Likewise.
10251 * tests/regression.at (Web2c Actions): Likewise.
10253 * src/output.c (muscle_insert_short_int_table): Renamed from
10254 muscle_insert_short_table. All uses changed.
10256 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10258 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10259 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10260 Add %expect-rr rule.
10262 * src/scan-gram.l: Recognize %expect-rr.
10264 * src/conflicts.h (expected_sr_conflicts): Rename from
10265 expected_conflicts.
10266 (expected_rr_conflicts): Declare.
10268 * src/conflicts.c (expected_sr_conflicts): Rename from
10269 expected_conflicts.
10270 (expected_rr_conflicts): Define.
10271 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10273 Use expected_sr_conflicts in place of expected_conflicts.
10274 Warn if expected_rr_conflicts used in non-GLR parser.
10276 * doc/bison.texinfo: Add documentation for %expect-rr.
10278 2004-03-08 Paul Eggert <eggert@gnu.org>
10280 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10281 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10283 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10285 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10286 * src/scan-gram.l (scan_integer): New function.
10288 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10289 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10290 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10291 Say "long int", not "long", for uniformity with GNU style.
10293 2004-02-25 Paul Eggert <eggert@twinsun.com>
10295 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10296 compilers. This fixes a problem with Intel's C++ compiler being
10297 chatty, reported by Guido Trentalancia in
10298 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10300 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10302 Support %destructor and merge error locations in lalr1.cc.
10304 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10305 (Parser::stos_): Define unconditionally.
10306 (Parser::destruct_): New method. Generate its body with
10307 b4_yydestruct_generate.
10308 (Parser::error_start_): New attribute.
10309 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10310 token which are discarded.
10311 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10312 error_start_ when erroneous token are discarded.
10313 (Parser::parse) <yyerrlab1>: Compute the location of the error
10314 token so that it covers all the discarded tokens.
10315 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10316 it can be called with `%skeleton "lalr1.cc"', and do that.
10318 2004-02-02 Paul Eggert <eggert@twinsun.com>
10320 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10321 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10322 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10323 There's no need to mention top_builddir since Automake does that
10325 (INCLUDES): Remove, as Automake says it's obsolescent.
10326 Contents migrated into AM_CPPFLAGS as described above.
10327 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10329 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10331 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10332 (yyreportSyntaxError): Handle case where lookahead token is
10335 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10337 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10338 resulting parsers are compilable with C++.
10340 2003-12-23 Paul Eggert <eggert@twinsun.com>
10342 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10343 * src/output.c (output_skeleton): Rename local var.
10344 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10345 Bison tokens, as this runs afoul of the 2003-10-07 change that
10346 disallowed NUL bytes in character constants or string literals.
10348 * tests/local.at: Require Autoconf 2.59's Autotest.
10349 * tests/testsuite.at: Don't include local.at, since we now assume
10350 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10352 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10353 multiple inclusion warnings.
10355 2003-12-02 Akim Demaille <akim@epita.fr>
10357 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10361 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10363 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10365 2003-10-07 Paul Eggert <eggert@twinsun.com>
10367 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10368 if testsuite doesn't exist.
10370 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10371 literals, unfortunately.
10372 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10373 Complain about NUL bytes in character constants or string literals.
10375 2003-10-05 Paul Eggert <eggert@twinsun.com>
10377 * NEWS: Don't document %no-default-prec, as it's still
10379 * doc/bison.texinfo: Document %no-default-prec only if
10380 the defaultprec flag is set. Normally it's not.
10382 2003-10-04 Paul Eggert <eggert@twinsun.com>
10384 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10385 non-modifiable lvalue, instead of a modifiable one.
10386 * doc/bison.texinfo (Actions): Document that $$ can
10387 be assigned to. Do not claim that $$ and $N are
10388 array element references: user code should not rely on this.
10390 2003-10-01 Paul Eggert <eggert@twinsun.com>
10392 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10393 (grammar_declaration): Use it.
10394 * src/scan-gram.l: New token %no-default-prec.
10395 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10396 * NEWS, doc/bison.texinfo: Document the above.
10398 2003-10-01 Akim Demaille <akim@epita.fr>
10400 VCG no longer supports long_straight_phase.
10402 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10403 * src/print_graph.c (print_graph): Adjust.
10405 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10406 and Paul Eggert <eggert@twinsun.com>
10408 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10409 Table of Symbols): Document %default-prec.
10410 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10411 (grammar_declaration): Set default_prec on %default-prec.
10412 * src/scan-gram.l (%default-prec): New token.
10413 * src/reader.h (default_prec): New flag.
10414 * src/reader.c: Likewise.
10415 (packgram): Handle it.
10416 * tests/conflicts.at (%default-prec without %prec,
10417 %default-prec with %prec, %default-prec 1): New tests.
10419 2003-09-30 Paul Eggert <eggert@twinsun.com>
10421 * tests/testsuite.at: Include local.at, not input.at, fixing
10422 a typo in the 2003-08-25 patch.
10424 2003-08-27 Akim Demaille <akim@epita.fr>
10426 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10429 2003-08-26 Akim Demaille <akim@epita.fr>
10431 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10432 "<\#" to avoid magic from Gnus when posting parts of this script.
10434 2003-08-26 Akim Demaille <akim@epita.fr>
10436 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10437 (Parser::parse): here.
10438 Adjust: nerrs and errstatus is now replaced by...
10439 (Parser::nerrs_, Parser::errstatus_): New.
10441 2003-08-25 Akim Demaille <akim@epita.fr>
10443 * config/announce-gen, Makefile.cfg: New.
10444 * Makefile.am: Adjust.
10445 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10446 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10448 2003-08-25 Akim Demaille <akim@epita.fr>
10450 When reducing initial empty rules, Bison parser read an initial
10451 location that is not defined. This results in garbage, and that
10452 affects Bison's own parser. Therefore we need (i) to extend Bison
10453 to support a means to initialize this location, and (ii) to use
10454 this CVS Bison to fix CVS Bison's parser.
10456 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10458 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10459 * src/parse-gram.y: Adjust.
10460 (%initial-action): New.
10461 (%error-verbose): Since we require CVS Bison, there is no reason
10463 * src/scan-gram.l: Adjust.
10464 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10465 * data/yacc.c (yyparse): Use b4_initial_action.
10467 2003-08-25 Akim Demaille <akim@epita.fr>
10469 * doc/bison.texinfo: Don't promote stdout for error messages.
10471 2003-08-25 Akim Demaille <akim@epita.fr>
10473 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10474 From Alexandre Duret-Lutz.
10476 2003-08-25 Akim Demaille <akim@epita.fr>
10480 2003-08-25 Akim Demaille <akim@epita.fr>
10482 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10485 2003-08-25 Akim Demaille <akim@epita.fr>
10487 * data/lalr1.cc (Parser::reduce_print_): New.
10490 2003-08-25 Akim Demaille <akim@epita.fr>
10492 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10493 error recovery loops. This patch is based on
10494 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10495 Also, augment the similarity between lalr1.cc and yacc.c.
10496 Note: the locations of error recovery rules are not correct yet.
10498 * data/lalr1.cc: Comment changes to augment the similarity between
10499 lalr1.cc and yacc.c.
10500 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10501 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10502 yyerrlab), when hitting EOF, pop the whole stack here instead of
10503 merely falling thru the default error handling mechanism.
10504 (yyerrorlab): New label, with the old contents of YYERROR,
10505 plus the following change: pop the stack of rhs corresponding
10506 to the production that invoked YYERROR. That is how Yacc
10507 behaves (required by POSIX).
10508 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10511 2003-08-25 Akim Demaille <akim@epita.fr>
10513 Tune local.at so that people can "autom4te -l autotest calc.at -o
10514 calc" for instance, to extract a sub test suite.
10516 * tests/testsuite.at: Move the initialization, Autotest version
10517 requirement, and AT_TESTED invocation into...
10518 * tests/local.at: here.
10519 * tests/testsuite.at: Include it for compatibility with Autoconf
10521 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10524 2003-08-04 Paul Eggert <eggert@twinsun.com>
10526 Rework code slightly to avoid gcc -Wtraditional warnings.
10527 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10528 The returned value is now stored in *YY0. All callers changed.
10529 * src/output.c (merge_output): Adjust to the above change.
10531 2003-07-26 Paul Eggert <eggert@twinsun.com>
10533 * data/glr.c (YYASSERT): New macro.
10534 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10535 yyresolveStates, yyprocessOneStack):
10536 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10537 Derived from a suggestion by Frank Heckenbach.
10539 2003-07-25 Paul Eggert <eggert@twinsun.com>
10541 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10542 for portability to K&R C (after ansi2knr, presumably). See
10543 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10544 by Frank Heckenbach, though I have omitted the structure-initialization
10545 part of his glr-knr.diff patch since I recall that the Portable
10546 C Compiler didn't require that change.
10548 Let the user specify how to allocate and free memory.
10549 Derived from a suggestion by Frank Heckenbach in
10550 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10551 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10552 All uses of free, malloc, realloc changed to use these macros,
10553 and unnecessary casts removed.
10554 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10556 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10558 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10559 use s.empty() rather than s == "" to test for empty string; see
10560 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10563 2003-06-25 Akim Demaille <akim@epita.fr>
10565 * config/depcomp, config/install-sh: Update from masters.
10567 2003-06-20 Paul Eggert <eggert@twinsun.com>
10569 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10570 and return properly parenthesized result.
10571 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10572 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10573 Remove unnecessary parentheses from uses.
10574 * doc/bison.texinfo (Location Default Action): Describe the
10575 conventions for parentheses.
10577 2003-06-19 Paul Eggert <eggert@twinsun.com>
10579 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10580 yyreportTree): Do not assume that size_t is the same width as int,
10581 when printing sizes. Print sizes using an unsigned format.
10582 Problem reported by Frank Heckenbach in
10583 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10585 Port to Forte Developer 7 C compiler.
10586 * data/glr.c (struct YYLTYPE): If locations are not being used,
10587 declare a single dummy member, as empty structs do not conform
10589 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10590 the Forte Developer 7 C compiler complains that end-of-loop
10591 code is not reached.
10593 2003-06-17 Paul Eggert <eggert@twinsun.com>
10595 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10596 avoid warnings from picky compilers about redefinition of PARAMS.
10598 2003-06-17 Paul Eggert <eggert@twinsun.com>
10602 * NEWS: Document 1.875b.
10604 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10605 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10606 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10607 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10608 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10609 per recent gettext manual's suggestion.
10610 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10611 Use prototypes, not old-style definitions.
10612 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10613 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10614 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10615 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10616 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10617 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10618 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10619 vbitset_or_and_cmp, vbitset_copy): Likewise.
10621 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10622 Do not include <stdlib.h>.
10623 (PARAMS): Define unconditionally for C89.
10624 (ATTRIBUTE_NORETURN): Remove.
10625 (ATTRIBUTE_UNUSED): Define unconditionally.
10627 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10628 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10629 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10630 * lib/vbitset.c, lib/vbitset.h: New files.
10631 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10632 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10635 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10636 `How Can I Reset @code{yyparse}', since texinfo does not allow
10637 arbitrary @ in node names.
10639 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10640 shouldn't be needed according to the gettext 0.12.1 documentation
10641 but which seem to be needed anyway: codeset.m4 glibc21.m4
10642 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10643 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10644 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10646 * lib/.cvsignore: Add stdbool.h.
10647 * m4/.cvsignore: Add nls.m4, po.m4.
10649 Upgrade to CVS gnulib.
10650 * stdbool_.h: File renamed from stdbool.h.in.
10651 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10653 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10654 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10655 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10656 (MOSTLYCLEANFILES): New var.
10657 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10658 (stdbool.h): New rule.
10659 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10660 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10661 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10662 m4/quote.m4: Upgrade to today's gnulib.
10664 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10665 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10666 the tests right now.
10667 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10668 yyerror are declared before use; C99 requires this.
10670 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10672 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10674 (yyrecoverSyntaxError): Correct the logic for setting and testing
10676 Correct comment on handling EOF.
10677 Allow states with only a default reduction, rather than failing
10678 (I can't quite reconstruct why these were not allowed before).
10680 Fixes to avoid problem that $-N rules in GLR parsers can cause
10681 buffer overruns, corrupting state.
10683 * src/output.c (prepare_rules): Output max_left_semantic_context
10685 * src/reader.h (max_left_semantic_context): New variable declaration.
10686 * src/scan-gram.l (max_left_semantic_context): Define.
10687 (handle_action_dollar): Update max_left_semantic_context.
10688 * data/glr.c (YYMAXLEFT): New definition.
10689 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10690 (yyresolveAction): Ditto.
10692 Fixes to problems with location handling in GLR parsers reported by
10693 Frank Heckenbach (2003/06/05).
10695 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10696 (YYRHSLOC): Add parentheses, and define only if locations used.
10697 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10698 locations not used.
10699 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10700 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10702 * tests/cxx-type.at: Exercise location information; update tests
10703 to differentiate output with and without locations.
10704 Remove forward declarations of yylex and yyerror---caused errors
10705 because default YYLTYPE not yet defined.
10706 Change semantic actions to compute strings, rather than printing
10707 them directly (to test proper passing of semantics values). Change
10708 output to prefix notation and update test data and expected results.
10709 (yylex): Track locations.
10710 (stmtMerge): Return value rather than printing, and include arguments
10713 2003-06-03 Paul Eggert <eggert@twinsun.com>
10715 Avoid warnings generated by GCC 2.95.4 when Bison is
10716 configured with --enable-gcc-warnings.
10717 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10718 yy::]b4_parser_class_name[::translate_,
10719 yy::Stack::operator[] (unsigned),
10720 yy::Stack::operator[] (unsigned) const,
10721 yy::Slice::operator[] (unsigned),
10722 yy::Slice::operator[] (unsigned) const):
10723 Rename local vars to avoid warnings.
10724 * tests/glr-regression.at (Improper handling of embedded actions
10725 and $-N in GLR parsers): Remove unused local variable from yylex.
10726 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10727 (void) as arg when not pure, since we now assume C89 when building
10728 Bison. Pacify GCC by using parameter.
10730 2003-06-02 Paul Eggert <eggert@twinsun.com>
10732 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10733 yy::Location::lines, yy::Location::columns): Rename arguments
10734 to avoid shadowing; this removes a warning generated by GCC 3.3.
10736 2003-06-01 Paul Eggert <eggert@twinsun.com>
10738 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10739 to g++, as GCC 3.3 complains if you do it.
10740 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10741 everything that WARNING_CFLAGS has, except omit warnings
10742 not suitable for C++.
10743 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10744 * tests/atlocal.in (CXXFLAGS): New var.
10745 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10747 Fix a GLR parser bug I reported in February; see
10748 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10749 The problem was that GLR parsers did not conform to the C standard,
10750 because actions like { $1 = $2 + $3; } expanded to expressions
10751 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10752 to a local variable. The C standard says that expressions
10753 like (var = f ()) + (var = f ()) have undefined behavior.
10754 Another problem was that GCC sometimes issues warnings that
10755 yyfill and its parameters are unused.
10757 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10758 as possibly unused.
10759 (yyfill): New function.
10761 (yyuserAction): Change type of yynormal to bool, so that it matches
10762 the new yyfill signature. Mark it as possibly unused.
10765 Follow up on a bug I reported in February, where a Bison-generated
10766 parser can loop. Provide a test case and a fix for yacc.c. I
10767 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10768 The original bug report is in:
10769 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10771 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10772 macro's size was becoming unwieldy.
10773 (yyerrlab): Do not discard an empty lookahead symbol, as this
10774 might destroy garbage.
10775 (yyerrorlab): New label, with the old contents of YYERROR,
10776 plus the following change: pop the stack of rhs corresponding
10777 to the production that invoked YYERROR. That is how Yacc
10778 behaves, and POSIX requires this behavior.
10779 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10780 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10781 Define 'alarm' to do nothing if unistd.h is not available.
10782 Add a new rule "exp: '-' error;" to test the above change to
10783 data/yacc.c. Use 'alarm' to abort any test taking longer than
10784 10 seconds, as it's probably looping.
10785 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10786 Also, the new yacc.c generates two fewer diagnostics for an
10789 2003-05-24 Paul Eggert <eggert@twinsun.com>
10791 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10792 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10793 This fixes a problem reported by John Bowman when the Compaq/HP
10794 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10795 -ansi -Wall -gall).
10796 * data/yacc.c (union yyalloc): Likewise.
10797 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10799 Switch from 'int' to 'bool' where that makes sense.
10801 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10802 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10803 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10804 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10805 Return or accept bool, not int. All callers changed.
10806 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10807 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10808 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10809 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10810 bitset_or_and_cmp_): Likewise.
10811 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10812 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10813 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10814 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10815 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10816 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10817 bitset_stats_or_and_cmp): Likewise.
10818 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10819 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10820 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10821 ebitset_xor_cmp): Likewise.
10822 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10823 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10824 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10825 lbitset_xor_cmp): Likewise.
10826 * lib/bbitset.h: Include <stdbool.h>.
10827 (struct bitset_vtable): The following members now return bool, not
10828 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10829 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10831 * src/conflicts.c (count_rr_conflicts): Likewise.
10832 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10834 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10835 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10836 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10837 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10838 graph_flag): Likewise.
10839 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10840 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10841 graph_flag): Likewise.
10842 * src/output.c (error_verbose): Likewise.
10843 * src/output.h (error_verbose): Likewise.
10844 * src/reader.c (start_flag, typed): Likewise.
10845 * src/reader.h (typed): Likewise.
10846 * src/getargs.c (LOCATIONS_OPTION): New constant.
10847 (long_options, getargs): Use it.
10848 * src/lalr.c (build_relations): Use bool, not int.
10849 * src/nullable.c (nullable_compute): Likewise.
10850 * src/print.c (print_reductions): Likewise.
10851 * src/tables.c (action_row, pack_vector): Likewise.
10852 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10853 * src/output.c (prepare): Use it.
10854 * src/output.c (token_definitions_output,
10855 symbol_destructors_output, symbol_destructors_output): Use string,
10856 not boolean integer, to keep track of whether to output separator.
10857 * src/print_graph.c (print_core): Likewise.
10858 * src/state.c (state_rule_lookaheads_print): Likewise.
10860 * config/install-sh: Sync from automake 1.7.5.
10862 2003-05-14 Paul Eggert <eggert@twinsun.com>
10864 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10865 semicolon after a grammar declaration, in the interest of possible
10866 future changes to the Bison input language.
10867 Do not allow a stray semicolon at the start of the grammar.
10868 (rhses.1): Allow one or more semicolons after any rule, including
10869 just before "|" as required by POSIX.
10870 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10873 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10875 %parse-param support for lalr1.cc.
10877 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10878 b4_cc_constructor_calls, b4_cc_constructor_call,
10879 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10881 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10882 parse-param arguments.
10883 (yy::b4_parser_class_name): Declare instance variables to
10884 hold parse-param arguments.
10885 * tests/calc.at: s/value/semantic_value/ because value clashes
10886 with a member of yy::b4_parser_class_name. Adjust C++ code
10887 to handle %parse-param. Enable %parse-param test in C++.
10889 2003-05-12 Paul Eggert <eggert@twinsun.com>
10891 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10892 English a bit. Fix fclose typo. Change "const char" to "char
10893 const", and use ANSI C rather than K&R for "main". Suggest
10894 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10895 and suggest yy_switch_to_buffer.
10897 2003-05-05 Paul Eggert <eggert@twinsun.com>
10899 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10900 C89. This avoids a diagnostic on compilers that define __STDC__
10901 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10902 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10904 2003-05-03 Paul Eggert <eggert@twinsun.com>
10906 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10907 Do not overrun array bounds.
10908 This should fix a bug reported today by Olatunji Oluwabukunmi in
10909 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
10911 2003-04-29 Akim Demaille <akim@epita.fr>
10913 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10914 * src/getargs.c, src/getargs.h: here, as bool, not int.
10915 (nondeterministic_parser): New.
10916 * src/parse-gram.y, src/scan-gram.l: Support
10917 %nondeterministic-parser.
10918 * src/output.c (prepare): Use nondeterministic_parser instead
10919 of glr_parser where appropriate.
10920 * src/tables.c (conflict_row, action_row, save_row)
10921 (token_actions, token_actions, pack_vector): Ditto.
10923 2003-04-29 Akim Demaille <akim@epita.fr>
10925 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10927 2003-04-29 Akim Demaille <akim@epita.fr>
10929 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10930 with %pure-parser and %locations to exercise the patch from Yakov
10933 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
10935 * data/yacc.c: (b4_lex_param): Corrected for the case where
10936 %lex-param is provided and %pure-parser isn't.
10938 2003-04-27 Paul Eggert <eggert@twinsun.com>
10940 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
10941 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
10942 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
10943 if it is not defined.
10944 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
10946 2003-04-26 Paul Eggert <eggert@twinsun.com>
10948 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
10949 Declare to be of type suitable for the ninf value itself, not of
10950 type suitable for the corresponding table, since the latter might
10951 be unsigned but the ninf value might be negative. This fixes a
10952 bug reported by Alexandre Duret-Lutz in
10953 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
10955 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
10956 invokes it. We shouldn't invoke it twice because it will attempt
10957 to put error.o in the archive twice. This fixes a glitch reported
10958 by Martin Mokrejs in
10959 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10961 2003-04-21 Paul Eggert <eggert@twinsun.com>
10963 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
10966 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
10968 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
10969 Fix obvious typo that results in uncompilable GLR parsers
10970 when both %pure-parser and %locations are used. (trivial change)
10972 2003-04-17 Paul Eggert <eggert@twinsun.com>
10974 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
10975 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
10976 Do not insert the expected token via unput, as this runs afoul
10977 of a POSIX-compatibility bug in flex 2.5.31.
10978 All uses changed to BEGIN the parent state,
10979 since we no longer insert the expected token via unput.
10980 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
10981 that is no longer emitted after the above change.
10983 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
10984 the first one. This change is from Paul Hilfinger, and it fixes
10985 regression reported by Werner Lemberg in
10986 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
10988 (resolve_sr_conflict): Don't invoke state_errs_set
10989 unless one or more tokens have been explicitly made errors.
10990 Otherwise, the above change causes Bison to abort.
10992 * tests/existing.at (GNU pic Grammar): New test case, taken from
10995 2003-03-31 Akim Demaille <akim@epita.fr>
10997 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
10999 2003-03-31 Akim Demaille <akim@epita.fr>
11001 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11004 2003-03-31 Akim Demaille <akim@epita.fr>
11006 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11007 From Paul Hilfinger.
11009 2003-03-29 Akim Demaille <akim@epita.fr>
11011 * m4/error.m4: Do not put under dynamic conditions some code which
11012 expansion is under static control.
11014 2003-03-29 Akim Demaille <akim@epita.fr>
11016 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11018 2003-03-29 Akim Demaille <akim@epita.fr>
11020 * doc/bison.texinfo (Strings are Destroyed): New.
11022 2003-03-13 Paul Eggert <eggert@twinsun.com>
11024 * .cvsignore: Add configure.lineno.
11025 * src/.cvsignore: Add yacc.
11026 * tests/.cvsignore: Add testsuite.log.
11027 * doc/fdl.texi: Sync with latest FSF version.
11029 2003-03-12 Paul Eggert <eggert@twinsun.com>
11031 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11032 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11033 cursor, instead of leaving it undefined. This fixes a bug
11034 reported by Tim Van Holder in
11035 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11036 * tests/input.at (Torturing the Scanner): Test the scanner on
11037 an empty input file, which was Tim Van Holder's test case.
11039 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11040 <sys/resource.h> can be included, include sys/time.h and
11041 sys/times.h first, if available. This works around the SunOS
11042 4.1.4 porting bug reported by Bruce Becker in
11043 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11045 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11046 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11047 AC_HEADER_SYS_WAIT.
11049 Merge changes from gnulib. This was prompted because the CVS
11050 snapshot didn't build on Solaris 7 due to strnlen problems.
11052 These changes need to be merged back into gnulib:
11053 * lib/hash.c: Include <stdbool.h> unconditionally.
11054 * m4/onceonly.m4 (m4_quote): New macro.
11055 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11056 Quote AC_FOREACH variable-expansions properly.
11057 The 2003-01-03 obstack.h change also needs merging.
11058 {end of changes requiring merging}
11060 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11061 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11062 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11063 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11064 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11065 New files, imported from gnulib.
11066 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11069 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11070 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11073 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11075 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11076 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11077 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11078 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11079 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11080 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11081 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11082 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11083 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11084 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11085 (jm_PREREQ_ARGMATCH): Remove.
11086 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11087 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11089 * src/system.h: Include <stdbool.h> unconditionally.
11091 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11092 assuming at least C89 in the bitset code for some time now.
11094 2003-03-03 Akim Demaille <akim@epita.fr>
11098 2003-03-02 Akim Demaille <akim@epita.fr>
11100 * doc/bison.texinfo (Table of Symbols): Reactivate the
11101 documentation for %lex-param, and %parse-param.
11103 2003-03-02 Akim Demaille <akim@epita.fr>
11105 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11106 generate verbose error messages.
11107 Use the number of tokens as an upper bound in yytname, as it
11108 cannot be a non terminal.
11110 2003-03-02 Akim Demaille <akim@epita.fr>
11112 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11115 2003-03-02 Akim Demaille <akim@epita.fr>
11117 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11118 Use them to exercise yycheck overrun.
11119 Based on Andrew Suffield's grammar.
11121 2003-03-02 Akim Demaille <akim@epita.fr>
11123 Create tests/local.at for Bison generic testing macros.
11125 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11126 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11128 * tests/calc.at (AT_CHECK_CALC): Adjust.
11129 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11130 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11131 * tests/local.at: here.
11132 (AT_COMPILE_CXX): Tags the tests using it as c++.
11133 Ignore the test if CXX is not functional.
11135 2003-03-01 Paul Eggert <eggert@twinsun.com>
11137 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11138 not loc->end, since loc->end might contain garbage and this leads
11139 to undefined behavior on some platforms.
11140 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11141 depend on *loc, so that the reader doesn't give the the false
11142 impression that *loc is initialized.
11143 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11144 does not survive the return.
11146 2003-03-01 Akim Demaille <akim@epita.fr>
11148 * src/scan-gram.l (code_start): Always initialize it when entering
11149 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11150 yylex invocation. An alternative would be making it static, but
11151 then it starts with the second %%'s beginning, instead of its end.
11153 2003-02-28 Paul Eggert <eggert@twinsun.com>
11155 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11156 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11157 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11159 2003-02-26 Paul Eggert <eggert@twinsun.com>
11161 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11162 Remove Sequent/Pyramid discussion (nobody uses them any more).
11163 Merge VMS and MS-DOS discussion; these ports may well be dead
11164 but let's keep mentioning them for now. Put <> around email
11165 addresses. Add copyright notice.
11167 2003-02-24 Paul Eggert <eggert@twinsun.com>
11169 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11170 to avoid collision with flex use of yylineno.
11171 Problem reported by Bruce Lilly in
11172 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11173 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11174 * data/yacc.c (yy_reduce_print): Likewise.
11176 * config/depcomp: Sync with Automake 1.7.3.
11178 2003-02-21 Akim Demaille <akim@epita.fr>
11180 * data/lalr1.cc: Use temporary variables instead of casts to
11181 change integer types.
11182 Suggested by Paul Eggert.
11184 2003-02-21 Akim Demaille <akim@epita.fr>
11186 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11187 to avoid confusions with lalr1.cc's notion of Position.
11188 Suggested by Paul Eggert.
11190 2003-02-20 Akim Demaille <akim@epita.fr>
11192 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11193 before initial_columns.
11194 (location.hh): Use consistent variable names when defining the
11196 Use "last" so that we subtract from Positions, not from unsigned.
11198 2003-02-20 Akim Demaille <akim@epita.fr>
11200 * data/lalr1.cc (position.hh): New subfile, including the extended
11201 and Doxygen'ed documentation of class Position.
11202 (location.hh): Use it.
11203 Document a` la Doxygen.
11204 With the help of Benoit Perrot.
11206 2003-02-20 Akim Demaille <akim@epita.fr>
11208 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11210 Redefine AT_YYERROR_SEES_LOC_IF using it.
11211 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11213 Don't use the location in yy::Parser::error_ and
11214 yy::Parser::print_ when not %locations.
11215 Activate more lalr1.cc tests.
11217 2003-02-19 Akim Demaille <akim@epita.fr>
11219 * data/lalr1.cc: When displaying a line number, be sure to make it
11222 2003-02-19 Akim Demaille <akim@epita.fr>
11224 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11226 (YYABORT, YYACCEPT, YYERROR): New.
11227 * tests/calc.at: Renable the lalr1.cc test.
11229 2003-02-19 Akim Demaille <akim@epita.fr>
11231 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11232 error recovery, mixing with/without pops and discarding of the
11235 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11237 2003-02-17 Paul Eggert <eggert@twinsun.com>
11239 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11240 * tests/testsuite.at (AT_COMPILE): Use them.
11241 This fixes the testsuite problem reported by Robert Lentz in
11242 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11244 2003-02-12 Paul Eggert <eggert@twinsun.com>
11246 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11247 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11248 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11249 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11250 Check for malloc failure, for consistency with yacc.c.
11251 (yytname_size): Remove, for consistency with yacc.c.
11253 The bug still remains in data/lalr1.cc, as I didn't have time
11256 2003-02-06 Akim Demaille <akim@epita.fr>
11258 * configure.ac (GXX): Rename as...
11259 (CXX): this, to keep the original Autoconf semantics.
11261 * data/lalr1.cc: Fix b4_copyright invocations.
11262 If YYDEBUG is not defined, don't depend upon name_ being defined.
11263 (location.hh): Include string and iostream.
11264 (Position::filename): New member.
11265 (Position::Position ()): New.
11266 (operator<< (Position)): New.
11267 (operator- (Position, int)): New.
11268 (Location::first, Location::last): Rename as...
11269 (Location::begin, Location::end): these, to mock the conventional
11271 (operator<< (Location)): New.
11272 * tests/atlocal.in (CXX): New.
11273 * tests/testsuite.at (AT_COMPILE_CXX): New.
11274 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11275 locations in a more synthetic way.
11276 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11278 Adjust the C locations to match those from Emacs: first column is
11280 Change all the expected results.
11281 Conform to the GCS: simplify the locations when applicable.
11282 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11283 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11284 these CPP macros with the m4 macros new defined by...
11285 (AT_CHECK_PUSHDEFS): this, i.e.:
11286 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11287 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11289 (AT_CHECK_POPDEFS): Undefine them.
11290 (AT_CHECK_CALC_LALR1_CC): New.
11291 Use it for the first lalr1.cc test.
11293 2003-02-04 Akim Demaille <akim@epita.fr>
11295 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11296 Location as is defined.
11298 2003-02-04 Akim Demaille <akim@epita.fr>
11300 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11301 name_ being defined.
11303 2003-02-03 Paul Eggert <eggert@twinsun.com>
11305 * src/gram.h (start_symbol): Remove unused decl.
11307 Use more-consistent naming conventions for local vars.
11309 * src/derives.c (derives_compute): Change type of local var from
11310 int to rule_number.
11311 * src/gram.c (grammar_rules_partial_print): Likewise.
11312 * src/print.c (print_core): Likewise.
11313 * src/reduce.c (reduce_grammar_tables): Likewise.
11315 * src/gram.c (grammar_dump): Change name of item_number *
11316 local var from r to rp.
11317 * src/nullable.c (nullable_compute): Likewise.
11319 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11321 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11322 for symbol or symbol_number var.
11323 * src/reader.c (grammar_start_symbol_set): Likewise.
11324 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11326 * src/state.c (transitions_to): Likewise.
11327 * src/state.h: Likewise.
11328 * src/tables.c (symbol_number_to_vector_number): Likewise.
11330 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11333 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11336 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11339 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11340 Use str, not s, for char * var. Use ch, not c, for character var.
11341 Use size for size var.
11343 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11345 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11347 * src/uniqstr.h: Likewise.
11349 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11350 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11351 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11352 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11353 param to have same name as that of enum, so that we don't use
11354 "s" to stand for a non-state.
11356 2003-02-02 Akim Demaille <akim@epita.fr>
11358 * src/scan-skel.l: Scan more than one inert character per yylex
11361 2003-02-01 Paul Eggert <eggert@twinsun.com>
11365 * po/LINGUAS: Add ms.
11367 2003-01-30 Akim Demaille <akim@epita.fr>
11369 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11371 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11373 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11376 Changes in response to error report by S. Eken: GLR mode does not
11377 handle negative $ indices or $ indices in embedded rules correctly.
11378 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11380 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11381 (b4_rhs_location): Ditto.
11382 (yyfill): New function to copy from stack tree into array
11384 (yyuserAction): Modify to allow incremental move of semantic values
11385 to rhs array when in GLR mode.
11386 Define YYFILL to use in user-defined actions to fill semantic array
11388 Remove dummy use of yystack, as there is now a guaranteed use.
11389 (yydoAction): Modify to allow incremental move of semantic values
11390 to rhs array when in GLR mode.
11391 (yyresolveAction): Ditto.
11392 (yyglrShiftDefer): Update comment.
11393 (yyresolveStates): Use X == NULL for pointers, not !X.
11394 (yyglrReduce): Ditto.
11395 (yydoAction): Ditto
11397 * tests/glr-regr1.at: Rename to ...
11398 * tests/glr-regression.at: Add new regression test for the problems
11399 described above (adapted from S. Eken).
11400 Update copyright notice.
11401 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11402 * tests/Makefile.am: Ditto.
11404 2003-01-28 Paul Eggert <eggert@twinsun.com>
11406 * data/lalr1.cc: Do not use @output_header_name@ unless
11407 b4_defines_flag is set. This fixes two bugs reported by
11409 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11410 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11412 2003-01-21 Paul Eggert <eggert@twinsun.com>
11414 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11415 we don't need to worry about yyerrlab1 being reported as an
11416 "unused label" by non-GCC C compilers. The downside is that if
11417 locations are used then a couple of statements are duplicated each
11418 time YYERROR is invoked, but the upside is that the warnings
11420 (yyerrlab1): Move code to YERROR.
11421 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11422 This reverts some of the 2002-12-27 change.
11424 2003-01-17 Paul Eggert <eggert@twinsun.com>
11426 * src/output.c (symbol_printers_output): Fix typo that led
11427 to core dump. Problem reported by Antonio Rus in
11428 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11430 2003-01-13 Akim Demaille <akim@epita.fr>,
11431 Quoc Peyrot <chojin@lrde.epita.fr>,
11432 Robert Anisko <anisko_r@lrde.epita.fr>
11434 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11435 when the stacks contain one element, as the loop would otherwise
11436 free the last state, and then use the top state (the one we just
11437 popped). This means that the initial elements will not be freed
11438 explicitly, as is the case in yacc.c; it is not a problem, as
11439 these elements have fake values.
11441 2003-01-11 Paul Eggert <eggert@twinsun.com>
11443 * NEWS: %expect-violations are now just warnings, reverting
11444 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11445 bootstrapping problem reported by Matthias Klose; see
11446 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11447 * src/conflicts.c (conflicts_print): Likewise.
11448 * tests/conflicts.at (%expect not enough, %expect too much,
11449 %expect with reduce conflicts): Likewise.
11450 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11451 that the warning is enabled if the number of conflicts changes
11452 (not necessarily increases).
11454 * src/getargs.c (version): Update copyright year.
11456 2003-01-09 Akim Demaille <akim@epita.fr>
11458 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11460 2003-01-08 Paul Eggert <eggert@twinsun.com>
11462 * Makefile.maint (WGETFLAGS):
11463 New macro, containing "-C off" to disable proxy caches.
11464 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11465 (rel-check): Use $(WGET) instead of wget.
11467 2003-01-06 Paul Eggert <eggert@twinsun.com>
11469 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11470 the GLR paper of Scott, Johnstone and Hussain.
11472 2003-01-04 Paul Eggert <eggert@twinsun.com>
11474 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11475 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11476 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11477 (EXTRA_LIBRARIES): New var, for liby.a.
11478 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11479 (EXTRA_SCRIPTS): New var, for yacc.
11481 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11482 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11483 Problem reported by Nelson H. F. Beebe.
11485 2003-01-03 Paul Eggert <eggert@twinsun.com>
11487 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11488 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11489 when compiling Bison 1.875's `bitset bset = obstack_alloc
11490 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11492 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11493 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11494 grow to a huge size with typical invocation.
11496 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11497 Use the pattern recommended by Autoconf 2.57, except also protect
11498 against double-definition.
11499 * src/system.h: Likewise.
11500 Portability issues reported by Nelson H. F. Beebe.
11502 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11503 All uses changed. Provide a definition in both C and C++.
11504 (yytrue, yyfalse): Define even if defined (__cplusplus).
11506 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11507 Reported by Nelson H. F. Beebe.
11509 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11511 2003-01-02 Paul Eggert <eggert@twinsun.com>
11513 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11514 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11515 Bug reported by Nelson H. F. Beebe.
11517 2003-01-01 Paul Eggert <eggert@twinsun.com>
11521 2002-12-30 Paul Eggert <eggert@twinsun.com>
11523 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11525 (<INITIAL>","): Here. This causes stray "," to be treated
11528 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11529 last brace in braced code when not in Yacc mode, for compatibility
11530 with Bison 1.35. This resurrects the 2001-12-15 patch to
11533 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11534 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11536 2002-12-28 Paul Eggert <eggert@twinsun.com>
11538 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11539 that of SYM's type. This fixes Debian bug 168069, reported by
11542 2002-12-28 Paul Eggert <eggert@twinsun.com>
11546 Switch back to the Yacc style of conflict reports, undoing some
11547 of the 2002-07-30 change.
11548 * doc/bison.texinfo (Understanding): Use Yacc style for
11549 conflict reports. Also, use new way of locating rules.
11550 * src/conflicts.c (conflict_report):
11551 Renamed from conflict_report_yacc, removing the old
11552 'conflict_report'. Translate the entire conflict report at once,
11553 so that we don't assume that "," has the same interpretation in
11555 (conflicts_output): Use Yacc-style conflict report for each state,
11556 instead of our more-complicated style.
11557 (conflicts_print): Use Yacc-style conflict report, except print
11558 the input file name when not emulating Yacc.
11559 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11560 Conflicted Reduction, %expect not enough, %expect too much,
11561 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11562 * tests/existing.at (GNU Cim Grammar): Likewise.
11563 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11565 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11566 fatal): Don't invoke fflush; it's not needed and it might even be
11567 harmful for stdout, as stdout might not be open.
11568 * src/reduce.c (reduce_print): Likewise.
11570 2002-12-27 Paul Eggert <eggert@twinsun.com>
11572 Fix a bug where error locations were not being recorded correctly.
11573 This problem was originally reported by Paul Hilfinger in
11574 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11576 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11577 top of the location stack's error locations.
11578 (yyerrlab): Set it. When discarding a token, push its location
11579 onto yylerrsp so that we don't lose track of the error's end.
11580 (yyerrlab1): Now is only the target of YYERROR, so that we can
11581 properly record the location of the action that failed. For GCC
11582 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11583 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11584 (yyerrlab2): New label, which yyerrlab now falls through to.
11585 Compute the error's location by applying YYLLOC_DEFAULT to
11586 the locations of all the symbols that went into the error.
11587 * doc/bison.texinfo (Location Default Action): Mention that
11588 YYLLOC_DEFAULT is also invoked for syntax errors.
11589 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11590 Error locations include the locations of all the tokens that were
11591 discarded, not just the last token.
11593 2002-12-26 Paul Eggert <eggert@twinsun.com>
11595 * src/files.c: Include quote.h.
11596 (compute_output_file_names): Warn if we detect conflicting
11597 outputs to the same file. This should catch the misunderstanding
11598 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11600 * src/conflicts.c (conflicts_print): If the user specifies
11601 "%expect N", report an error if there are any reduce/reduce
11602 conflicts. This is what the manual says should happen.
11603 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11604 * tests/conflicts.at (%expect with reduce conflicts): New test.
11606 Don't use m4_include on relative file names, as it doesn't work as
11607 desired if there happens to be a file with that name under ".".
11609 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11610 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11611 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11612 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11613 * src/output.c (output_skeleton): Use full path names when
11614 specifying a file to include; don't rely on include path, as
11615 it's unreliable when the working file contains a file with
11618 2002-12-25 Paul Eggert <eggert@twinsun.com>
11620 Remove obsolete references to bison.simple and bison.hairy.
11621 Problem mentioned by Aubin Mahe in
11622 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11623 * data/glr.c: Comment fix.
11624 * doc/bison.1: Remove references. Also, mention "yacc".
11626 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11629 * src/parse-gram.y (declaration): Use enum "report_states" rather
11630 than its numeric value 1.
11632 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11633 opening a new one. This fixes Debian bug 165349, reported by
11636 2002-12-24 Paul Eggert <eggert@twinsun.com>
11640 * Makefile.maint (cvs-update): Don't assume that the shell
11641 supports $(...), as Solaris sh doesn't.
11643 * src/parse-gram.y (lloc_default): Remove test for empty
11644 nonterminals at the end, since it didn't change the result.
11646 2002-12-24 Paul Eggert <eggert@twinsun.com>
11648 If the user does not define YYSTYPE as a macro, Bison now declares it
11649 using typedef instead of defining it as a macro. POSIX requires this.
11650 For consistency, YYLTYPE is also declared instead of defined.
11652 %union directives can now have a tag before the `{', e.g., the
11653 directive `%union foo {...}' now generates the C code
11654 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11655 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11656 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11657 instead of `yyltype'.
11659 `yystype' and `yyltype' are now obsolescent macros instead of being
11660 typedefs or tags; they are no longer documented and will be
11661 withdrawn in a future release.
11663 * data/glr.c (b4_location_type): Remove.
11664 (YYSTYPE): Renamed from yystype.
11665 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11666 (struct YYLTYPE): Renamed from struct yyltype.
11667 (YYLTYPE): Renamed from yyltype.
11668 (yyltype, yystype): New (and obsolescent) macros,
11669 for backward compatibility.
11670 * data/yacc.c: Likewise.
11672 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11673 does not specify a union tag. This is for compatibility with
11676 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11677 const *, since it is now modified by stripping surrounding { }.
11678 (current_braced_code): Remove.
11679 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11680 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11681 trailing " {...}". Now of type <chars>.
11682 (grammar_declaration): Adjust to bundled tokens.
11683 (code_content): Remove; stripping is now done by add_param.
11684 (print_token_value): Print contents of bundled tokens.
11685 (token_name): New function.
11687 * src/reader.h (braced_code, current_braced_code): Remove.
11688 (token_name): New decl.
11690 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11691 token_type, not braced_code code_kind. All uses changed.
11692 (SC_PRE_CODE): New state, for scanning after a keyword that
11693 has (or usually has) an immediately-following braced code.
11694 (token_type): New local var, to keep track of which token type
11695 to return when scanning braced code.
11696 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11697 <INITIAL>"%parse-param", <INITIAL>"%printer",
11698 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11699 instead of returning a token type immediately.
11700 (<INITIAL>"{"): Set token type.
11701 (<SC_BRACED_CODE>"}"): Use it.
11702 (handle_action_dollar, handle_action_at): Now returns bool
11703 indicating success. Fail if ! current_rule; this prevents a core dump.
11704 (handle_symbol_code_dollar, handle_symbol_code_at):
11705 Remove; merge body into caller.
11706 (handle_dollar, handle_at): Complain in invalid contexts.
11708 * NEWS, doc/bison.texinfo: Document the above.
11709 * NEWS: Fix years and program names in copyright notice.
11711 2002-12-17 Paul Eggert <eggert@twinsun.com>
11713 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11714 Reporting, Table of Symbols): Omit mentions of %lex-param and
11715 %parse-param from the documentation for now.
11717 2002-12-15 Paul Eggert <eggert@twinsun.com>
11719 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11720 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11721 lookahead symbol, and which sets yychar in parser actions) and it
11722 disagreed with the Bison documentation. Bug
11723 reported by Andrew Walrond.
11725 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11726 as the caller now does that.
11727 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11728 (YYEMPTY): Parenthesize right hand side, since others use it.
11729 (yyparse): Don't assume that our generated code is the only code
11732 2002-12-13 Paul Eggert <eggert@twinsun.com>
11736 POSIX requires a "yacc" command.
11737 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11738 (MOSTLYCLEANFILES): Add yacc.
11740 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11741 as an alias for bison y.
11743 * po/LINGUAS: Add da.
11745 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11746 problem with latest <getopt.h>.
11747 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11749 * doc/fdl.texi: Upgrade to 1.2.
11750 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11751 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11752 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11754 * config/install-sh: Sync with autotools.
11756 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11757 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11758 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11759 locations are requested.
11760 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11761 locations are requested.
11763 2002-12-12 Paul Eggert <eggert@twinsun.com>
11765 Remove unportable casts and storage allocation tricks.
11766 While we're at it, remove almost all casts, since they
11767 usually aren't needed and are a sign of trouble.
11769 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11771 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11772 the pointer DSET returned by malloc; this isn't portable.
11773 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11774 Similarly for DERIVES.
11775 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11776 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11777 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11779 * src/derives.c (derives_compute): Do not bother invoking
11780 int_of_rule_number, since rule numbers are integers.
11782 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11783 rather than XMALLOC (char, N).
11785 * src/files.c (filename_split): Rewrite to avoid cast.
11787 * src/gram.h (symbol_number_as_item_number,
11788 item_number_as_symbol_number, rule_number_as_item_number,
11789 item_number_as_rule_number):
11790 Now inline functions rather than macros, to avoid casts.
11791 * src/state.h (state_number_as_int): Likewise.
11792 * src/tables.c (state_number_to_vector_number,
11793 symbol_number_to_vector_number): Likewise.
11795 * src/gram.h (int_of_rule_number): Remove; no longer used.
11797 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11798 since the resulting storage is always stored into.
11800 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11803 * src/muscle_tab.c (muscle_m4_output):
11804 Now inline. Return bool, not int.
11805 * src/state.c (state_compare): Likewise.
11806 * src/symtab.c (symbol_check_defined,
11807 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11808 hash_compare_symbol, hash_symbol):
11810 * src/uniqstr.c (uniqstr_print): Likewise.
11811 * src/muscle_tab.c (muscle_m4_output_processor):
11812 New function, to avoid casts.
11813 * src/state.c (state_comparator, stage_hasher): Likewise.
11814 * src/symtab.c (symbol_check_defined_processor,
11815 symbol_check_alias_consistency_processor, symbol_pack_processor,
11816 symbol_translation_processor, hash_symbol_comparator,
11817 hash_symbol_hasher): Likewise.
11818 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11819 * src/muscle_tab.c (muscles_m4_output):
11820 Use new functions instead of casting old functions unportably.
11821 * src/state.c (state_hash_new): Likewise.
11822 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11823 symbols_token_translations_init):
11825 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11827 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11828 var instead of casting to long, to avoid casts.
11829 (prepare_states): Use MALLOC rather than alloca, so that we don't
11830 have to worry about alloca.
11831 * src/state.c (state_hash_lookup): Likewise.
11833 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11834 local var instead of casting to unsigned char, to avoid casts.
11836 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11837 STATE_ALLOC): Remove.
11838 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11839 rather than calloc, and use offsetof to avoid allocating slightly
11841 (state_new): Initialize all members.
11843 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11845 * src/symtab.c (symbol_free): Remove; unused.
11846 (symbol_get): Remove cast in lhs of assignment.
11847 (symbols_do): Now static. Accept generic arguments, not
11848 hashing-related ones.
11850 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11851 (symbol_processor): Remove.
11852 (symbols_do): Remove decl; now static.
11854 * src/system.h (alloca): Remove; decl no longer needed.
11855 (<stddef.h>): Include, for offsetof.
11856 (<inttypes.>, <stdint.h>): Include if available.
11857 (uintptr_t): New type, if system lacks it.
11858 (CALLOC, MALLOC, REALLOC): New macros.
11859 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11862 * src/tables.c (table_size): Now int, to pacify GCC.
11863 (table_grow, table_ninf_remap): Use signed table size.
11864 (save_row): Don't bother initializing locals when not needed.
11865 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11866 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11868 * src/vcg.h: Correct misspellings.
11870 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11873 * src/getargs.c (getargs): Don't assume EOF == -1.
11875 2002-12-09 Paul Eggert <eggert@twinsun.com>
11877 Change identifier spellings to avoid collisions with names
11878 that are reserved by POSIX.
11880 Don't use names ending in _t, since POSIX reserves them.
11881 For consistency, remove _e and _s endings -- they're weren't
11882 needed to remove ambiguity. All uses changed.
11883 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11884 turn was just renamed from struniq_t.
11885 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11886 which in turn was just renamed from struniq_processor_t.
11887 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11888 in turn was renamed from hash_compare_struniq_t.
11889 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11890 (state_list): Renamed from state_list_t.
11891 * src/assoc.h (assoc): Renamed from assoc_t.
11892 * src/conflicts.c (enum conflict_resolution): Renamed from
11893 enum conflict_resolution_e.
11894 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11895 (rule_list): Renamed from rule_list_t.
11896 * src/getargs.h (enum trace): Renamed from enum trace_e.
11897 (enum report): Renamed from enum report_e.
11898 * src/gram.h (item_number): Renamed from item_number_t.
11899 (rule_number): Renamed from rule_number_t.
11900 (struct rule_s): Remove the "rule_s" part; not used.
11901 (rule): Renamed from rule_t.
11902 (rule_filter): Renamed from rule_filter_t.
11903 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11904 (goto_list): Renamed from goto_list_t.
11905 * src/lalr.h (goto_number): Renamed from goto_number_t.
11906 * src/location.h (location): Renamed from location_t.
11907 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11908 and moved here from:
11909 * src/muscle_tab.h (muscle_entry_t): here.
11910 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11911 (rule_list): Renamed from rule_list_t.
11912 * src/print_graph.c (static_graph): Renamed from graph.
11913 * src/reader.h (braced_code): Renamed from braced_code_t.
11914 Remove brace_code_e tag.
11915 * src/relation.h (relation_node): Renamed from relation_node_t.
11916 (relation_nodes): Renamed from relation_nodes_t.
11917 (relation): Renamed from relation_t.
11918 * src/state.h (state_number): Renamed from state_number_t.
11919 (struct state): Renamed from struct state_s.
11920 (state): Renamed from state_t.
11921 (transitions): Renamed from transitions_t. Unused (and
11922 misspelled) transtion_s tag removed.
11923 (errs): Renamed from errs_t. Unused errs_s tag removed.
11924 (reductions): Renamed from reductions_t. Unused tag
11925 reductions_s removed.
11926 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11927 (struct symbol_list): Renamed from struct symbol_list_s.
11928 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11929 (struct symbol): Renamed from struct symbol_s.
11930 (symbol): Renamed from symbol_t.
11931 * src/tables.c (vector_number): Renamed from vector_number_t.
11932 (action_number): Renamed from action_t.
11933 * src/tables.h (base_number): Renamed from base_t.
11934 * src/vcg.h (enum color): Renamed from enum color_e.
11935 (enum textmode): Renamed from enum textmode_e.
11936 (enum shape): Renamed from enum shape_e.
11937 (struct colorentry): Renamed from struct colorentry_s.
11938 (struct classname): Renamed from struct classname_s.
11939 (struct infoname): Renamed from struct infoname_s.
11940 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
11941 (enum decision): Renamed from enum decision_e.
11942 (enum orientation): Renamed from enum orientation_e.
11943 (enum alignment): Renamed from enum alignment_e.
11944 (enum arrow_mode): Renamed from enum arrow_mode_e.
11945 (enum crossing_type): Renamed from enum crossing_type_e.
11946 (enum view): Renamed from enum view_e.
11947 (struct node): Renamed from struct node_s.
11948 (node): Renamed from node_t.
11949 (enum linestyle): Renamed from enum linestyle_e.
11950 (enum arrowstyle): Renamed from enum arrowstyle_e.
11951 (struct edge): Renamed from struct edge.
11952 (edge): Renamed from edge_t.
11953 (struct graph): Renamed from struct graph_s.
11954 (graph): Renamed from graph_t.
11955 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
11956 Rename value_t -> value.
11957 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
11958 value_t_as_yystype -> value_as_yystype.
11960 Don't include <errno.h> in the mainstream code, since it
11961 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
11962 * lib/get-errno.c, lib/get-errno.h: New files.
11963 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
11965 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
11966 * src/output.c (output_skeleton): Likewise.
11967 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
11969 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
11971 (handle_action_dollar, handle_action_at): Likewise.
11972 * src/system.h: Do not include <errno.h>.
11973 (TAB_EXT): Renamed from EXT_TAB.
11974 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
11976 Avoid str[a-z]*, since <string.h> reserves that name space.
11977 Change all instances of "struniq" in names to "uniqstr", and
11978 likewise for "STRUNIQ" and "UNIQSTR".
11979 * src/uniqstr.c: Renamed from src/struniq.c.
11980 * src/uniqstr.h: Renamed from src/struniq.h.
11981 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
11982 * src/files.c (strsuffix): Remove; unused.
11983 (concat2): Renamed from stringappend. Now static.
11984 * src/files.h (strsuffix, stringappend): Remove; unused.
11985 * src/parse-gram.y (<chars>): Renamed from <string>.
11986 (<uniqstr>): Renamed from <struniq>.
11987 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
11988 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
11989 (struct graph_s.expand): Renamed from struct graph_s.stretch.
11990 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
11991 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
11992 (N_EXPAND): Renamed from N_STRETCH.
11994 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
11995 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
11996 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
11998 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
11999 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12000 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12001 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12002 (BASE_MAXIMUM): Renamed from BASE_MAX.
12003 (BASE_MINIMUM): Renamed from BASE_MIN.
12004 (ACTION_MAX): Remove; unused.
12005 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12006 Unnecessary casts removed from above defines.
12009 Fix misspelling in names.
12010 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12011 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12015 * lib/timevar.c (timevar_report): Renamed from time_report,
12016 for consistency with other names.
12017 * lib/timevar.h (timevar_report): New decl.
12018 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12021 Sort include-file uses.
12023 Reorder all include files under src to be in the order "system.h".
12024 then the ../lib include files in angle brackets (alphabetized),
12025 then the . include files in double-quotes (alphabetized). Fix
12026 dependency breakages encountered in this process, as follows:
12027 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12028 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12029 * src/state.h: Include "symtab.h".
12031 2002-12-08 Paul Eggert <eggert@twinsun.com>
12033 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12034 since this causes problems when __file__ contains character
12035 sequences like "@" that are treated specially by src/scan-skel.l.
12036 Instead, just use the file's basename. This fixes the bug
12037 reported by Martin Mokrejs in
12038 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12040 2002-12-06 Paul Eggert <eggert@twinsun.com>
12042 Add support for rules that do not have trailing semicolons, as
12043 POSIX requires. Improve the quality of locations in Bison
12046 * src/location.c: Include <quotearg.h>.
12047 (empty_location): Now const.
12048 (location_print): New function. Follow the recommendation of the
12049 GNU Coding Standards for locations that span file boundaries.
12050 * src/location.h: Do not include <quotearg.h>; no longer needed.
12051 (boundary): New type.
12052 (location_t): Use it. This allows locations to span file boundaries.
12053 All member uses changed: file -> start.file or end.file (as needed),
12054 first_line -> start.line, first_column -> start.column,
12055 last_line -> end.line, last_column -> end.column.
12056 (equal_boundaries): New function.
12057 (LOCATION_RESET, LOCATION_STEP): Remove.
12058 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12059 (empty_location): Now const.
12060 (location_print): New decl.
12061 * src/parse-gram.y (lloc_default): New function, which handles
12062 empty locations more accurately.
12063 (YYLLOC_DEFAULT): Use it.
12064 (%token COLON): Remove.
12065 (%token ID_COLON): New token.
12067 (declarations, rules): Remove trailing semicolon.
12068 (declaration, rules_or_grammar_declaration):
12069 Allow empty (";") declaration.
12070 (symbol_def): Remove empty actions; no longer needed.
12071 (rules_or_grammar_declaration): Remove trailing semicolon.
12072 (semi_colon.opt): Remove.
12073 * src/reader.h: Include location.h.
12074 (scanner_cursor): New decl.
12075 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12077 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12079 (STEP): Remove. No longer needed, now that adjust_location does
12080 the work. All uses removed.
12081 (scanner_cursor): New var.
12082 (adjust_location): Renamed from extend_location. It now sets
12083 *loc and adjusts the scanner cursor. All uses changed.
12084 Don't bother testing for CR.
12085 (handle_syncline): Remove location arg; now updates scanner cursor.
12086 All callers changed.
12087 (unexpected_end_of_file): Now accepts start boundary of token or
12088 comment, not location. All callers changed. Update scanner cursor,
12090 (SC_AFTER_IDENTIFIER): New state.
12091 (context_state): Renamed from c_context. All uses changed.
12092 (id_loc, code_start, token_start): New local vars.
12093 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12094 processing of Yacc white space and equivalents here.
12095 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12096 instead of returning ID immediately, since we need to search for
12097 a subsequent colon.
12098 (<INITIAL>"'", "\""): Save token_start.
12099 (<INITIAL>"%{", "{", "%%"): Save code_start.
12100 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12101 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12102 BEGIN context_state at end, not INITIAL.
12103 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12104 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12105 Return correct token start.
12106 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12107 the start of a character, string or multiline comment is found.
12108 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12109 Reduction): Adjust reported locations to match the more-precise
12110 results now expected.
12111 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12112 * tests/reduce.at (Useless Rules, Reduced Automaton,
12113 Underivable Rules): Likewise.
12114 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12115 or "|"' now that so many other tokens are allowed by the new grammar.
12117 * src/complain.h (current_file): Remove duplicate decl;
12118 current_file is now owned by files.h.
12119 * src/complain.c, src/scan-gram.l: Include files.h.
12121 2002-12-06 Paul Eggert <eggert@twinsun.com>
12123 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12124 promotes to int; it might be unsigned int.
12125 * data/yacc.c (yy_reduce_print): Likewise.
12127 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12128 be #defined in the prologue, not in the Bison declarations.
12129 This fixes Debian Bug 102878, reported by Shaul Karl.
12131 2002-12-02 Paul Eggert <eggert@twinsun.com>
12133 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12134 * lib/strtoul.c: New file, from gnulib.
12135 This fixes a porting bug reported by Peter Klein in
12136 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12138 2002-11-30 Paul Eggert <eggert@twinsun.com>
12140 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12141 and put only a forward declaration in the prologue. This is for
12142 consistency with the other scanner helper functions.
12144 Type clashes now generate warnings, not errors, since it
12145 appears that POSIX may allow some grammars with type clashes.
12146 * src/reader.c (grammar_current_rule_check): Warn about
12147 type clashes instead of complaining.
12148 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12150 Add Yacc library, since POSIX requires it.
12151 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12152 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12153 * lib/main.c, lib/yyerror.c: New files.
12155 gram_error can be static; it need not be extern.
12156 * src/reader.h (gram_error): Remove decl.
12157 * src/parse-gram.y (gram_error): Now static. Add static decl.
12158 (print_token_value): Omit parameter names from forward decl,
12161 2002-11-29 Paul Eggert <eggert@twinsun.com>
12163 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12164 be declared before being used. E.g., one should typically
12165 declare them in the prologue. Use GNU coding style in examples.
12166 Put "const" consistently after the type it modifies. Mention
12167 that C99 supports "inline". Mention that yyerror traditionally
12170 %parse-param and %lex-param now take just one argument, the
12171 declaration; the argument name is deduced from the declaration.
12173 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12174 Reporting, Table of Symbols): Document this.
12175 * src/parse-gram.y (add_param): New function.
12177 (declaration): Implement new rule for %parse-param and %lex-param.
12178 * src/scan-gram.l: "," now elicits a warning, rather than being
12179 a token; this is more compatible with byacc.
12180 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12182 2002-11-27 Paul Eggert <eggert@twinsun.com>
12184 Rename identifiers to avoid real and potential collisions.
12186 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12187 to avoid collision with lex macro described by Bruce Lilly in
12188 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12189 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12190 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12191 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12193 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12194 The name "yycontrol" violates the name space rules, and this stuff
12195 wasn't being used anyway.
12196 (input): Remove action; this stuff wasn't being used.
12197 (gram_error): Rename local variable yylloc -> loc.
12198 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12199 (YY_DECL): Don't use "yy" at start of local variables.
12200 All uses changed, e.g., yylloc -> loc.
12201 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12202 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12203 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12204 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12206 * src/parse-gram.y (gram_error): loc is now const *.
12207 * src/reader.h (gram_error): Likewise.
12209 2002-11-24 Paul Eggert <eggert@twinsun.com>
12213 * tests/actions.at (Actions after errors): Use an output format
12214 more similar to that of the Printers and Destructors test.
12215 Test the position of the ';' token too.
12216 (Printers and Destructors): Likewise.
12217 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12218 unnecessarily alarming people when the test fails.
12220 * data/yacc.c (yyerrlab1): Move this label down, so that the
12221 parser does not discard the lookahead token if the user code
12222 invokes YYERROR. This change is required for POSIX conformance.
12224 * lib/error.c: Sync with gnulib.
12226 2002-11-22 Paul Eggert <eggert@twinsun.com>
12228 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12229 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12230 * lib/xmalloc.c: Likewise.
12232 2002-11-20 Paul Eggert <eggert@twinsun.com>
12234 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12236 2002-11-20 Paul Eggert <eggert@twinsun.com>
12238 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12239 should use `if (! x) abort ();' rather than `assert (x);', and
12240 anyway it's one less thing to worry about configuring.
12242 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12243 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12244 and replace all instances of assert with abort.
12245 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12246 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12248 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12249 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12250 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12251 hash_find_entry, hash_rehash, hash_insert): Likewise.
12252 * src/conflicts.c (resolve_sr_conflict): Likewise.
12253 * src/lalr.c (set_goto_map, map_goto): Likewise.
12254 * src/nullable.c (nullable_compute): Likewise.
12255 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12256 * src/reader.c (packgram, reader): Likewise.
12257 * src/state.c (state_new, state_free, state_transitions_set,
12258 state_reduction_find): Likewise.
12259 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12260 symbol_pack): Likewise.
12261 * src/tables.c (conflict_row, pack_vector): Likewise.
12262 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12263 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12264 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12265 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12267 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12268 (ARGMATCH_CONSTRAINT): New macro.
12269 (ARGMATCH_ASSERT): Use it.
12271 * src/system.h (verify): New macro.
12272 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12273 rather than assert.
12274 * src/tables.c (tables_generate): Likewise.
12276 * src/struniq.c (struniq_assert): Now returns void, and aborts
12277 if the assertion is false.
12278 (struniq_assert_p): Remove.
12279 * src/struniq.h: Likewise.
12281 2002-11-18 Paul Eggert <eggert@twinsun.com>
12283 * data/glr.c (yygetLRActions): Replace `yyindex' with
12284 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12285 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12286 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12288 2002-11-18 Akim Demaille <akim@epita.fr>
12290 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12292 From Tim Van Holder.
12294 2002-11-17 Paul Eggert <eggert@twinsun.com>
12296 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12297 to "SyntaxError" for consistency with my 2002-11-15 change.
12299 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12300 not define to {}, since this breaks the common use of `YYDPRINTF
12301 ((...));' if a single statement is desired (e.g. before `else').
12302 Work around GCC warnings by surrounding corresponding calls with
12304 (yyhasResolvedValue): Remove unused function.
12305 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12307 (yyreportSyntaxError): Renamed from yyreportParseError.
12308 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12310 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12311 extern when possible. Remove unused initializations.
12313 2002-11-16 Akim Demaille <akim@epita.fr>
12315 Augment the similarity between GLR and LALR traces.
12317 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12318 (YY_REDUCE_PRINT): New.
12319 (yyparse): Use them.
12320 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12322 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12323 state reached after the reduction/recovery, since...
12324 (yyparse, yyprocessOneStack): Report the state we are entering in.
12326 2002-11-16 Akim Demaille <akim@epita.fr>
12328 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12329 Add support for --trace=skeleton.
12330 * src/scan-skel.l: %option debug.
12331 Scan strings of non-@ or \n instead of character by character.
12332 (scan_skel): Handle trace_skeleton.
12334 (@output_parser_name@, @output_header_name@): ``Restore'' their
12335 support (used to be M4 macros).
12336 * data/yacc.c: Quote larger chunks, a la glr.c.
12337 * data/lalr1.cc: Likewise.
12338 The header guards are no longer available, so use some other
12339 string than `YYLSP_NEEDED'.
12341 2002-11-16 Akim Demaille <akim@epita.fr>
12343 Make the ``Printers and Destructors'' test more verbose, taking
12344 `yacc.c''s behavior as (possibly wrong) reference.
12346 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12347 instead of fprint on stdout.
12348 Set and report the last_line of the symbols.
12349 Consistently display values and locations.
12351 2002-11-16 Paul Eggert <eggert@twinsun.com>
12353 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12355 2002-11-15 Paul Eggert <eggert@twinsun.com>
12357 * tests/actions.at (Actions after errors): New test case.
12359 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12360 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12361 tests/action.at, tests/calc.at, tests/conflicts.at,
12362 tests/cxx-type.at, tests/regression.at:
12363 "parse error" -> "syntax error" for POSIX compatibility.
12364 "parsing stack overflow..." -> "parser stack overflow" so
12365 that code matches Bison documentation.
12367 2002-11-15 Akim Demaille <akim@epita.fr>
12369 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12370 take two BRACED_CODE, not two string_content.
12371 Free the scanner's obstack when we are done.
12372 (code_content): New.
12373 * tests/calc.at: Adjust.
12374 * doc/bison.texinfo: Adjust.
12375 Also, make sure to include the `,' for these declarations.
12377 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12379 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12380 definition; avoids potential autoreconf problems.
12382 2002-11-15 Akim Demaille <akim@epita.fr>
12384 Always check the value returned by yyparse.
12386 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12387 returned by yyparse.
12388 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12390 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12391 returned by yyparse.
12393 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12395 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12398 2002-11-14 Paul Eggert <eggert@twinsun.com>
12400 * src/output.c (output_skeleton): Call xfopen instead of
12401 duplicating xfopen's body.
12403 Fix bugs reported by Nelson H. F. Beebe in
12404 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12406 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12407 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12408 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12409 file twice in the grammar, as an extra check.
12411 * tests/input.at (Torturing the Scanner): Surround the
12412 backslash-newline tests with "#if 0", to make it less likely that
12413 we'll run into compiler bugs. Bring back solitary \ inside
12414 comment, but add a closing comment to work around HP C bug. Don't
12415 test backslash-newline in C character constant.
12417 2002-11-14 Akim Demaille <akim@epita.fr>
12419 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12420 status of the compiler.
12421 Calling `exit 1' is no longer needed.
12422 Reported by Nelson H. F. Beebe.
12424 2002-11-14 Akim Demaille <akim@epita.fr>
12426 * tests/atlocal.in (CPPFLAGS): We have config.h.
12427 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12429 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12430 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12431 * tests/regression.at, tests/torture.at: Use them for all the
12432 grammars that are to be compiled.
12433 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12434 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12435 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12437 2002-11-14 Akim Demaille <akim@epita.fr>
12439 * doc/bison.texinfo: Various formatting changes (alignments in
12440 samples, additional @group/@end group, GCS in samples.
12441 Use @deffn instead of simple @table to define the directives,
12442 macros, variables etc.
12444 2002-11-13 Paul Eggert <eggert@twinsun.com>
12446 Fix some bugs reported by Albert Chin-A-Young in
12447 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12449 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12450 -o c"; the HP C compiler chatters during compilation.
12451 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12452 * tests/headers.at (export YYLTYPE): Likewise.
12454 * tests/input.at (Torturing the Scanner): Remove lines containing
12455 solitary backslashes, as they tickle a bug in the HP C compiler.
12457 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12458 comments, since they're not portable. Use GNU coding style.
12460 2002-11-13 Akim Demaille <akim@epita.fr>
12462 * data/yacc.c: Leave bigger chunks of quoted text.
12463 (YYDSYMPRINTF): New.
12464 Use it to report symbol activities.
12465 * data/glr.c (YYDSYMPRINTF): New.
12468 2002-11-12 Paul Eggert <eggert@twinsun.com>
12472 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12473 (yyglrReduce): Return yyok, not 0.
12474 This should avoid the enumerated-type warnings reported
12475 by Nelson H. F. Beebe in
12476 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12478 * lib/bbitset.h (BITSET_INLINE): Remove.
12479 * lib/bitset.h [! BITSET_INLINE]: Remove.
12480 (bitset_set, bitset_reset, bitset_test): Rename local vars
12481 to avoid shadowing warnings by GCC.
12483 * data/glr.c (inline): Remove #define. It's the user's
12484 responsibility to #define it away, just like 'const'.
12485 This fixes one of the bugs reported by Nelson H. F. Beebe in
12486 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12488 * Makefile.maint (po-check): Scan .l and .y files instead of the
12489 .c and the .h files that they generate. This fixes the bug
12490 reported by Tim Van Holder in:
12491 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12492 Look for N_ as well as for _. Try to avoid matching #define for
12494 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12495 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12496 * src/scan-gram.l: Revamp regular expressions so that " and '
12497 do not confuse xgettext.
12499 * src/struniq.h (struniq_new): Do not declare the return type
12500 to be 'const'; this violates the C standard.
12501 * src/struniq.c (struniq_new): Likewise.
12503 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12505 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12506 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12509 2002-11-12 Akim Demaille <akim@epita.fr>
12511 * Makefile.maint: Sync with Autoconf:
12512 (local_updates): New.
12514 2002-11-12 Akim Demaille <akim@epita.fr>
12516 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12518 2002-11-12 Akim Demaille <akim@epita.fr>
12520 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12523 2002-11-12 Akim Demaille <akim@epita.fr>
12525 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12528 2002-11-12 Akim Demaille <akim@epita.fr>
12530 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12531 Use it to test the GLR parser.
12533 2002-11-12 Akim Demaille <akim@epita.fr>
12535 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12537 * data/glr.c (yystos): New.
12538 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12539 (YYDSYMPRINT): New.
12540 (yyval): Don't define it, it is handled via M4.
12541 (yyrecoverParseError): Free verbosely the discarded symbols.
12542 * data/yacc.c (yysymprint): Remove, rather...
12543 (b4_yysymprint_generate): invoke.
12544 * data/c.m4 (b4_yysymprint_generate): New.
12545 Accept pointers as arguments, as opposed to the version from
12547 (b4_yydestruct_generate): Likewise.
12548 * tests/cations.at (Printers and Destructors): Use Bison directives
12549 instead of CPP macros.
12550 Don't rely on internal details.
12552 2002-11-12 Akim Demaille <akim@epita.fr>
12554 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12555 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12556 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12557 it against YYEMPTY and so forth), work on yytoken (i.e., set
12558 it to YYEMPTY etc.).
12559 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12560 (b4_symbol_actions): Remove.
12561 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12562 for 0, end-of-input.
12564 2002-11-12 Akim Demaille <akim@epita.fr>
12566 * doc/bison.texinfo (Destructor Decl): New.
12568 2002-11-12 Akim Demaille <akim@epita.fr>
12570 * src/tables.c (tables_generate): Use free for pointers that
12571 cannot be NULL, not XFREE.
12572 (pack_vector): Use assert, not fatal, for bound violations.
12573 * src/state.c (state_new): Likewise.
12574 * src/reader.c (reader): Likewise.
12575 * src/lalr.c (set_goto_map): Likewise.
12576 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12579 2002-11-12 Akim Demaille <akim@epita.fr>
12581 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12583 * src/scan-gram.l (last_string): Is global to the file, not to
12585 * src/parse-gram.y (input): Don't append the epilogue here,
12586 (epilogue.opt): do it here, and free the scanner's obstack.
12587 * src/reader.c (epilogue_set): Rename as...
12588 (epilogue_augment): this.
12589 * data/c.m4 (b4_epilogue): Defaults to empty.
12591 2002-11-12 Akim Demaille <akim@epita.fr>
12593 * src/getargs.c (long_options): Remove duplicates.
12594 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12596 * doc/bison.rnh: Remove.
12597 * doc/bison.texinfo (VMS Invocation): Remove.
12599 2002-11-12 Akim Demaille <akim@epita.fr>
12601 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12602 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12604 Use struniq for symbols.
12606 * src/symtab.h (symbol_t): The tag member is a struniq.
12607 (symbol_type_set): Adjust.
12608 * src/symtab.c (symbol_new): Takes a struniq.
12609 (symbol_free): Don't free the tag member.
12610 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12611 (hash_compare_symbol, hash_symbol): these.
12612 Use the fact that tags as struniqs.
12613 (symbol_get): Use struniq_new.
12614 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12616 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12617 and type members are struniqs.
12618 * src/reader.c (get_merge_function)
12619 (grammar_current_rule_merge_set): Adjust.
12620 (TYPE, current_type): Are struniq.
12622 Use struniq for file names.
12624 * src/files.h, src/files.c (infile): Split into...
12625 (grammar_file, current_file): these.
12626 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12627 * src/reduce.c (reduce_print): Likewise.
12628 * src/getargs.c (getargs): Likewise.
12629 * src/complain.h, src/complain.c: Likewise.
12630 * src/main.c (main): Call struniqs_new early enough to use it for
12632 Don't free the input file name.
12634 2002-11-12 Akim Demaille <akim@epita.fr>
12636 * src/symtab.c (symbol_free): Remove dead deactivated code:
12637 type_name are properly removed.
12638 Don't use XFREE to free items that cannot be NULL.
12639 * src/struniq.h, src/struniq.c: New.
12640 * src/main.c (main): Initialize/free struniqs.
12641 * src/parse-gram.y (%union): Add astruniq member.
12643 * src/scan-gram.l (<{tag}>): Return a struniq.
12644 Free the obstack bit that used to store it.
12645 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12647 2002-11-11 Paul Eggert <eggert@twinsun.com>
12649 Revamp to fix many (but not all) of the C- and M4-related quoting
12650 problems. Among other things, this fixes the Bison bug reported
12651 by Jan Hubicka when processing the Bash grammar; see:
12652 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12654 Use new @ escapes consistently. Represent brackets with @{ and @}
12655 rather than @<:@ and @:>@, since this works a bit better with dumb
12656 editors like vi. Represent @ with @@, since @ is now consistently
12657 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12658 __ofile__, to avoid unexpected expansions. Similarly, use @output
12659 rather than #output.
12661 * data/c.m4 (b4_copyright): Omit file name from comment, since
12662 the file name could contain "*/".
12663 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12664 be quoted. All uses changed.
12666 * data/glr.c: Use new @ escapes consistently.
12667 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12668 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12669 Remove, since they couldn't handle arbitrary characters in file
12671 * data/lalr1.cc: Likewise.
12672 * data/yacc.c: Likewise.
12674 * src/files.c (output_infix): Remove; all uses removed.
12675 * src/files.h: Likewise.
12677 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12678 mishandled funny characters in file names, and anyway it isn't
12680 * data/yacc.c: Likewise.
12681 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12683 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12684 * data/yacc.c: Likewise.
12686 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12688 (muscle_init): Quote filename as a C string.
12689 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12690 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12691 * src/output.c (escaped_file_name_output): New function.
12692 (prepare_symbols): Quote tokens for M4.
12693 (prepare): Don't insert output_infix, output_prefix,
12694 output_parser_name, output_header_name; this is now down by scan-skel.
12695 Insert skeleton as a C string.
12697 * src/output.c (user_actions_output, symbol_destructors_output,
12698 symbol_printers_output): Quote filenames for C and M4.
12699 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12701 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12702 escapes other than \\ and \'; this simplifies the code.
12703 (<SC_STRING>): Likewise, for \\ and \".
12704 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12705 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12706 Use new escapes @{ and @} for [ and ].
12708 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12709 them with auto vars.
12710 Switch to new escape scheme, where @ is the escape character uniformly.
12711 Abort if a stray escape character is found. Avoid unbounded input
12712 buffer when parsing non-escaped text.
12714 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12715 __oline__, #output, $@, and @{ do not have unintended meanings.
12717 2002-11-09 Paul Eggert <eggert@twinsun.com>
12719 Fix the test failure due to GCC warnings described in
12720 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12721 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12722 evaluate to 0 if it's impossible for NINF to be in the respective
12724 (yygetLRActions, yyrecoverParseError): Use them.
12726 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12727 counted in the token inserted at end of file. Now takes
12728 location_t *, not location_t, so that the location can be
12729 adjusted. All uses changed.
12731 * tests/regression.at (Invalid inputs): Adjust wording in
12732 diagnostic to match the new behavior.
12734 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12735 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12736 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12737 abort ();'. This reduces the runtime of the "Many lookaheads"
12738 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12741 2002-11-07 Paul Eggert <eggert@twinsun.com>
12743 * src/parse-gram.y (CHARACTER): Remove unused token.
12746 * src/scan-gram.l: Remove stack option. We no longer use the
12747 stack, since the stack was never deeper than 1; instead, use the
12748 new auto var c_context to record the stacked value.
12750 Remove nounput option. At an unexpected end of file, we now unput
12751 the minimal input necessary to end cleanly; this simplifies the
12754 Avoid unbounded token sizes where this is easy.
12756 (unexpected_end_of_file): New function.
12757 Use it to systematize the error message on unexpected EOF.
12758 (last-string): Now auto, not static.
12759 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12760 (scanner_last_string_free): Remove; not used.
12761 (percent_percent_count): Move decl to just before use.
12762 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12763 not the (never otherwised-used) CHARACTER.
12765 2002-11-07 Akim Demaille <akim@epita.fr>
12767 Let yyerror always receive the msg as last argument, so that
12768 yyerror can be variadic.
12770 * data/yacc.c (b4_yyerror_args): New.
12771 Use it when calling yyerror.
12772 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12773 Use it when calling yyerror.
12774 * doc/bison.texinfo (Error Reporting): Adjust.
12775 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12776 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12778 2002-11-06 Akim Demaille <akim@epita.fr>
12780 #line should have quoted strings.
12781 Ideally, this should be done by m4_quotearg.
12783 * src/scan-skel.l: Include quotearg.h.
12785 * src/output.c (symbol_printers_output)
12786 (symbol_destructors_output): Quote the file name.
12788 2002-11-06 Akim Demaille <akim@epita.fr>
12790 * tests/regression.at (Invalid inputs): Adjust to the recent
12793 2002-11-06 Akim Demaille <akim@epita.fr>
12795 Restore --no-lines.
12796 Reported by Jim Kent.
12798 * data/c.m4 (b4_syncline): New.
12799 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12800 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12801 * src/output.c (user_actions_output): Likewise.
12802 (prepare): Define 'b4_synclines_flag'.
12803 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12805 2002-11-06 Akim Demaille <akim@epita.fr>
12807 * src/main.c (main): Free `infile'.
12808 * src/scan-gram.l (handle_syncline): New.
12810 * src/output.c (user_actions_output, symbol_destructors_output)
12811 (symbol_printers_output): Use the location's file name, not
12813 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12815 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12817 * src/tables.c (matching_state): Don't allow states to match if
12818 either has GLR conflict entries.
12820 2002-11-05 Paul Eggert <eggert@twinsun.com>
12822 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12823 "integer out of range" rather than "invalid value".
12824 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12827 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12828 Also, remove one static variable in the scanner.
12830 * src/scan-gram.l (braces_level): Now auto, not static.
12831 Initialize to zero if the compiler is being picky.
12832 (INITIAL): Clear braces_level instead of incrementing it.
12833 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12834 as POSIX 1003.1-2001 requires.
12835 * src/system.h (IF_LINT): New macro, taken from coreutils.
12836 * configure.ac: Define "lint" if --enable-gcc-warnings.
12838 2002-11-05 Akim Demaille <akim@epita.fr>
12840 * src/scan-gram.l: When it starts with `%', complain about the
12841 whole directive, not just that `invalid character: %'.
12843 2002-11-04 Akim Demaille <akim@epita.fr>
12845 * Makefile.maint: Update from Autoconf.
12846 (update, cvs-update, po-update, do-po-update): New.
12848 2002-11-04 Akim Demaille <akim@epita.fr>
12850 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12852 Have yyerror `use' its arguments.
12853 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12854 returns true when location & yacc & pure & parse-param.
12855 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12857 2002-11-04 Akim Demaille <akim@epita.fr>
12859 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12861 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12864 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12867 2002-11-03 Paul Eggert <eggert@twinsun.com>
12869 * src/reader.c (get_merge_function, grammar_current_rule_check):
12870 Use consistent diagnostics for reporting type name clashes.
12871 Quote the types with <>, for consistency with Yacc.
12872 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12874 2002-11-03 Akim Demaille <akim@epita.fr>
12876 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12878 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12879 (b4_parse_param): Remove.
12880 Use b4_identification.
12881 Propagate b4_pure_args where needed to pass them to yyerror.
12882 * data/glr.m4 (b4_parse_param): Remove.
12883 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12884 (b4_lpure_formals): New.
12885 Use b4_identification.
12886 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12887 b4_user_formals and b4_user_args.
12888 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12889 (yyreportAmbiguity): When using a pure parser, also need
12890 the location, and the parse-params.
12892 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12893 When using a pure parser, also need the parse-params.
12895 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12896 (%pure-parser + %parse-param) LALR and GLR parsers.
12897 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12898 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12899 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12900 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12901 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12902 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12903 * doc/bison.texinfo: Untabify the whole file.
12904 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12905 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12906 (Error Reporting): Adjust to these new directives.
12907 Document %error-verbose, deprecate YYERROR_VERBOSE.
12909 2002-11-03 Akim Demaille <akim@epita.fr>
12911 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12912 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12913 command line options.
12914 * tests/cxx-type.at: Formatting changes.
12916 2002-11-03 Paul Eggert <eggert@twinsun.com>
12918 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12919 to count columns correctly, and to check for invalid inputs.
12921 Use mbsnwidth to count columns correctly. Account for tabs, too.
12922 Include mbswidth.h.
12923 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12924 (extend_location): New function.
12925 (YY_LINES): Remove.
12927 Handle CRLF in C code rather than in Lex code.
12928 (YY_INPUT): New macro.
12929 (no_cr_read): New function.
12931 Scan UCNs, even though we don't fully handle them yet.
12932 (convert_ucn_to_byte): New function.
12934 Handle backslash-newline correctly in C code.
12935 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
12936 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
12938 (tag, splice): New EREs. Do not allow NUL or newline in tags.
12939 Use {splice} wherever C allows backslash-newline.
12940 YY_STEP after space, newline, vertical-tab.
12941 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
12943 (letter, id): Don't assume ASCII; e.g., spell out a-z.
12945 ({int}, handle_action_dollar, handle_action_at): Check for integer
12948 (YY_STEP): Omit trailing semicolon, so that it's more like C.
12950 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
12951 as well as \000. Check for UCHAR_MAX, not 255.
12952 Allow \x with an arbitrary positive number of digits, as in C.
12953 Check for overflow here.
12954 Allow \? and UCNs, for compatibility with C.
12956 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
12957 with quote slot used by complain_at.
12959 * tests/input.at: Add tests for backslash-newline, m4 quotes
12960 in symbols, long literals, and funny escapes in strings.
12962 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
12963 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
12964 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
12965 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
12966 * m4/mbswidth.m4: New file, from GNU coreutils.
12968 * doc/bison.texinfo (Grammar Outline): Document // comments.
12969 (Symbols): Document that trigraphs have no special meaning in Bison,
12970 nor is backslash-newline allowed.
12971 (Actions): Document that trigraphs have no special meaning.
12973 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
12976 2002-11-02 Paul Eggert <eggert@twinsun.com>
12978 * src/reader.c: Don't include quote.h; not needed.
12979 (get_merge_function): Reword warning to be consistent with
12980 type clash diagnostic in grammar_current_rule_check.
12982 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
12983 bug in trigraph handling.
12985 * src/output.c (prepare_symbols): When printing token names,
12986 escape "[" as "@<:@" and likewise for "]".
12988 * src/system.h (errno): Remove declaration, as we are now
12989 assuming C89 or better, and C89 guarantees errno.
12991 2002-10-30 Paul Eggert <eggert@twinsun.com>
12993 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
12994 Check for close failures.
12995 * src/files.h (xfclose): Return void, not int, since it always
12997 * src/files.c (xfclose): Likewise. Report I/O error if ferror
12999 * src/output.c (output_skeleton): Use xfclose rather than fclose
13000 and ferror. xfclose now checks ferror.
13002 * data/glr.c (YYLEFTMOST_STATE): Remove.
13003 (yyreportTree): Use a stack-based leftmost state. This avoids
13004 our continuing battles with bogus warnings about initializers.
13006 2002-10-30 Akim Demaille <akim@epita.fr>
13008 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13011 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13013 * tests/glr-regr1.at: New test for reported regressions.
13014 * tests/testsuite.at: Add glr-regr1.at test.
13015 * tests/Makefile.am: Add glr-regr1.at test.
13017 2002-10-24 Paul Eggert <eggert@twinsun.com>
13021 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13022 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13023 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13024 Don't assume strdup exists; POSIX says its an XSI extension.
13025 Check for buffer overflow on input.
13027 2002-10-24 Akim Demaille <akim@epita.fr>
13029 * src/output.c (output_skeleton): Don't disable M4sugar comments
13030 too soon: it results in comments being expanded.
13031 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13034 2002-10-24 Akim Demaille <akim@epita.fr>
13036 * data/yacc.c (m4_int_type): New.
13037 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13038 char' as only yacc.c wants K&R portability.
13039 * data/glr.c (yysigned_char): Remove.
13040 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13041 Reported by Quoc Peyrot.
13043 2002-10-23 Paul Eggert <eggert@twinsun.com>
13045 * src/main.c (main): With --trace=time, report times even if a
13046 non-fatal error occurs. Formerly, the times were reported in some
13047 such cases but not in others.
13048 * src/reader.c (reader): Just return if a complaint has been issued,
13049 instead of exiting, so that 'main' can report times.
13051 2002-10-22 Akim Demaille <akim@epita.fr>
13053 * src/system.h: Include sys/types.
13054 Reported by Bert Deknuydt.
13056 2002-10-23 Paul Eggert <eggert@twinsun.com>
13058 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13059 Suggested by Art Haas.
13061 2002-10-22 Paul Eggert <eggert@twinsun.com>
13063 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13064 decl; not needed any more.
13065 * src/main.c (main): Use return to exit, undoing yesterday's change.
13066 The last OS that we could find where this wouldn't work is
13067 SunOS 3.5, and that's too old to worry about now.
13069 * data/glr.c (struct yyltype): Define members even when not
13070 doing locations. This is more consistent with yacc.c, and it
13071 works around the following bug reports:
13072 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13073 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13075 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13076 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13077 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13079 2002-10-22 Akim Demaille <akim@epita.fr>
13081 * data/README: New.
13083 2002-10-21 Paul Eggert <eggert@twinsun.com>
13085 Be consistent about 'bool'; the old code used an enum in one
13086 module and an int in another, and this violates the C standard.
13087 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13088 * configure.ac (AC_HEADER_STDBOOL): Add.
13089 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13090 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13091 * src/symtab.c (hash_compare_symbol_t): Likewise.
13092 * src/system.h (bool, false, true): Use a definition consistent
13093 with ../lib/hash.c. All uses changed.
13095 * src/complain.c (warning_issued): Renamed from warn_message_count,
13096 so that we needn't worry about integer overflow (!).
13097 Now of type bool. All uses changed.
13098 (complaint_issued): Renamed from complain_message_count; likewise.
13100 * src/main.c (main): Use exit to exit with failure.
13102 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13103 rather than 1 and 0.
13104 * src/main.c (main): Likewise.
13105 * src/getargs.c (getargs): Likewise.
13106 * src/reader.c (reader): Likewise.
13108 * src/getarg.c (getargs): Remove duplicate code for
13109 "Try `bison --help'".
13111 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13112 What was that "2" for?
13114 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13115 * src/getargs.c (usage): Likewise.
13117 * src/getargs.c (getargs): When there are too few operands, report
13118 the last one. When there are too many, report the first extra
13119 one. This is how diffutils does it.
13121 2002-10-20 Paul Eggert <eggert@twinsun.com>
13123 Remove K&R vestiges.
13124 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13125 * src/complain.c (VA_START): Remove. Assume prototypes.
13126 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13127 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13128 fatal): Assume prototypes.
13129 * src/complain.h: Assume prototypes.
13130 * src/system.h (PARAMS): Remove.
13131 Include <limits.h> unconditionally, since it's guaranteeed even
13132 for a freestanding C89 compiler.
13133 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13134 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13136 2002-10-20 Akim Demaille <akim@epita.fr>
13138 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13139 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13140 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13141 (yyresolveStates, yyresolveAction, yyresolveStack)
13142 (yyprocessOneStack): Use them.
13143 (yy_reduce_print): New.
13144 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13146 2002-10-20 Akim Demaille <akim@epita.fr>
13148 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13149 arguments and output `void'.
13150 (b4_c_function): Rename as...
13151 (b4_c_function_def): this.
13152 (b4_c_function_decl, b4_c_ansi_function_def)
13153 (b4_c_ansi_function_decl): New.
13154 Change the interpretation of the arguments: before `int, foo', now
13156 * data/yacc.c (yyparse): Prototype and define thanks to these.
13157 Adjust b4_c_function_def uses.
13158 * data/glr.c (yyparse): Likewise, but ANSI only.
13160 2002-10-20 Akim Demaille <akim@epita.fr>
13162 * src/output.c (prepare): Move the definition of `tokens_number',
13163 `nterms_number', `undef_token_number', `user_token_number_max'
13165 (prepare_tokens): Here.
13166 (prepare_tokens): Rename as...
13167 (prepare_symbols): this.
13168 (prepare): Move the definition of `rules_number' to...
13169 (prepare_rules): here.
13170 (prepare): Move the definition of `last', `final_state_number',
13171 `states_number' to...
13172 (prepare_states): here.
13173 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13175 2002-10-20 Akim Demaille <akim@epita.fr>
13177 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13179 2002-10-20 Akim Demaille <akim@epita.fr>
13181 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13184 2002-10-20 Akim Demaille <akim@epita.fr>
13186 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13187 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13189 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13191 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13192 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13195 2002-10-19 Paul Eggert <eggert@twinsun.com>
13197 Do not create a temporary file, as that involves security and
13198 cleanup headaches. Instead, use a pair of pipes.
13199 Derived from a suggestion by Florian Krohm.
13200 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13201 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13202 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13203 (BISON_PREREQ_SUBPIPE): Add.
13204 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13205 Add subpipe.h, subpipe.c.
13206 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13207 * po/POTFILES.in: Add lib/subpipe.c.
13208 * src/output.c: Include "subpipe.h".
13209 (m4_invoke): Remove decl.
13210 (scan_skel): New decl.
13211 (output_skeleton): Use pipe rather than temporary file for m4 input.
13212 Check that m4sugar.m4 is readable, to avoid deadlock.
13213 Check for pipe I/O error.
13214 * src/scan-skel.l (readpipe): Remove decl.
13215 (scan_skel): New function, to be used in place of m4_invoke.
13216 Read from stream rather than file.
13218 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13219 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13220 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13221 this generates a more-accurate value anyway.
13223 * lib/timevar.c (timervar_accumulate): Rename locals to
13224 avoid confusion with similarly-named more-global.
13225 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13227 * src/output.c (prepare): Use xstrdup to convert char const *
13228 to char *, to avoid GCC warning.
13230 2002-10-19 Akim Demaille <akim@epita.fr>
13232 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13233 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13234 Use them to have `calc.y' ready for %pure-parser.
13235 * data/yacc.c (YYLEX): Pass a yylex return type to
13236 b4_c_function_call.
13238 2002-10-19 Akim Demaille <akim@epita.fr>
13240 Prototype support of %lex-param and %parse-param.
13242 * src/parse-gram.y: Add the definition of the %lex-param and
13243 %parse-param tokens, plus their rules.
13244 Drop the `_' version of %glr-parser.
13246 * src/scan-gram.l (INITIAL): Scan them.
13247 * src/muscle_tab.c: Comment changes.
13248 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13249 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13250 (muscle_entry_s): The `value' member is no longer const.
13251 Adjust all dependencies.
13252 * src/muscle_tab.c (muscle_init): Adjust: use
13253 MUSCLE_INSERT_STRING.
13254 Initialize the obstack earlier.
13255 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13256 (muscle_pair_list_grow): New.
13257 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13258 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13259 * tests/calc.at: Use %locations, not --locations.
13260 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13262 2002-10-19 Akim Demaille <akim@epita.fr>
13264 * src/getargs.c (usage): Take status as argument and exit
13266 Report the traditional `Try ... --help' message when status != 0.
13267 (usage, version): Don't take a FILE * as arg, it is pointless.
13268 (getargs): When there is an incorrect number of arguments, make it
13269 an error, and report it GNUlically thanks to `usage ()'.
13271 2002-10-18 Paul Eggert <eggert@twinsun.com>
13273 * data/glr.c (yyreportParseError): Don't assume that sprintf
13274 yields the length of the printed string, as this is not true
13275 on SunOS 4.1.4. Reported by Peter Klein.
13277 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13278 * tests/conflicts.at (%nonassoc and eof): Likewise.
13279 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13281 2002-10-17 Akim Demaille <akim@epita.fr>
13283 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13284 * src/getargs.c (trace_types, trace_args): Adjust.
13285 * src/reader.c (grammar_current_rule_prec_set)
13286 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13287 Standardize error messages.
13288 And s/@prec/%prec/!
13289 (reader): Use trace_flag to enable scanner/parser debugging,
13290 instead of an adhoc scheme.
13291 * src/scan-gram.l: Remove trailing debugging code.
13293 2002-10-16 Paul Eggert <eggert@twinsun.com>
13295 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13298 * NEWS: Officially drop support for building Bison with K&R C,
13299 since it didn't work anyway and it's not worth worrying about.
13300 * Makefile.maint (wget_files): Remove ansi2knr.c.
13301 (ansi2knr.c-url_prefix): Remove.
13302 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13303 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13304 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13306 2002-10-15 Paul Eggert <eggert@twinsun.com>
13308 Stop using the "enum_" trick for K&R-style function definitions;
13309 it confused me, and I was the author! Instead, assume that people
13310 who want to use K&R C compilers (when using these modules in GCC,
13311 perhaps?) will run ansi2knr.
13313 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13314 All uses of "enum_" changed to "enum ".
13315 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13316 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13318 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13319 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13320 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13321 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13322 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13323 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13324 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13325 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13326 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13327 Use function prototypes; this removes the need for declaring
13328 static functions simply to provide their prototypes.
13329 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13330 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13331 bitset_count_, bitset_create, bitset_dump, bitset_first,
13332 bitset_free, bitset_init, bitset_last, bitset_next,
13333 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13334 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13335 bitset_print, bitset_release_memory, bitset_toggle_,
13336 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13337 debug_bitset): Likewise.
13338 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13339 * lib/bitset_stats.c (bitset_log_histogram_print,
13340 bitset_percent_histogram_print, bitset_stats_and,
13341 bitset_stats_and_cmp, bitset_stats_and_or,
13342 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13343 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13344 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13345 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13346 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13347 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13348 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13349 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13350 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13351 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13352 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13353 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13354 bitset_stats_zero): Likewise.
13355 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13356 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13357 bitsetv_dump, debug_bitsetv): Likewise.
13358 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13359 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13360 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13361 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13362 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13363 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13364 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13365 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13366 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13367 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13368 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13370 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13371 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13372 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13373 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13374 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13375 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13376 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13377 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13378 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13379 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13380 lbitset_xor_cmp, lbitset_zero): Likewise.
13382 2002-10-14 Akim Demaille <akim@epita.fr>
13386 2002-10-14 Akim Demaille <akim@epita.fr>
13388 * tests/Makefile.am (maintainer-check-posix): New.
13390 2002-10-14 Akim Demaille <akim@epita.fr>
13392 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13395 2002-10-14 Akim Demaille <akim@epita.fr>
13397 * src/tables.c (table_ninf_remap): base -> tab.
13398 Reported by Matt Rosing.
13400 2002-10-14 Paul Eggert <eggert@twinsun.com>
13402 * tests/action.at, tests/calc.at, tests/conflicts.at,
13403 tests/cxx-type.at, tests/headers.at, tests/input.at,
13404 tests/regression.at, tests/synclines.at, tests/torture.at:
13405 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13406 so that the tests still work even if POSIXLY_CORRECT is set.
13407 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13409 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13410 for portability to K&R hosts. Fix typo: signed char is guaranteed
13411 only to 127, not to 128.
13412 * data/glr.c (yysigned_char): New type.
13413 * data/yacc.c (yysigned_char): Likewise.
13414 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13416 2002-10-13 Paul Eggert <eggert@twinsun.com>
13418 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13419 true due to limited range of data type" warning from GCC.
13421 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13422 by wrapping enum yytokentype's definition inside #ifndef
13423 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13425 2002-10-13 Akim Demaille <akim@epita.fr>
13427 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13428 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13430 2002-10-13 Akim Demaille <akim@epita.fr>
13432 * Makefile.maint: Update from Autoconf 2.54.
13433 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13435 2002-10-13 Akim Demaille <akim@epita.fr>
13437 * src/print.c (print_state): Separate the list of solved conflicts
13438 from the other items.
13439 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13441 2002-10-13 Akim Demaille <akim@epita.fr>
13443 Let nondeterministic skeletons be usable with deterministic
13446 With the patch, GAWK compiled by GCC without -O2 passes its test
13447 suite using a GLR parser driven by LALR tables. It fails with -O2
13448 because `struct stat' gives two different answers on my machine:
13449 88 (definition of an auto var) and later 96 (memset on this var).
13450 Hence the stack is badly corrumpted. The headers inclusion is to
13451 blame: if I move the awk.h inclusion before GLR's system header
13452 inclusion, the two struct stat have the same size.
13454 * src/tables.c (pack_table): Always create conflict_table.
13455 (token_actions): Always create conflict_list.
13456 * data/glr.c (YYFLAG): Remove, unused.
13458 2002-10-13 Akim Demaille <akim@epita.fr>
13460 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13462 (VALGRIND, GXX): New.
13463 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13464 * tests/bison.in: Run $PREBISON a pre-command.
13465 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13466 (maintainer-check-g++): New.
13467 * Makefile.am (maintainer-check): New.
13469 2002-10-13 Akim Demaille <akim@epita.fr>
13471 * data/glr.c: Formatting changes.
13472 Tweak some trace messages to match yacc.c's.
13474 2002-10-13 Akim Demaille <akim@epita.fr>
13476 GLR parsers sometimes raise parse errors instead of performing the
13478 Reported by Charles-Henry de Boysson.
13480 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13481 check the length of the traces when %glr.
13482 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13484 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13486 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13487 (yyltype): Remove the yy prefix from the member names.
13488 (yytable): Complete its comment.
13489 (yygetLRActions): Map error action number from YYTABLE from
13491 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13492 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13493 not satisfying as we could compare an YYACTION computed from
13494 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13495 only value for error actions.
13496 (yyreportParseError): In verbose parse error messages, don't issue
13497 `error' in the list of expected tokens.
13498 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13499 next action to perform to match glr.c's decoding.
13500 (yytable): Complete its comment.
13502 2002-10-13 Paul Eggert <eggert@twinsun.com>
13504 Fix problem reported by Henrik Grubbstroem in
13505 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13506 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13507 because the Bison parser reads the second action before reducing
13509 * src/scan-gram.l (rule_length): New static var.
13510 Use it to keep track of the rule length in the scanner, since
13511 we can't expect the parser to be in lock-step sync with the scanner.
13512 (handle_action_dollar, handle_action_at): Use this var.
13513 * tests/actions.at (Exotic Dollars): Test for the problem.
13515 2002-10-12 Paul Eggert <eggert@twinsun.com>
13517 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13518 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13519 Include <sys/time.h> when checking for clock_t and struct tms.
13520 Use same include order as source.
13521 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13522 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13524 * lib/timevar.c: Update copyright date and clarify comments.
13525 (get_time) [IN_GCC]: Keep the GCC version for reference.
13527 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13528 GCC version as of today, then merge Bison's changes.
13529 Change "GCC" to "Bison" in copyright notice. timevar.def's
13530 author is Akim, so change that too.
13532 * src/reader.c (grammar_current_rule_check):
13533 Don't worry about the default action if $$ is untyped.
13534 Prevents bogus warnings reported by Jim Gifford in
13535 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13537 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13538 * data/glr.c, data/lalr1.cc, data/yacc.c:
13539 Output token definitions before the first part of user declarations.
13540 Fixes compatibility problem reported by Jim Gifford for kbd in
13541 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13543 2002-10-11 Paul Eggert <eggert@twinsun.com>
13545 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13546 (yyparse): here. This undoes some of the 2002-07-25 change.
13547 Compatibility problem reported by Ralf S. Engelschall with
13548 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13550 2002-10-11 Akim Demaille <akim@epita.fr>
13552 * tests/regression.at Characters Escapes): New.
13553 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13555 Reported by Jan Nieuwenhuizen.
13557 2002-10-11 Akim Demaille <akim@epita.fr>
13561 2002-10-10 Paul Eggert <eggert@twinsun.com>
13563 Portability fixes for bitsets; this also avoids several GCC
13566 * lib/abitset.c: Include <stddef.h>, for offsetof.
13567 * lib/lbitset.c: Likewise.
13569 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13570 properly for vectors of objects. Do not assume that adding a
13571 header size to a multiple of a word size yields a value that is
13572 properly aligned for the whole union.
13573 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13575 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13576 unique names for structures.
13577 * lib/ebitset.c (ebitset_bytes): Likewise.
13578 * lib/lbitset.c (lbitset_bytes): Likewise.
13580 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13581 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13582 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13583 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13584 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13585 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13586 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13587 to improve the type-checking that GCC can do.
13588 * lib/bitset.c (bitset_op4_cmp): Likewise.
13589 * lib/bitset_stats.c (bitset_stats_count,
13590 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13591 bitset_stats_copy, bitset_stats_disjoint_p,
13592 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13593 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13594 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13595 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13596 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13597 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13598 bitset_stats_or_and_cmp): Likewise.
13599 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13600 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13601 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13602 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13604 * lib/abitset.h: Include bitset.h, not bbitset.h.
13605 * lib/ebitset.h: Likewise.
13606 * lib/lbitset.h: Likewise.
13608 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13609 All instances of parameters of type enum bitset_opts are now of
13610 type enum_bitset_opts, to conform to the C Standard, and similarly
13611 for enum_bitset_type.
13612 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13613 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13615 Do not use "struct bitset_struct" to mean different things in
13616 different modules. Not only is this confusing, it violates
13617 the C Standard, which requires that structure types in different
13618 modules must be compatible if one is to be passed to the other.
13619 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13620 All instances of "struct bitset_struct *" replaced with "bitset".
13621 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13622 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13623 struct lbitset_struct, struct bitset_stats_struct): New types.
13624 All uses of struct bitset_struct changed to union bitset_union,
13626 * lib/abitset.c (struct abitset_struct, abitset,
13627 struct bitset_struct): Remove.
13628 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13629 struct bitset_struct): Remove.
13630 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13631 bitset_struct): Remove.
13632 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13635 Do not call a function of type T using a call that assumes the
13636 function is of a different type U. Standard C requires that a
13637 function must be called with a type that is compatible with its
13639 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13641 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13643 * lib/ebitset.c (PFV): Remove.
13644 * lib/lbitset.c (PFV): Likewise.
13645 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13646 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13648 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13649 (ebitset_vtable): Use them.
13650 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13651 lbitset_xor): New functions.
13652 (lbitset_vtable): Use them.
13654 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13657 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13659 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13660 Use offsetof, for simplicity.
13662 2002-10-06 Paul Eggert <eggert@twinsun.com>
13664 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13665 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13666 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13667 which was inadvertently undone by the 2002-09-30 patch.
13668 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13669 the same width as int.
13671 2002-10-04 Paul Eggert <eggert@twinsun.com>
13675 * configure.ac (AC_INIT), NEWS: Increment version number.
13677 * doc/bison.texinfo: Minor spelling, grammar, and white space
13679 (Symbols): Mention that any negative value returned from yylex
13680 signifies end-of-input. Warn about negative chars. Mention
13681 the portable Standard C character set.
13683 The GNU coding standard says CFLAGS and YFLAGS are reserved
13684 for the installer to set.
13685 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13686 * src/Makefile.am (AM_CFLAGS): Likewise.
13687 (AM_YFLAGS): Renamed from YFLAGS.
13689 Fix some MAX and MIN problems.
13690 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13691 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13692 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13693 * src/reader.c (reader): Use it.
13695 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13696 POSIX 1003.1-2001 has removed fgrep.
13698 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13700 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13701 interpreted as signed.
13702 * lib/ebitset.c (ebitset_list): Fix bug.
13704 2002-10-01 Paul Eggert <eggert@twinsun.com>
13706 More fixes for 64-bit hosts and large bitsets.
13708 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13709 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13710 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13711 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13712 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13713 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13714 bitset_count_): Likewise.
13715 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13716 bitset_first, bitset_last): Likewise.
13717 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13718 bitset_stats_list_reverse, bitset_stats_size,
13719 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13721 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13722 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13723 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13724 bitsetv_reflexive_transitive_closure): Likewise.
13725 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13726 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13728 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13731 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13732 Use size_t, not unsigned int, to count bytes.
13733 * lib/abitset.h (abitset_bytes): Likewise.
13734 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13736 * lib/bitset.h (bitset_bytes): Likewise.
13737 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13738 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13739 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13740 * lib/ebitset.c (ebitset_bytes): Likewise.
13741 * lib/ebitset.h (ebitset_bytes): Likewise.
13742 * lib/lbitset.c (lbitset_bytes): Likewise.
13743 * lib/lbitset.h (lbitset_bytes): Likewise.
13745 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13746 abitset_subset_p, abitset_disjoint_p, abitset_and,
13747 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13748 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13749 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13750 abitset_or_and, abitset_or_and_cmp):
13751 Use bitset_windex instead of unsigned int.
13752 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13753 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13754 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13755 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13757 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13759 * lib/bitset.c (bitset_print):
13760 Use proper printf formats for widths of integer types.
13761 * lib/bitset_stats.c (bitset_percent_histogram_print,
13762 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13763 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13764 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13765 * lib/lbitset.c (lbitset_bytes): Likewise.
13767 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13768 BITSET_SIZE_MAX): New macros.
13769 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13770 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13771 to BITSET_WINDEX_MAX.
13773 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13774 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13775 since we now return the bitset_bindex type (not int).
13777 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13778 when computing sizes.
13779 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13781 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13782 and avoid cast to unsigned.
13784 2002-09-30 Akim Demaille <akim@epita.fr>
13786 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13787 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13788 Updates from Michael Hayes.
13790 2002-09-30 Art Haas <ahaas@neosoft.com>
13792 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13794 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13797 2002-09-27 Akim Demaille <akim@epita.fr>
13801 2002-09-27 Akim Demaille <akim@epita.fr>
13803 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13804 (Because of AC_LIBSOURCE).
13806 2002-09-27 Akim Demaille <akim@epita.fr>
13808 Playing with Autoscan.
13810 * configure.ac: Remove the old LIBOBJ tweaks.
13811 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13812 * lib/strrchr.c: New.
13813 * lib/strtol.c: New, from the Coreutils 4.5.1.
13815 2002-09-27 Akim Demaille <akim@epita.fr>
13817 Playing with Autoscan.
13819 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13820 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13821 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13822 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13825 2002-09-24 Akim Demaille <akim@epita.fr>
13827 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13828 (Frequently Asked Questions, Parser Stack Overflow): New.
13830 2002-09-13 Akim Demaille <akim@epita.fr>
13832 Playing with autoscan.
13834 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13835 * src/files.c (skeleton_find): Remove, unused.
13836 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13837 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13839 2002-09-13 Akim Demaille <akim@epita.fr>
13841 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13842 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13844 2002-09-13 Akim Demaille <akim@epita.fr>
13846 * configure.ac: Require 2.54.
13847 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13848 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13849 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13850 Remove, provided by Autoconf macros.
13852 2002-09-12 Akim Demaille <akim@epita.fr>
13854 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13856 2002-09-12 Akim Demaille <akim@epita.fr>
13858 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13859 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13860 Reported by Martin Mokrejs.
13862 2002-09-10 Akim Demaille <akim@epita.fr>
13864 * src/parse-gram.y: Associate a human readable string to each
13866 * tests/regression.at (Invalid inputs): Adjust.
13868 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13870 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13871 with an Autoconf-2.5x style configure.ac.
13873 2002-09-06 Paul Eggert <eggert@twinsun.com>
13875 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13876 exception applies only to yacc.c. This is a modification of a
13877 patch originally suggested by Akim Demaille.
13879 2002-09-06 Akim Demaille <akim@epita.fr>
13881 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13883 * data/yacc.c: here.
13885 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13887 (b4_ltype): Default to yy::Location from location.hh.
13889 2002-09-04 Jim Meyering <jim@meyering.net>
13891 * data/yacc.c: Guard the declaration of yytoknum also with
13892 `#ifdef YYPRINT', so it is declared only when used.
13894 2002-09-04 Akim Demaille <akim@epita.fr>
13896 * configure.in: Rename as...
13897 * configure.ac: this.
13900 2002-09-04 Akim Demaille <akim@epita.fr>
13902 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13903 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13904 translate maintainer only messages.
13906 2002-08-12 Paul Eggert <eggert@twinsun.com>
13910 * Makefile.am (SUBDIRS): Remove intl.
13911 (DISTCLEANFILES): Remove.
13912 * NEWS: Mention that GNU M4 is now required. Clarify what is
13913 meant by "larger grammars". Mention the pt_BR translation.
13914 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13915 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13916 Bump version from 0.11.2 to 0.11.5.
13917 (BISON_PREREQ_STAGE): Remove.
13918 (AM_GNU_GETTEXT): Use external gettext.
13919 (AC_OUTPUT): Remove intl/Makefile.
13921 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13923 * data/glr.c: Include string.h, for strlen.
13924 (yyreportParseError): Use size_t for yysize.
13925 (yy_yypstack): No longer nested inside yypstates, as nested
13926 functions are not portable. Do not assume size_t is the
13928 (yypstates): Do not assume that ptrdiff_t is the same width
13929 as int, and similarly for yyposn and YYINDEX.
13931 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13933 * lib/Makefile.am (INCLUDES): Do not include from the intl
13934 directory, which has been removed.
13935 * src/Makefile.am (INCLUDES): Likewise.
13937 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
13938 (bitsets_sources, additional_bitsets_sources, timevars_sources):
13941 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
13942 * tests/Makefile.am (EXTRA_DIST): Likewise.
13944 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
13945 Do not assume that bitset_windex is the same width as unsigned.
13947 * lib/abitset.c (abitset_unused_clear): Do not assume that
13948 bitset_word is the same width as int.
13949 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
13950 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
13951 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
13952 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
13953 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
13955 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
13956 portability to one's complement hosts!).
13957 * lib/ebitset.c (ebitset_op1): Likewise.
13958 * lib/lbitset.c (lbitset_op1): Likewise.
13960 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
13961 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13962 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
13963 Sync with fileutils.
13964 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
13965 lib/gettext.h: Sync with diffutils.
13967 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
13968 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
13970 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
13971 PROTOTYPES to check for prototypes, and "defined __STDC__" to
13974 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
13975 size_t; the old version tried to do this but casted improperly.
13976 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
13977 (bitset_test): Now returns int, not unsigned long.
13979 * lib/bitset_stats.c: Include "gettext.h".
13981 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
13982 name locals "index", as it generates unnecessary warnings on some
13983 hosts that have an "index" function.
13985 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
13986 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
13987 they need translation.
13988 * src/LR0.c (state_list_append, new_itemsets, get_state,
13989 append_states, generate_states): Likewise.
13990 * src/assoc.c (assoc_to_string): Likewise.
13991 * src/closure.c (print_closure, set_firsts, closure): Likewise.
13992 * src/gram.c (grammar_dump): Likewise.
13993 * src/injections.c (injections_compute): Likewise.
13994 * src/lalr.c (lookaheads_print): Likewise.
13995 * src/relation.c (relation_transpose): Likewise.
13996 * src/scan-gram.l: Likewise.
13997 * src/tables.c (table_grow, pack_vector): Likewise.
13999 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14000 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14001 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14002 * m4/mbstate_t.m4: Sync with fileutils.
14003 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14005 * po/LINGUAS: Add pt_BR.
14006 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14007 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14009 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14011 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14013 * src/complain.c (strerror_r): Remove decl; not needed.
14014 (strerror): Use same pattern as ../lib/error.c.
14016 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14018 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14020 * src/main.c (main): Cast result of bindtextdomain and textdomain
14021 to void, to avoid a GCC warning when --disable-nls is in effect.
14023 * src/scan-gram.l: Use strings rather than escapes when possible,
14024 to minimize the number of warnings from xgettext.
14025 (handle_action_dollar, handle_action_at): Don't use isdigit,
14026 as it mishandles negative chars and it may not work as expected
14027 outside the C locale.
14029 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14030 this is a GCC extension and is not portable to other compilers.
14032 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14033 Do not include <ctype.h>; no longer needed.
14034 Do not include <malloc.h>; no longer needed (and generates
14035 warnings on OpenBSD 3.0).
14037 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14040 * tests/regression.at: Do not use 'cc -c input.c -o input';
14041 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14043 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14044 exit status as failure, not just exit status 1. Sun C exits
14045 with status 2 sometimes.
14047 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14048 Use it for the two large tests.
14050 2002-08-02 Akim Demaille <akim@epita.fr>
14052 * src/conflicts.c (conflicts_output): Don't output rules never
14053 reduced here, since anyway that computation doesn't work.
14054 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14055 (rule_useless_p, rule_never_reduced_p): New.
14056 (grammar_rules_partial_print): Use a filter instead of a range.
14057 Display the title only if needed.
14058 (grammar_rules_print): Adjust.
14059 (grammar_rules_never_reduced_report): New.
14060 * src/tables.c (action_row): Move the computation of rules never
14062 (token_actions): here.
14063 * src/main.c (main): Make the parser before making the report, so
14064 that rules never reduced are computed.
14065 Call grammar_rules_never_reduced_report.
14066 * src/print.c (print_results): Report rules never reduced.
14067 * tests/conflicts.at, tests/reduce.at: Adjust.
14069 2002-08-01 Akim Demaille <akim@epita.fr>
14071 Instead of attaching lookaheads and duplicating the rules being
14072 reduced by a state, attach the lookaheads to the reductions.
14074 * src/state.h (state_t): Remove the `lookaheads',
14075 `lookaheads_rule' member.
14076 (reductions_t): Add a `lookaheads' member.
14077 Use a regular array for the `rules'.
14078 * src/state.c (reductions_new): Initialize the lookaheads member
14080 (state_rule_lookaheads_print): Adjust.
14081 * src/state.h, src/state.c (state_reductions_find): New.
14082 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14083 (count_rr_conflicts): Adjust.
14084 * src/lalr.c (LArule): Remove.
14085 (add_lookback_edge): Adjust.
14086 (state_lookaheads_count): New.
14087 (states_lookaheads_initialize): Merge into...
14088 (initialize_LA): this.
14089 (lalr_free): Adjust.
14090 * src/main.c (main): Don't free nullable and derives too early: it
14091 is used by --verbose.
14092 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14094 2002-08-01 Akim Demaille <akim@epita.fr>
14096 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14098 (set_derives, free_derives): Rename as...
14099 (derives_compute, derives_free): this.
14100 Adjust all dependencies.
14101 * src/nullable.c (set_nullable, free_nullable): Rename as...
14102 (nullable_compute, nullable_free): these.
14103 (rule_list_t): Store rule_t *, not rule_number_t.
14104 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14105 pointers, instead of their numbers.
14106 * src/main.c (main): Call nullable_free, and derives_free earlier,
14107 as they were lo longer used.
14109 2002-08-01 Akim Demaille <akim@epita.fr>
14111 * lib/timevar.c (get_time): Include children time.
14112 * src/lalr.h (LA, LArule): Don't export them: used with the
14114 * src/lalr.c (LA, LArule): Static.
14115 * src/lalr.h, src/lalr.c (lalr_free): New.
14116 * src/main.c (main): Call it.
14117 * src/tables.c (pack_vector): Check whether loc is >= to the
14119 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14120 (tables_generate): do it, since that's also it which allocates
14122 Don't free LA and LArule, main does.
14124 2002-07-31 Akim Demaille <akim@epita.fr>
14126 Separate parser tables computation and output.
14128 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14129 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14130 (yydefgoto, yydefact, high): Move to...
14131 * src/tables.h, src/tables.c: here.
14132 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14133 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14134 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14135 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14136 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14137 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14138 (action_row, save_row, token_actions, save_column, default_goto)
14139 (goto_actions, sort_actions, matching_state, pack_vector)
14140 (table_ninf_remap, pack_table, prepare_actions): Move to...
14141 * src/tables.c: here.
14142 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14143 * src/output.c (token_actions, output_base, output_conflicts)
14144 (output_check): Merge into...
14145 (prepare_actions): this.
14146 (actions_output): Rename as...
14147 (user_actions_output): this.
14148 * src/main.c (main): Call tables_generate and tables_free.
14150 2002-07-31 Akim Demaille <akim@epita.fr>
14152 Steal GCC's --time-report support.
14154 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14155 stolen/adjusted from GCC.
14156 * m4/stage.m4: Remove time related checks.
14157 * m4/timevar.m4: New.
14158 * configure.in: Adjust.
14159 * src/system.h: Adjust to using timevar.h.
14160 * src/getargs.h, src/getargs.c: Support trace_time for
14162 * src/main.c (stage): Remove.
14163 (main): Replace `stage' invocations with timevar calls.
14164 * src/output.c: Insert pertinent timevar calls.
14166 2002-07-31 Akim Demaille <akim@epita.fr>
14168 Let --trace have arguments.
14170 * src/getargs.h (enum trace_e): New.
14171 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14172 (long_options, short_options): --trace/-T takes an optional
14174 Change all the uses of trace_flag to reflect the new flags.
14175 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14177 Strengthen `stage' portability.
14179 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14180 * configure.in: Use it.
14181 Don't check for malloc.h and sys/times.h.
14182 * src/system.h: Include them when appropriate.
14183 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14184 times and struct tms are available.
14186 2002-07-30 Akim Demaille <akim@epita.fr>
14188 In verbose parse error message, don't report `error' as an
14190 * tests/actions.at (Printers and Destructors): Adjust.
14191 * tests/calc.at (Calculator $1): Adjust.
14192 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14193 error message, do not report the parser accepts the error token in
14196 2002-07-30 Akim Demaille <akim@epita.fr>
14198 Normalize conflict related messages.
14200 * src/complain.h, src/complain.c (warn, complain): New.
14201 * src/conflicts.c (conflicts_print): Use them.
14202 (conflict_report_yacc): New, extracted from...
14203 (conflicts_print): here.
14204 * tests/conflicts.at, tests/existing.at: Adjust.
14206 2002-07-30 Akim Demaille <akim@epita.fr>
14208 Report rules which are never reduced by the parser: those hidden
14211 * src/LR0.c (save_reductions): Don't make the final state too
14212 different: save its reduction (accept) instead of having a state
14213 without any action (no shift or goto, no reduce).
14214 Note: the final state is now a ``regular'' state, i.e., the
14215 parsers now contain `reduce 0' as default reduction.
14216 Nevertheless, since they decide to `accept' when yystate =
14217 final_state, they still will not reduce rule 0.
14218 * src/print.c (print_actions, print_reduction): Adjust.
14219 * src/output.c (action_row): Track reduced rules.
14220 (token_actions): Report rules never reduced.
14221 * tests/conflicts.at, tests/regression.at: Adjust.
14223 2002-07-30 Akim Demaille <akim@epita.fr>
14225 `stage' was accidently included in a previous patch.
14226 Initiate its autoconfiscation.
14228 * configure.in: Look for malloc.h and sys/times.h.
14229 * src/main.c (stage): Adjust.
14230 Report only when trace_flag.
14232 2002-07-29 Akim Demaille <akim@epita.fr>
14234 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14236 (errs_t): symbol_t*, not symbol_number_t.
14237 (reductions_t): rule_t*, not rule_number_t.
14238 (FOR_EACH_SHIFT): New.
14239 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14240 * src/print.c, src/print_graph.c: Adjust.
14242 2002-07-29 Akim Demaille <akim@epita.fr>
14244 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14246 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14247 (endtoken, accept): these.
14248 * src/reader.c (reader): Set endtoken's default tag to "$end".
14249 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14250 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14253 2002-07-29 Akim Demaille <akim@epita.fr>
14255 * src/reduce.c (reduce_grammar): When the language is empty,
14256 complain about the start symbol, not the axiom.
14258 * tests/reduce.at (Empty Language): New.
14260 2002-07-26 Akim Demaille <akim@epita.fr>
14262 * src/reader.h, src/reader.c (gram_error): ... can't get
14263 yycontrol without making too strong assumptions on the parser
14265 * src/output.c (prepare_tokens): Use the real 0th value of
14266 token_translations instead of `0'.
14267 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14269 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14270 for the time being: %locations ought to provide it to yyerror.
14272 2002-07-25 Akim Demaille <akim@epita.fr>
14274 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14275 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14276 * tests/regression.at (Web2c Actions): Adjust.
14278 2002-07-25 Akim Demaille <akim@epita.fr>
14280 Stop storing rules from 1 to nrules + 1.
14282 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14283 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14284 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14285 Iterate from 0 to nrules.
14286 Use rule_number_as_item_number and item_number_as_rule_number.
14287 Adjust to `derive' now containing possibly 0.
14288 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14289 Handle the `- 1' part in rule numbers from/to item numbers.
14290 * src/conflicts.c (log_resolution): Fix the message which reversed
14292 * src/output.c (action_row): Initialize default_rule to -1.
14293 (token_actions): Adjust.
14294 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14296 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14298 2002-07-25 Akim Demaille <akim@epita.fr>
14300 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14301 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14302 (b4_c_knr_arg_decl): New.
14303 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14304 yyreport_parse_error.
14306 2002-07-25 Akim Demaille <akim@epita.fr>
14308 * data/yacc.c (yyreport_parse_error): New, extracted from...
14310 (yydestruct, yysymprint): Move above yyparse.
14313 2002-07-25 Akim Demaille <akim@epita.fr>
14315 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14317 (b4_sint_type, b4_uint_type): these.
14318 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14319 * tests/regression.at (Web2c Actions): Adjust.
14321 2002-07-25 Akim Demaille <akim@epita.fr>
14323 * src/gram.h (TIEM_NUMBER_MAX): New.
14324 (item_number_of_rule_number, rule_number_of_item_number): Rename
14326 (rule_number_as_item_number, item_number_as_rule_number): these.
14327 Adjust dependencies.
14328 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14329 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14330 (symbol_number_to_vector_number): New.
14331 (order): Of vector_number_t* type.
14332 (base_t, BASE_MAX, BASE_MIN): New.
14333 (froms, tos, width, pos, check): Of base_t type.
14334 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14335 (actrow): Of action_number_t type.
14336 (conflrow): Of unsigned int type.
14337 (table_ninf, base_ninf): New.
14338 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14339 (muscle_insert_int_table, muscle_insert_base_table)
14340 (muscle_insert_rule_number_table): New.
14341 (prepare_tokens): Output `toknum' as int_table.
14342 (action_row): Returns a rule_number_t.
14343 Use ACTION_MIN, not SHRT_MIN.
14344 (token_actions): yydefact is rule_number_t*.
14345 (table_ninf_remap): New.
14346 (pack_table): Use it for `base' and `table'.
14347 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14349 (YYPACT_NINF, YYTABLE_NINF): these.
14350 (yypact, yytable): Compute their types instead of hard-coded
14352 * tests/regression.at (Web2c Actions): Adjust.
14354 2002-07-19 Akim Demaille <akim@epita.fr>
14356 * src/scan-gram.l (id): Can start with an underscore.
14358 2002-07-16 Akim Demaille <akim@epita.fr>
14360 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14361 Adjust all former `associativity' dependencies.
14362 * src/symtab.c (symbol_new): Default associativity is `undef', not
14364 (symbol_check_alias_consistence): Adjust.
14366 2002-07-09 Akim Demaille <akim@epita.fr>
14368 * doc/bison.texinfo: Properly set the ``header'' part.
14369 Use @dircategory ``GNU programming tools'' as per Texinfo's
14373 2002-07-09 Akim Demaille <akim@epita.fr>
14375 * lib/quotearg.h: Protect against multiple inclusions.
14376 * src/location.h (location_t): Add a `file' member.
14377 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14378 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14379 `error_one_per_line' support.
14381 2002-07-09 Akim Demaille <akim@epita.fr>
14383 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14384 * src/reader.c (lineno): Remove.
14385 Adjust all dependencies.
14386 (get_merge_function): Take a location and use complain_at.
14387 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14388 * tests/regression.at (Invalid inputs, Mixing %token styles):
14391 2002-07-09 Akim Demaille <akim@epita.fr>
14393 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14394 recovery rule, and forbid extensions when --yacc.
14395 (gram_error): Use complain_at.
14396 * src/reader.c (reader): Exit if there were parse errors.
14398 2002-07-09 Akim Demaille <akim@epita.fr>
14400 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14401 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14402 Reported by R Blake <blakers@mac.com>.
14404 2002-07-09 Akim Demaille <akim@epita.fr>
14406 * data/yacc.c: Output the copyright notive in the header.
14408 2002-07-03 Akim Demaille <akim@epita.fr>
14410 * src/output.c (froms, tos): Are state_number_t.
14411 (save_column): sp, sp1, and sp2 are state_number_t.
14412 (prepare): Rename `final' as `final_state_number', `nnts' as
14413 `nterms_number', `nrules' as `rules_number', `nstates' as
14414 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14416 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14417 * data/lalr1.cc (nsym_): Remove, unused.
14419 2002-07-03 Akim Demaille <akim@epita.fr>
14421 * src/lalr.h, src/lalr.c (goto_number_t): New.
14422 * src/lalr.c (goto_list_t): New.
14424 * src/nullable.c (rule_list_t): New.
14426 * src/types.h: Remove.
14428 2002-07-03 Akim Demaille <akim@epita.fr>
14430 * src/closure.c (print_fderives): Use rule_rhs_print.
14431 * src/derives.c (print_derives): Use rule_rhs_print.
14432 (rule_list_t): New, replaces `shorts'.
14433 (set_derives): Add comments.
14434 * tests/sets.at (Nullable, Firsts): Adjust.
14436 2002-07-03 Akim Demaille <akim@epita.fr>
14438 * src/output.c (prepare_actions): Free `tally' and `width'.
14439 (prepare_actions): Allocate and free `order'.
14440 * src/symtab.c (symbols_free): Free `symbols'.
14441 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14442 * src/output.c (m4_invoke): Move to...
14443 * src/scan-skel.l: here.
14444 (<<EOF>>): Close yyout, and free its name.
14446 2002-07-03 Akim Demaille <akim@epita.fr>
14448 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14450 * src/LR0.c (new_state): Merge into...
14451 (state_list_append): this.
14452 (new_states): Merge into...
14453 (generate_states): here.
14454 (set_states): Don't ensure a proper `errs' state member here, do it...
14455 * src/conflicts.c (conflicts_solve): here.
14456 * src/state.h, src/state.c: Comment changes.
14457 (state_t): Rename member `shifts' as `transitions'.
14458 Adjust all dependencies.
14459 (errs_new): For consistency, also take the values as argument.
14460 (errs_dup): Remove.
14461 (state_errs_set): New.
14462 (state_reductions_set, state_transitions_set): Assert that no
14463 previous value was assigned.
14465 (states_free): Use it.
14466 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14467 temporary storage: use `errs' and `nerrs' as elsewhere.
14468 (set_conflicts): Allocate and free this `errs'.
14470 2002-07-02 Akim Demaille <akim@epita.fr>
14472 * lib/libiberty.h: New.
14473 * lib: Update the bitset implementation from upstream.
14474 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14475 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14476 * src/main.c: Adjust bitset stats calls.
14478 2002-07-01 Paul Eggert <eggert@twinsun.com>
14480 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14481 char, so that negative chars don't collide with $.
14483 2002-06-30 Akim Demaille <akim@epita.fr>
14485 Have the GLR tests be `warning' checked, and fix the warnings.
14487 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14488 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14489 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14490 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14491 (yyaddDeferredAction): static.
14492 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14493 (yyreportParseError): yyprefix is const.
14494 yytokenp is used only when verbose.
14495 (yy__GNUC__): Replace with __GNUC__.
14496 (yypdumpstack): yyi is size_t.
14497 (yypreference): Un-yy local variables and arguments, to avoid
14498 clashes with `yyr1'. Anyway, we are not in the user name space.
14499 (yytname_size): be an int, as is compared with ints.
14500 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14502 * tests/cxx-gram.at: Use quotation to protect $1.
14503 Use AT_COMPILE to enable warnings hunts.
14504 Prototype yylex and yyerror.
14506 Include `string.h', not `strings.h'.
14507 Produce and prototype stmtMerge only when used.
14508 yylex takes a location.
14510 2002-06-30 Akim Demaille <akim@epita.fr>
14512 We spend a lot of time in quotearg, in particular when --verbose.
14514 * src/symtab.c (symbol_get): Store a quoted version of the key.
14515 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14516 Adjust all callers.
14518 2002-06-30 Akim Demaille <akim@epita.fr>
14520 * src/state.h (reductions_t): Rename member `nreds' as num.
14521 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14522 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14524 2002-06-30 Akim Demaille <akim@epita.fr>
14526 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14527 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14528 (shifts_to): Rename as...
14529 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14530 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14531 (TRANSITION_IS_DISABLED, transitions_to): these.
14533 2002-06-30 Akim Demaille <akim@epita.fr>
14535 * src/print.c (print_shifts, print_gotos): Merge into...
14536 (print_transitions): this.
14537 (print_transitions, print_errs, print_reductions): Align the
14538 lookaheads columns.
14539 (print_core, print_transitions, print_errs, print_state,
14540 print_grammar): Output empty lines separator before, not after.
14541 (state_default_rule_compute): Rename as...
14542 (state_default_rule): this.
14543 * tests/conflicts.at (Defaulted Conflicted Reduction),
14544 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14545 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14547 2002-06-30 Akim Demaille <akim@epita.fr>
14549 Display items as we display rules.
14551 * src/gram.h, src/gram.c (rule_lhs_print): New.
14552 * src/gram.c (grammar_rules_partial_print): Use it.
14553 * src/print.c (print_core): Likewise.
14554 * tests/conflicts.at (Defaulted Conflicted Reduction),
14555 (Unresolved SR Conflicts): Adjust.
14556 (Unresolved SR Conflicts): Adjust and rename as...
14557 (Resolved SR Conflicts): this, as was meant.
14558 * tests/regression.at (Web2c Report): Adjust.
14560 2002-06-30 Akim Demaille <akim@epita.fr>
14562 * src/print.c (state_default_rule_compute): New, extracted from...
14563 (print_reductions): here.
14564 Pessimize, but clarify the code.
14565 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14567 2002-06-30 Akim Demaille <akim@epita.fr>
14569 * src/output.c (action_row): Let default_rule be always a rule
14572 2002-06-30 Akim Demaille <akim@epita.fr>
14574 * src/closure.c (print_firsts, print_fderives, closure):
14575 Use BITSET_EXECUTE.
14576 * src/lalr.c (lookaheads_print): Likewise.
14577 * src/state.c (state_rule_lookaheads_print): Likewise.
14578 * src/print_graph.c (print_core): Likewise.
14579 * src/print.c (print_reductions): Likewise.
14580 * src/output.c (action_row): Likewise.
14581 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14583 2002-06-30 Akim Demaille <akim@epita.fr>
14585 * src/print_graph.c: Use report_flag.
14587 2002-06-30 Akim Demaille <akim@epita.fr>
14589 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14591 * src/relation.h, src/relation.c (traverse, relation_digraph)
14592 (relation_print, relation_transpose): New.
14594 2002-06-30 Akim Demaille <akim@epita.fr>
14596 * src/state.h, src/state.c (shifts_to): New.
14597 * src/lalr.c (build_relations): Use it.
14599 2002-06-30 Akim Demaille <akim@epita.fr>
14601 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14602 (item_number_of_rule_number, rule_number_of_item_number): New.
14603 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14604 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14605 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14606 Propagate their use.
14607 Much remains to be done, in particular wrt `shorts' from types.h.
14609 2002-06-30 Akim Demaille <akim@epita.fr>
14611 * src/symtab.c (symbol_new): Initialize the `printer' member.
14613 2002-06-30 Akim Demaille <akim@epita.fr>
14615 * src/LR0.c (save_reductions): Remove, replaced by...
14616 * src/state.h, src/state.c (state_reductions_set): New.
14617 (reductions, errs): Rename as...
14618 (reductions_t, errs_t): these.
14619 Adjust all dependencies.
14621 2002-06-30 Akim Demaille <akim@epita.fr>
14623 * src/LR0.c (state_list_t, state_list_append): New.
14624 (first_state, last_state): Now symbol_list_t.
14625 (this_state): Remove.
14626 (new_itemsets, append_states, save_reductions): Take a state_t as
14628 (set_states, generate_states): Adjust.
14629 (save_shifts): Remove, replaced by...
14630 * src/state.h, src/state.c (state_shifts_set): New.
14631 (shifts): Rename as...
14633 Adjust all dependencies.
14634 * src/state.h (state_t): Remove the `next' member.
14636 2002-06-30 Akim Demaille <akim@epita.fr>
14638 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14641 2002-06-30 Akim Demaille <akim@epita.fr>
14643 Use hash.h for the state hash table.
14645 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14646 (allocate_storage): Use state_hash_new.
14647 (free_storage): Use state_hash_free.
14648 (new_state, get_state): Adjust.
14649 * src/lalr.h, src/lalr.c (states): Move to...
14650 * src/states.h (state_t): Remove the `link' member, no longer
14652 * src/states.h, src/states.c: here.
14653 (state_hash_new, state_hash_free, state_hash_lookup)
14654 (state_hash_insert, states_free): New.
14655 * src/states.c (state_table, state_compare, state_hash): New.
14656 * src/output.c (output_actions): Do not free states now, since we
14657 still need to know the final_state number in `prepare', called
14658 afterwards. Do it...
14659 * src/main.c (main): here: call states_free after `output'.
14661 2002-06-30 Akim Demaille <akim@epita.fr>
14663 * src/state.h, src/state.c (state_new): New, extracted from...
14664 * src/LR0.c (new_state): here.
14665 * src/state.h (STATE_ALLOC): Move to...
14666 * src/state.c: here.
14667 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14668 * src/state.h, src/state.c: here.
14670 2002-06-30 Akim Demaille <akim@epita.fr>
14672 * src/reader.c (gensym): Rename as...
14673 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14674 (getsym): Rename as...
14675 (symbol_get): this.
14677 2002-06-30 Akim Demaille <akim@epita.fr>
14679 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14680 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14681 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14682 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14684 2002-06-30 Akim Demaille <akim@epita.fr>
14686 Make the test suite pass with warnings checked.
14688 * tests/actions.at (Printers and Destructors): Improve.
14689 Avoid unsigned vs. signed issues.
14690 * tests/calc.at: Don't exercise the scanner here, do it...
14691 * tests/input.at (Torturing the Scanner): here.
14693 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14695 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14696 reorganize first lines parallel to yacc.c.
14698 2002-06-28 Akim Demaille <akim@epita.fr>
14700 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14701 (b4_token_enum, b4_token_defines): New, factored from...
14702 * data/lalr1.cc, data/yacc.c, glr.c: here.
14704 2002-06-28 Akim Demaille <akim@epita.fr>
14706 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14708 * src/output.c (merger_output): static.
14710 2002-06-28 Akim Demaille <akim@epita.fr>
14712 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14713 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14715 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14717 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14719 Accumulated changelog for new GLR parsing features.
14721 * src/conflicts.c (count_total_conflicts): Change name to
14722 conflicts_total_count.
14723 * src/conflicts.h: Ditto.
14724 * src/output.c (token_actions): Use the new name.
14725 (output_conflicts): Change conflp => conflict_list_heads, and
14726 confl => conflict_list for better readability.
14727 * data/glr.c: Use the new names.
14728 * NEWS: Add self to GLR announcement.
14730 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14732 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14735 * data/bison.glr: Change name to glr.c
14736 * data/glr.c: Renamed from bison.glr.
14737 * data/Makefile.am: Add glr.c
14741 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14742 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14744 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14746 * data/bison.glr: Be sure to restore the
14747 current #line when returning to the skeleton contents after having
14748 exposed the input file's #line.
14750 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14752 * data/bison.glr: Bring up to date with changes to bison.simple.
14754 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14756 * data/bison.glr: Correct definitions that use b4_prefix.
14757 Various reformatting.
14758 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14759 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14760 yytokenp argument; now part of stack.
14761 (yychar): Define to behave as documented.
14762 (yyclearin): Ditto.
14764 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14766 * src/reader.h: Add declaration for free_merger_functions.
14768 * src/reader.c (merge_functions): New variable.
14769 (get_merge_function): New function.
14770 (free_merger_functions): New function.
14771 (readgram): Check for %prec that is not followed by a symbol.
14772 Handle %dprec and %merge declarations.
14773 (packgram): Initialize dprec and merger fields in rules array.
14775 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14776 conflict_list_cnt, conflict_list_free): New variables.
14777 (table_grow): Also grow conflict_table.
14778 (prepare_rules): Output dprec and merger tables.
14779 (conflict_row): New function.
14780 (action_row): Output conflict lists for GLR parser. Don't use
14781 default reduction in conflicted states for GLR parser so that there
14782 are spaces for the conflict lists.
14783 (save_row): Also save conflict information.
14784 (token_actions): Allocate conflict list.
14785 (merger_output): New function.
14786 (pack_vector): Pack conflict table, too.
14787 (output_conflicts): New function to output yyconflp and yyconfl.
14788 (output_check): Allocate conflict_tos.
14789 (output_actions): Output conflict tables, also.
14790 (output_skeleton): Output b4_mergers definition.
14791 (prepare): Output b4_max_rhs_length definition.
14792 Use 'bison.glr' as default skeleton for GLR parsers.
14794 * src/gram.c (glr_parser): New flag.
14795 (grammar_free): Call free_merger_functions.
14797 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14798 all pairs of conflicting reductions, rather than just all tokens
14799 causing conflicts. Needed to size conflict tables.
14800 (conflicts_output): Modify call to count_rr_conflicts for new
14802 (conflicts_print): Ditto.
14803 (count_total_conflicts): New function.
14805 * src/reader.h (merger_list): New type.
14806 (merge_functions): New variable.
14808 * src/lex.h (tok_dprec, tok_merge): New token types.
14810 * src/gram.h (rule_s): Add dprec and merger fields.
14811 (glr_parser): New flag.
14813 * src/conflicts.h (count_total_conflicts): New function.
14815 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14817 * doc/bison.texinfo (Generalized LR Parsing): New section.
14818 (GLR Parsers): New section.
14819 (Language and Grammar): Mention GLR parsing.
14820 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14821 Correct typo ("tge" -> "the").
14823 * data/bison.glr: New skeleton for GLR parsing.
14825 * tests/cxx-gram.at: New tests for GLR parsing.
14827 * tests/testsuite.at: Include cxx-gram.at.
14829 * tests/Makefile.am: Add cxx-gram.at.
14831 * src/parse-gram.y:
14833 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14835 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14837 2002-06-27 Akim Demaille <akim@epita.fr>
14839 * src/options.h, src/options.c: Remove.
14840 * src/getargs.c (short_options, long_options): New.
14842 2002-06-27 Akim Demaille <akim@epita.fr>
14844 * data/bison.simple, data/bison.c++: Rename as...
14845 * data/yacc.c, data/lalr1.cc: these.
14846 * doc/bison.texinfo (Environment Variables): Remove.
14848 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14850 * src/getargs.c (report_argmatch): Initialize strtok().
14852 2002-06-20 Akim Demaille <akim@epita.fr>
14854 * data/bison.simple (b4_symbol_actions): New, replaces...
14855 (b4_symbol_destructor, b4_symbol_printer): these.
14856 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14857 user token numbers.
14859 2002-06-20 Akim Demaille <akim@epita.fr>
14861 * data/bison.simple (yydestructor): Rename as...
14862 (yydestruct): this.
14864 2002-06-20 Akim Demaille <akim@epita.fr>
14866 * src/symtab.h, src/symtab.c (symbol_type_set)
14867 (symbol_destructor_set, symbol_precedence_set): The location is
14869 Adjust all callers.
14871 2002-06-20 Akim Demaille <akim@epita.fr>
14873 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14875 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14877 * src/symtab.h, src/symtab.c (symbol_class_set)
14878 (symbol_user_token_number_set): Likewise.
14879 Adjust all callers.
14880 Promote complain_at.
14881 * tests/input.at (Type Clashes): Adjust.
14883 2002-06-20 Akim Demaille <akim@epita.fr>
14885 * data/bison.simple (YYLEX): Fix the declaration when
14888 2002-06-20 Akim Demaille <akim@epita.fr>
14890 * data/bison.simple (yysymprint): Don't print the token number,
14892 * tests/actions.at (Destructors): Rename as...
14893 (Printers and Destructors): this.
14894 Also exercise %printer.
14896 2002-06-20 Akim Demaille <akim@epita.fr>
14898 * data/bison.simple (YYDSYMPRINT): New.
14899 Use it to remove many of the #if YYDEBUG/if (yydebug).
14901 2002-06-20 Akim Demaille <akim@epita.fr>
14903 * src/symtab.h, src/symtab.c (symbol_t): printer and
14904 printer_location are new members.
14905 (symbol_printer_set): New.
14906 * src/parse-gram.y (PERCENT_PRINTER): New token.
14907 Handle its associated rule.
14908 * src/scan-gram.l: Adjust.
14909 (handle_destructor_at, handle_destructor_dollar): Rename as...
14910 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14911 * src/output.c (symbol_printers_output): New.
14912 (output_skeleton): Call it.
14913 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14914 since there are already many grammar files with a user `yyprint'.
14915 Replace the calls to YYPRINT to calls to yysymprint.
14916 * tests/calc.at: Adjust.
14917 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14918 taking advantage of parser very internal details (stack size!).
14920 2002-06-20 Akim Demaille <akim@epita.fr>
14922 * src/scan-gram.l: Complete the scanner with the missing patterns
14924 Use `quote' and `symbol_tag_get' where appropriate.
14926 2002-06-19 Akim Demaille <akim@epita.fr>
14928 * tests/actions.at (Destructors): Augment to test locations.
14929 * data/bison.simple (yydestructor): Pass it the current location
14930 if locations are enabled.
14931 Prototype only when __STDC__ or C++.
14932 Change the argument names to move into the yy name space: there is
14935 2002-06-19 Akim Demaille <akim@epita.fr>
14937 * data/bison.simple (b4_pure_if): New.
14938 Use it instead of #ifdef YYPURE.
14940 2002-06-19 Akim Demaille <akim@epita.fr>
14942 * data/bison.simple (b4_location_if): New.
14943 Use it instead of #ifdef YYLSP_NEEDED.
14945 2002-06-19 Akim Demaille <akim@epita.fr>
14947 Prepare @$ in %destructor, but currently don't bind it in the
14948 skeleton, as %location use is not cleaned up yet.
14950 * src/scan-gram.l (handle_dollar, handle_destructor_at)
14951 (handle_action_at): New.
14952 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
14953 a braced_code_t and a location as additional arguments.
14954 (handle_destructor_dollar): Instead of requiring `b4_eval', just
14955 unquote one when outputting `b4_dollar_dollar'.
14957 * data/bison.simple (b4_eval): Remove.
14958 (b4_symbol_destructor): Adjust.
14959 * tests/input.at (Invalid @n): Adjust.
14961 2002-06-19 Zack Weinberg <zack@codesourcery.com>
14963 * doc/bison.texinfo: Document ability to have multiple
14966 2002-06-18 Akim Demaille <akim@epita.fr>
14968 * src/files.c (compute_base_names): When computing the output file
14969 names from the input file name, strip the directory part.
14971 2002-06-18 Akim Demaille <akim@epita.fr>
14973 * data/bison.simple.new: Comment changes.
14974 Reported by Andreas Schwab.
14976 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
14978 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
14979 there are no `label `yyoverflowlab' defined but not used' warnings
14980 when yyoverflow is defined.
14982 2002-06-18 Akim Demaille <akim@epita.fr>
14984 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
14986 (symbol_destructor_set): Adjust.
14987 * src/output.c (symbol_destructors_output): Output the destructor
14989 Output the symbol name.
14990 * data/bison.simple (b4_symbol_destructor): Adjust.
14992 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
14993 and Akim Demaille <akim@epita.fr>
14995 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
14996 what's left on the stack when the error recovery hits EOF.
14997 * tests/actions.at (Destructors): Complete to exercise this case.
14999 2002-06-17 Akim Demaille <akim@epita.fr>
15001 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15002 arguments is really empty, not only equal to `[]'.
15003 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15005 (symbol_destructor_set): New.
15006 * src/output.c (symbol_destructors_output): New.
15007 * src/reader.h (brace_code_t, current_braced_code): New.
15008 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15009 (handle_dollar): Rename as...
15010 (handle_action_dollar): this.
15011 (handle_destructor_dollar): New.
15012 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15013 (grammar_declaration): Use it.
15014 * data/bison.simple (yystos): Is always defined.
15015 (yydestructor): New.
15016 * tests/actions.at (Destructors): New.
15017 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15019 2002-06-17 Akim Demaille <akim@epita.fr>
15021 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15022 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15023 rule_length only when needed.
15024 * src/output.c (actions_output, token_definitions_output): Output
15026 * src/symtab.c: Don't access directly to the symbol tag, use
15028 * src/parse-gram.y: Use symbol_list_free.
15030 2002-06-17 Akim Demaille <akim@epita.fr>
15032 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15033 (symbol_list_prepend, get_type_name): Move to...
15034 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15035 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15036 Adjust all callers.
15037 (symbol_list_free): New.
15038 * src/scan-gram.l (handle_dollar): Takes a location.
15039 * tests/input.at (Invalid $n): Adjust.
15041 2002-06-17 Akim Demaille <akim@epita.fr>
15043 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15044 (symbol_list_prepend): New.
15045 * src/parse-gram.y (%union): `list' is a new member.
15046 (symbols.1): New, replaces...
15047 (terms_to_prec.1, nterms_to_type.1): these.
15048 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15049 Take a location as additional argument.
15050 Adjust all callers.
15052 2002-06-15 Akim Demaille <akim@epita.fr>
15054 * src/parse-gram.y: Move %token in the declaration section so that
15055 we don't depend upon CVS Bison.
15057 2002-06-15 Akim Demaille <akim@epita.fr>
15059 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15060 * src/print.c (print_core): Use it.
15062 2002-06-15 Akim Demaille <akim@epita.fr>
15064 * src/conflicts.c (log_resolution): Accept the rule involved in
15065 the sr conflicts instead of the lookahead number that points to
15067 (flush_reduce): Accept the current lookahead vector as argument,
15068 instead of the index in LA.
15069 (resolve_sr_conflict): Accept the current number of lookahead
15070 bitset to consider for the STATE, instead of the index in LA.
15071 (set_conflicts): Adjust.
15072 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15074 2002-06-15 Akim Demaille <akim@epita.fr>
15076 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15077 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15078 Adjust all dependencies.
15079 * src/lalr.c (initialize_lookaheads): Split into...
15080 (states_lookaheads_count, states_lookaheads_initialize): these.
15083 2002-06-15 Akim Demaille <akim@epita.fr>
15085 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15087 (grammar_rules_print): here.
15088 * src/reduce.c (reduce_output): Use it.
15089 * tests/reduce.at (Useless Rules, Reduced Automaton)
15090 (Underivable Rules): Adjust.
15092 2002-06-15 Akim Demaille <akim@epita.fr>
15094 Copy BYacc's nice way to report the grammar.
15096 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15098 Don't print the rules' location, it is confusing and useless.
15099 (rule_print): Use grammar_rhs_print.
15100 * src/print.c (print_grammar): Use grammar_rules_print.
15102 2002-06-15 Akim Demaille <akim@epita.fr>
15104 Complete and rationalize `useless thing' warnings.
15106 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15107 (symbol_tag_print): New.
15108 Use them everywhere in place of accessing directly the tag member.
15109 * src/gram.h, src/gram.c (rule_print): New.
15110 Use it where a rule used to be printed `by hand'.
15111 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15112 (reduce_grammar_tables): Report the useless rules.
15113 (reduce_print): Useless things are a warning, not an error.
15115 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15116 (Reduced Automaton, Underivable Rules): Adjust.
15117 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15118 * tests/conflicts.at (Unresolved SR Conflicts)
15119 (Solved SR Conflicts): Adjust.
15121 2002-06-15 Akim Demaille <akim@epita.fr>
15123 Let symbols have a location.
15125 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15127 Adjust all callers.
15128 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15129 Use location_t, not int.
15130 * src/symtab.c (symbol_check_defined): Take advantage of the
15132 * tests/regression.at (Invalid inputs): Adjust.
15134 2002-06-15 Akim Demaille <akim@epita.fr>
15136 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15137 (input): Don't try to initialize yylloc here, do it in the
15139 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15140 * src/gram.h (rule_t): Change line and action_line into location
15141 and action_location, of location_t type.
15142 Adjust all dependencies.
15143 * src/location.h, src/location.c (empty_location): New.
15144 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15145 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15146 (grammar_current_rule_symbol_append)
15147 (grammar_current_rule_action_append): Expect a location as argument.
15148 * src/reader.c (grammar_midrule_action): Adjust to attach an
15149 action's location as dummy symbol location.
15150 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15151 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15154 2002-06-14 Akim Demaille <akim@epita.fr>
15156 Grammar declarations may be found in the grammar section.
15158 * src/parse-gram.y (rules_or_grammar_declaration): New.
15159 (declarations): Each declaration may end with a semicolon, not
15161 (grammar_declaration): `"%union"'.
15162 (grammar): Branch to rules_or_grammar_declaration.
15164 2002-06-14 Akim Demaille <akim@epita.fr>
15166 * src/main.c (main): Invoke scanner_free.
15168 2002-06-14 Akim Demaille <akim@epita.fr>
15170 * src/output.c (m4_invoke): Extracted from...
15171 (output_skeleton): here.
15174 2002-06-14 Akim Demaille <akim@epita.fr>
15176 * src/parse-gram.y (directives, directive, gram)
15177 (grammar_directives, precedence_directives, precedence_directive):
15179 (declarations, declaration, grammar, grammar_declaration)
15180 (precedence_declaration, precedence_declarator): these.
15181 (symbol_declaration): New.
15183 2002-06-14 Akim Demaille <akim@epita.fr>
15185 * src/files.c (action_obstack): Remove, unused.
15186 (output_obstack): Remove it, and all its dependencies, as it is no
15188 * src/reader.c (epilogue_set): Build the epilogue in the
15190 * src/output.h, src/output.c (muscle_obstack): Move to...
15191 * src/muscle_tab.h, src/muscle_tab.h: here.
15192 (muscle_init): Initialize muscle_obstack.
15193 (muscle_free): New.
15194 * src/main.c (main): Call it.
15196 2002-06-14 Akim Demaille <akim@epita.fr>
15198 * src/location.h: New, extracted from...
15199 * src/reader.h: here.
15200 * src/Makefile.am (noinst_HEADERS): Merge into
15201 (bison_SOURCES): this.
15203 * src/parse-gram.y: Use location_t instead of Bison's.
15204 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15205 Use location_t instead of ints.
15207 2002-06-14 Akim Demaille <akim@epita.fr>
15209 * data/bison.simple, data/bison.c++: Be sure to restore the
15210 current #line when returning to the skeleton contents after having
15211 exposed the input file's #line.
15213 2002-06-12 Akim Demaille <akim@epita.fr>
15215 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15217 * tests/actions.at (Exotic Dollars): New.
15219 2002-06-12 Akim Demaille <akim@epita.fr>
15221 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15223 * tests/input.at (Torturing the Scanner): New.
15225 2002-06-11 Akim Demaille <akim@epita.fr>
15227 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15228 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15229 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15230 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15231 * src/reader.c (reader): Use it.
15233 2002-06-11 Akim Demaille <akim@epita.fr>
15235 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15236 Adjust all callers.
15237 (scanner_last_string_free): New.
15239 2002-06-11 Akim Demaille <akim@epita.fr>
15241 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15242 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15243 (last_string, YY_OBS_FREE): New.
15244 Use them when returning an ID.
15246 2002-06-11 Akim Demaille <akim@epita.fr>
15248 Have Bison grammars parsed by a Bison grammar.
15250 * src/reader.c, src/reader.h (prologue_augment): New.
15251 * src/reader.c (copy_definition): Remove.
15253 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15254 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15255 (grammar_current_rule_prec_set, grammar_current_rule_check)
15256 (grammar_current_rule_symbol_append)
15257 (grammar_current_rule_action_append): Export.
15258 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15259 (symbol_list_action_append): Remove.
15260 Hook the routines from reader.
15261 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15262 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15264 * src/reader.c (read_declarations): Remove, unused.
15266 * src/parse-gram.y: Handle the epilogue.
15267 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15268 (grammar_start_symbol_set): this.
15269 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15270 * src/reader.c (readgram): Remove, unused.
15271 (reader): Adjust to insert eoftoken and axiom where appropriate.
15273 * src/reader.c (copy_dollar): Replace with...
15274 * src/scan-gram.h (handle_dollar): this.
15275 * src/parse-gram.y: Remove `%thong'.
15277 * src/reader.c (copy_at): Replace with...
15278 * src/scan-gram.h (handle_at): this.
15280 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15283 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15286 * src/reader.h, src/reader.c (grammar_rule_end): New.
15288 * src/parse.y (current_type, current_class): New.
15289 Implement `%nterm', `%token' support.
15290 Merge `%term' into `%token'.
15291 (string_as_id): New.
15292 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15295 * src/parse-gram.y: Be sure to handle properly the beginning of
15298 * src/parse-gram.y: Handle %type.
15299 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15301 * src/parse-gram.y: More directives support.
15302 * src/options.c: No longer handle source directives.
15304 * src/parse-gram.y: Fix %output.
15306 * src/parse-gram.y: Handle %union.
15307 Use the prologue locations.
15308 * src/reader.c (parse_union_decl): Remove.
15310 * src/reader.h, src/reader.c (epilogue_set): New.
15311 * src/parse-gram.y: Use it.
15313 * data/bison.simple, data/bison.c++: b4_stype is now either not
15314 defined, then default to int, or to the contents of %union,
15315 without `union' itself.
15317 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15319 * src/output.c (actions_output): Don't output braces, as they are
15320 already handled by the scanner.
15322 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15323 characters to themselves.
15325 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15326 that the epilogue has a proper #line.
15328 * src/parse-gram.y: Handle precedence/associativity.
15330 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15332 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15333 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15334 at all to define terminals that cannot be emitted.
15336 * src/scan-gram.l: Escape M4 characters.
15338 * src/scan-gram.l: Working properly with escapes in user
15339 strings/characters.
15341 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15342 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15344 Use more modest sizes, as for the time being the parser does not
15345 release memory, and therefore the process swallows a huge amount
15348 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15349 stricter %token grammar.
15351 * src/symtab.h (associativity): Add `undef_assoc'.
15352 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15353 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15355 * tests/regression.at (Invalid %directive): Remove, as it is now
15357 (Invalid inputs): Adjust to the new error messages.
15358 (Token definitions): The new grammar doesn't allow too many
15361 * src/lex.h, src/lex.c: Remove.
15362 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15363 (copy_character, copy_string2, copy_string, copy_identifier)
15364 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15365 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15366 (parse_action): Remove.
15367 * po/POTFILES.in: Adjust.
15369 2002-06-11 Akim Demaille <akim@epita.fr>
15371 * src/reader.c (parse_action): Don't store directly into the
15372 rule's action member: return the action as a string.
15373 Don't require `rule_length' as an argument: compute it.
15374 (grammar_current_rule_symbol_append)
15375 (grammar_current_rule_action_append): New, eved out from
15377 Remove `action_flag', `rulelength', unused now.
15379 2002-06-11 Akim Demaille <akim@epita.fr>
15381 * src/reader.c (grammar_current_rule_prec_set).
15382 (grammar_current_rule_check): New, eved out from...
15384 Remove `xaction', `first_rhs': useless.
15385 * tests/input.at (Type clashes): New.
15386 * tests/existing.at (GNU Cim Grammar): Adjust.
15388 2002-06-11 Akim Demaille <akim@epita.fr>
15390 * src/reader.c (grammar_midrule_action): New, Eved out from
15393 2002-06-11 Akim Demaille <akim@epita.fr>
15395 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15397 (readgram): Use them as replacement of inlined code, crule and
15400 2002-06-11 Akim Demaille <akim@epita.fr>
15402 * src/reader.c (grammar_end, grammar_symbol_append): New.
15403 (readgram): Use them.
15404 Make the use of `p' as local as possible.
15406 2002-06-10 Akim Demaille <akim@epita.fr>
15408 GCJ's parser requires the tokens to be defined before the prologue.
15410 * data/bison.simple: Output the token definition before the user's
15412 * tests/regression.at (Braces parsing, Duplicate string)
15413 (Mixing %token styles): Check the output from bison.
15414 (Early token definitions): New.
15416 2002-06-10 Akim Demaille <akim@epita.fr>
15418 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15419 assigning twice the same user number to a token, so that we can
15421 * src/lex.c (lex): here.
15422 Also use `symbol_class_set' instead of hand written code.
15423 * src/reader.c (parse_assoc_decl): Likewise.
15425 2002-06-10 Akim Demaille <akim@epita.fr>
15427 * src/symtab.c, src/symtab.c (symbol_class_set)
15428 (symbol_user_token_number_set): New.
15429 * src/reader.c (parse_token_decl): Use them.
15430 Use a switch instead of ifs.
15431 Use a single argument.
15433 2002-06-10 Akim Demaille <akim@epita.fr>
15435 Remove `%thong' support as it is undocumented, unused, duplicates
15436 `%token's job, and creates useless e-mail traffic with people who
15437 want to know what it is, why it is undocumented, unused, and
15438 duplicates `%token's job.
15440 * src/reader.c (parse_thong_decl): Remove.
15441 * src/options.c (option_table): Remove "thong".
15442 * src/lex.h (tok_thong): Remove.
15444 2002-06-10 Akim Demaille <akim@epita.fr>
15446 * src/symtab.c, src/symtab.c (symbol_type_set)
15447 (symbol_precedence_set): New.
15448 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15449 (value_components_used): Remove, unused.
15451 2002-06-09 Akim Demaille <akim@epita.fr>
15453 Move symbols handling code out of the reader.
15455 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15456 (axiom): Move to...
15457 * src/symtab.h, src/symtab.c: here.
15459 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15460 * src/reader.c (startval): Rename as...
15461 * src/symtab.h, src/symtab.c (startsymbol): this.
15462 * src/reader.c: Adjust.
15464 * src/reader.c (symbol_check_defined, symbol_make_alias)
15465 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15466 (token_translations_init)
15468 * src/symtab.c: here.
15469 * src/reader.c (packsymbols): Move to...
15470 * src/symtab.h, src/symtab.c (symbols_pack): here.
15471 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15474 2002-06-03 Akim Demaille <akim@epita.fr>
15476 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15479 2002-06-03 Akim Demaille <akim@epita.fr>
15481 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15482 structs with non literals.
15483 * src/scan-skel.l: never-interactive.
15484 * src/conflicts.c (enum conflict_resolution_e): No trailing
15486 * src/getargs.c (usage): Split long literal strings.
15487 Reported by Hans Aberg.
15489 2002-05-28 Akim Demaille <akim@epita.fr>
15491 * data/bison.c++: Use C++ ostreams.
15492 (cdebug_): New member.
15494 2002-05-28 Akim Demaille <akim@epita.fr>
15496 * src/output.c (output_skeleton): Be sure to allocate enough room
15497 for `/' _and_ for `\0' in full_skeleton.
15499 2002-05-28 Akim Demaille <akim@epita.fr>
15501 * data/bison.c++: Catch up with bison.simple:
15502 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15503 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15504 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15505 and popping traces.
15507 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15509 * src/output.c (output_skeleton): Put an explicit path in front of
15510 the skeleton file name, rather than relying on the -I directory,
15511 to partially alleviate effects of having a skeleton file lying around
15512 in the current directory.
15514 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15516 * src/conflicts.c (log_resolution): Correct typo:
15517 obstack_printf should be obstack_fgrow1.
15519 2002-05-26 Akim Demaille <akim@epita.fr>
15521 * src/state.h (state_t): `solved_conflicts' is a new member.
15522 * src/LR0.c (new_state): Set it to 0.
15523 * src/conflicts.h, src/conflicts.c (print_conflicts)
15524 (free_conflicts, solve_conflicts): Rename as...
15525 (conflicts_print, conflicts_free, conflicts_solve): these.
15527 * src/conflicts.c (enum conflict_resolution_e)
15528 (solved_conflicts_obstack): New, used by...
15529 (log_resolution): this.
15530 Adjust to attach the conflict resolution to each state.
15531 Complete the description with the precedence/associativity
15533 (resolve_sr_conflict): Adjust.
15534 * src/print.c (print_state): Output its solved_conflicts.
15535 * tests/conflicts.at (Unresolved SR Conflicts)
15536 (Solved SR Conflicts): Exercise --report=all.
15538 2002-05-26 Akim Demaille <akim@epita.fr>
15540 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15541 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15542 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15543 (token_number_t, item_number_as_token_number)
15544 (token_number_as_item_number, muscle_insert_token_number_table):
15546 (symbol_number_t, item_number_as_symbol_number)
15547 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15548 these, since it is more appropriate.
15550 2002-05-26 Akim Demaille <akim@epita.fr>
15552 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15554 * data/bison.simple (yystos) [YYDEBUG]: New.
15555 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15557 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15559 2002-05-25 Akim Demaille <akim@epita.fr>
15561 * doc/bison.texinfo (Debugging): Split into...
15562 (Tracing): this new section, its former contents, and...
15563 (Understanding): this new section.
15564 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15566 (report_flag): this.
15567 Adjust all dependencies.
15568 (report_args, report_types, report_argmatch): New.
15569 (usage, getargs): Report/support -r, --report.
15571 (struct option_table_struct): Rename as..,
15572 (struct option_table_s): this.
15573 Rename the `set_flag' member to `flag' to match with getopt_long's
15575 * src/options.c (option_table): Split verbose into an entry for
15576 %verbose, and another for --verbose.
15577 Support --report/-r, so remove -r from the obsolete --raw.
15578 * src/print.c: Attach full item sets and lookaheads reports to
15579 report_flag instead of trace_flag.
15580 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15582 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15583 and Paul Eggert <eggert@twinsun.com>
15585 * data/bison.simple (yyparse): Correct error handling to conform to
15586 POSIX and yacc. Specifically, after syntax error is discovered,
15587 do not reduce further before shifting the error token.
15588 Clean up the code a bit by removing the labels yyerrdefault,
15589 yyerrhandle, yyerrpop.
15590 * NEWS: Document the above.
15592 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15594 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15595 type; it isn't always big enough, since it doesn't necessarily
15596 include non-terminals.
15597 (yytranslate): Expand definition of yy_token_number_type, so that
15598 the latter can be removed.
15599 (yy_token_number_type): Remove, only one use.
15600 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15601 don't use TokenNumberType as element type.
15603 * tests/regression.at: Modify expected output to agree with change
15604 to yyr1 and yytranslate.
15606 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15608 * src/reader.c (parse_action): Use copy_character instead of
15611 2002-05-13 Akim Demaille <akim@epita.fr>
15613 * tests/regression.at (Token definitions): Prototype yylex and
15616 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15618 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15619 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15621 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15623 2002-05-07 Akim Demaille <akim@epita.fr>
15625 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15626 avoid GCC warnings.
15628 2002-05-07 Akim Demaille <akim@epita.fr>
15632 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15633 over the RHS of each rule.
15634 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15635 * src/state.h (state_t): Member `nitems' is unsigned short.
15636 * src/LR0.c (get_state): Adjust.
15637 * src/reader.c (packgram): Likewise.
15638 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15640 (muscle_insert_int_table): Remove, unused.
15641 (prepare_rules): Remove `max'.
15643 2002-05-06 Akim Demaille <akim@epita.fr>
15645 * src/closure.c (print_firsts): Display of the symbol tags.
15646 (bitmatrix_print): Move to...
15647 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15649 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15651 2002-05-06 Akim Demaille <akim@epita.fr>
15653 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15656 2002-05-06 Akim Demaille <akim@epita.fr>
15658 * src/LR0.c (new_state, get_state): Instead of using the global
15659 `kernel_size' and `kernel_base', have two new arguments:
15660 `core_size' and `core'.
15663 2002-05-06 Akim Demaille <akim@epita.fr>
15665 * src/reader.c (packgram): No longer end `ritem' with a 0
15666 sentinel: it is not used.
15668 2002-05-05 Akim Demaille <akim@epita.fr>
15670 New experimental feature: display the lookaheads in the report and
15673 * src/print (print_core): When --trace-flag, display the rules
15675 * src/print_graph.c (print_core): Likewise.
15676 Swap the arguments.
15679 2002-05-05 Akim Demaille <akim@epita.fr>
15681 * tests/torture.at (Many lookaheads): New test.
15683 2002-05-05 Akim Demaille <akim@epita.fr>
15685 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15686 (GENERATE_MUSCLE_INSERT_TABLE): this.
15687 (output_int_table, output_unsigned_int_table, output_short_table)
15688 (output_token_number_table, output_item_number_table): Replace with...
15689 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15690 (muscle_insert_short_table, muscle_insert_token_number_table)
15691 (muscle_insert_item_number_table): these.
15692 Adjust all callers.
15693 (prepare_tokens): Don't free `translations', since...
15694 * src/reader.h, src/reader.c (grammar_free): do it.
15696 * src/gram.h, src/gram.c (grammar_free): here.
15697 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15700 2002-05-05 Akim Demaille <akim@epita.fr>
15702 * src/output.c (output_unsigned_int_table): New.
15703 (prepare_rules): `i' is unsigned.
15704 `prhs', `rline', `r2' are unsigned int.
15705 Rename muscle `rhs_number_max' as `rhs_max'.
15706 Output muscles `prhs_max', `rline_max', and `r2_max'.
15708 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15709 to compute types instead of constant types.
15710 * tests/regression.at (Web2c Actions): Adjust.
15712 2002-05-04 Akim Demaille <akim@epita.fr>
15714 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15715 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15716 Adjust dependencies.
15717 * src/output.c (token_definitions_output): Be sure not to output a
15718 `#define 'a'' when fed with `%token 'a' "a"'.
15719 * tests/regression.at (Token definitions): New.
15721 2002-05-03 Paul Eggert <eggert@twinsun.com>
15723 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15726 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15728 * Makefile.am (SUBDIRS): Remove intl.
15729 (EXTRA_DIST): Add config/config.rpath.
15731 2002-05-03 Akim Demaille <akim@epita.fr>
15733 * data/bison.simple (m4_if): Don't output empty enums.
15734 And actually, output valid enum definitions :(.
15736 2002-05-03 Akim Demaille <akim@epita.fr>
15738 * configure.bat: Remove, completely obsolete.
15739 * Makefile.am (EXTRA_DIST): Adjust.
15740 Don't distribute config.rpath...
15741 * config/Makefile.am (EXTRA_DIST): Do it.
15743 2002-05-03 Akim Demaille <akim@epita.fr>
15745 * configure.in (GETTEXT_VERSION): New.
15746 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15748 2002-05-03 Akim Demaille <akim@epita.fr>
15750 * data/bison.simple (b4_token_enum): New.
15751 (b4_token_defines): Use it to output tokens both as #define and
15753 Suggested by Paul Eggert.
15754 * src/output.c (token_definitions_output): Don't output spurious
15757 2002-05-03 Akim Demaille <akim@epita.fr>
15759 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15761 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15763 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15764 Update the stack class, give a try to deque as the default container.
15766 2002-05-02 Akim Demaille <akim@epita.fr>
15768 * data/bison.simple (yyparse): Do not implement @$ = @1.
15769 (YYLLOC_DEFAULT): Adjust to do it.
15770 * doc/bison.texinfo (Location Default Action): Fix.
15772 2002-05-02 Akim Demaille <akim@epita.fr>
15774 * src/reader.c (parse_braces): Merge into...
15775 (parse_action): this.
15777 2002-05-02 Akim Demaille <akim@epita.fr>
15779 * configure.in (ALL_LINGUAS): Remove.
15780 * po/LINGUAS, hr.po: New.
15782 2002-05-02 Akim Demaille <akim@epita.fr>
15784 Remove the so called hairy (semantic) parsers.
15786 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15787 * src/gram.h, src/gram.c (semantic_parser): Remove.
15788 (rule_t): Remove the guard and guard_line members.
15789 * src/lex.h (token_t): remove tok_guard.
15790 * src/options.c (option_table): Remove %guard and %semantic_parser
15792 * src/output.c, src/output.h (guards_output): Remove.
15794 (token_definitions_output): Don't output the `T'
15796 (output_skeleton): Don't output the guards.
15797 * src/files.c, src/files.c (attrsfile): Remove.
15798 * src/reader.c (symbol_list): Remove the guard and guard_line
15800 Adjust dependencies.
15801 (parse_guard): Remove.
15802 * data/bison.hairy: Remove.
15803 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15806 2002-05-02 Akim Demaille <akim@epita.fr>
15808 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15809 (parse_guard): Rename the formal argument `stack_offset' as
15810 `rule_length', which is more readable.
15812 (copy_at, copy_dollar): Instead of outputting the hard coded
15813 values of $$, $n and so forth, output invocation to b4_lhs_value,
15814 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15815 Note: this patch partially drops `semantic-parser' support: it
15816 always does `rule_length - n', where semantic parsers ought to
15818 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15819 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15821 2002-05-02 Akim Demaille <akim@epita.fr>
15823 * configure.in (AC_INIT): Bump to 1.49b.
15824 (AM_INIT_AUTOMAKE): Short invocation.
15826 2002-05-02 Akim Demaille <akim@epita.fr>
15830 2002-05-01 Akim Demaille <akim@epita.fr>
15832 * src/skeleton.h: Remove.
15834 2002-05-01 Akim Demaille <akim@epita.fr>
15836 * src/skeleton.h: Fix the #endif.
15837 Reported by Magnus Fromreide.
15839 2002-04-26 Paul Eggert <eggert@twinsun.com>
15841 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15842 Define if we define YYSTYPE and YYLTYPE, respectively.
15843 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15845 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15847 * src/scan-skel.l: Postprocess quadrigraphs.
15849 * src/reader.c (copy_character): New function, used to output
15850 single characters while replacing `[' and `]' with quadrigraphs, to
15851 avoid troubles with M4 quotes.
15852 (copy_comment): Output characters with copy_character.
15853 (read_additionnal_code): Likewise.
15854 (copy_string2): Likewise.
15855 (copy_definition): Likewise.
15857 * tests/calc.at: Exercise M4 quoting.
15859 2002-04-25 Akim Demaille <akim@epita.fr>
15861 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15862 between `!' and the command.
15863 Reported by Paul Eggert.
15865 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15867 * tests/calc.at: Exercise prologue splitting.
15869 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15870 `b4_post_prologue' instead of `b4_prologue'.
15872 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15874 (output): Free pre_prologue_obstack and post_prologue_obstack.
15875 * src/files.h, src/files.c (attrs_obstack): Remove.
15876 (pre_prologue_obstack, post_prologue_obstack): New.
15877 * src/reader.c (copy_definition): Add a parameter to specify the
15878 obstack to fill, instead of using attrs_obstack unconditionally.
15879 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15880 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15882 2002-04-23 Paul Eggert <eggert@twinsun.com>
15884 * data/bison.simple: Remove unnecessary commentary and white
15885 space differences from 1_29-branch.
15886 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15888 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15889 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15890 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15891 constructors or destructors.
15893 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15895 2002-04-23 Akim Demaille <akim@epita.fr>
15897 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15898 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15899 location with columns.
15900 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15901 All reported by Paul Eggert.
15903 2002-04-22 Akim Demaille <akim@epita.fr>
15905 * src/reduce.c (dump_grammar): Move to...
15906 * src/gram.h, src/gram.c (grammar_dump): here.
15907 Be sure to separate long item numbers.
15908 Don't read the members of a rule's prec if its nil.
15910 2002-04-22 Akim Demaille <akim@epita.fr>
15912 * src/output.c (table_size, table_grow): New.
15913 (MAXTABLE): Remove, replace uses with table_size.
15914 (pack_vector): Instead of dying when the table is too big, grow it.
15916 2002-04-22 Akim Demaille <akim@epita.fr>
15918 * data/bison.simple (yyr1): Its type is that of a token number.
15919 * data/bison.c++ (r1_): Likewise.
15920 * tests/regression.at (Web2c Actions): Adjust.
15922 2002-04-22 Akim Demaille <akim@epita.fr>
15924 * src/reader.c (token_translations_init): 256 is now the default
15925 value for the error token, i.e., it will be assigned another
15926 number if the user assigned 256 to one of her tokens.
15927 (reader): Don't force 256 to error.
15928 * doc/bison.texinfo (Symbols): Adjust.
15929 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15930 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15931 etc. instead of 10, 20, 30 (which was used to `jump' over error
15932 (256) and undefined (2)).
15934 2002-04-22 Akim Demaille <akim@epita.fr>
15936 Propagate more token_number_t.
15938 * src/gram.h (token_number_as_item_number)
15939 (item_number_as_token_number): New.
15940 * src/output.c (GENERATE_OUTPUT_TABLE): New.
15941 Use it to create output_item_number_table and
15942 output_token_number_table.
15943 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15944 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
15945 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
15946 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
15948 2002-04-22 Akim Demaille <akim@epita.fr>
15950 * src/output.h, src/output.c (get_lines_number): Remove.
15952 2002-04-19 Akim Demaille <akim@epita.fr>
15954 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
15956 (Debugging): More details about enabling the debugging features.
15957 (Table of Symbols): Describe $$, $n, @$, and @n.
15958 Suggested by Tim Josling.
15960 2002-04-19 Akim Demaille <akim@epita.fr>
15962 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
15964 2002-04-10 Akim Demaille <akim@epita.fr>
15966 * src/system.h: Rely on HAVE_LIMITS_H.
15967 Suggested by Paul Eggert.
15969 2002-04-09 Akim Demaille <akim@epita.fr>
15971 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
15972 full stderr, and strip it according to the bison options, instead
15973 of composing the error message from different bits.
15974 This makes it easier to check for several error messages.
15975 Adjust all the invocations.
15976 Add an invocation exercising the error token.
15977 Add an invocation demonstrating a stupid error message.
15978 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
15980 Error message are for stderr, not stdout.
15982 2002-04-09 Akim Demaille <akim@epita.fr>
15984 * src/gram.h, src/gram.c (error_token_number): Remove, use
15986 * src/reader.c (reader): Don't specify the user token number (2)
15987 for $undefined, as it uselessly prevents using it.
15988 * src/gram.h (token_number_t): Move to...
15989 * src/symtab.h: here.
15990 (state_t.number): Is a token_number_t.
15991 * src/print.c, src/reader.c: Use undeftoken->number instead of
15993 (Even though this 2 is not the same as above: the number of the
15994 undeftoken remains being 2, it is its user token number which
15996 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
15997 `user_token_number_max'.
15998 Output `undef_token_number'.
15999 * data/bison.simple, data/bison.c++: Use them.
16000 Be sure to map invalid yylex return values to
16001 `undef_token_number'. This saves us from gratuitous SEGV.
16003 * tests/conflicts.at (Solved SR Conflicts)
16004 (Unresolved SR Conflicts): Adjust.
16005 * tests/regression.at (Web2c Actions): Adjust.
16007 2002-04-08 Akim Demaille <akim@epita.fr>
16009 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16011 Remove the duplicate `typedefs'.
16012 (RhsNumberType): Fix the declaration and various other typos.
16014 * data/bison.simple: Use __ofile__.
16015 * src/scan-skel.l: Handle __ofile__.
16017 2002-04-08 Akim Demaille <akim@epita.fr>
16019 * src/gram.h (item_number_t): New, the type of item numbers in
16020 RITEM. Note that it must be able to code symbol numbers as
16021 positive number, and the negation of rule numbers as negative
16023 Adjust all dependencies (pretty many).
16024 * src/reduce.c (rule): Remove this `short *' pointer: use
16026 * src/system.h (MINSHORT, MAXSHORT): Remove.
16027 Include `limits.h'.
16028 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16029 (shortcpy): Remove.
16030 (MAXTABLE): Move to...
16031 * src/output.c (MAXTABLE): here.
16032 (prepare_rules): Use output_int_table to output rhs.
16033 * data/bison.simple, data/bison.c++: Adjust.
16034 * tests/torture.at (Big triangle): Move the limit from 254 to
16036 * tests/regression.at (Web2c Actions): Ajust.
16038 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16039 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16040 passes, but produces negative #line number, once fixed, GCC is
16041 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16043 * src/state.h (state_h): Code input lines on ints, not shorts.
16045 2002-04-08 Akim Demaille <akim@epita.fr>
16047 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16048 and then the grammar.
16050 2002-04-08 Akim Demaille <akim@epita.fr>
16052 * src/system.h: No longer using strndup.
16054 2002-04-07 Akim Demaille <akim@epita.fr>
16056 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16057 * src/output.c (output_table_data): Return the longest number.
16058 (prepare_tokens): Output `token_number_max').
16059 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16061 Use them to define yy_token_number_type/TokenNumberType.
16062 Use this type for yytranslate.
16063 * tests/torture.at (Big triangle): Push the limit from 124 to
16065 * tests/regression.at (Web2c Actions): Adjust.
16067 2002-04-07 Akim Demaille <akim@epita.fr>
16069 * tests/torture.at (Big triangle): New.
16070 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16071 * tests/existing.at: here.
16073 2002-04-07 Akim Demaille <akim@epita.fr>
16075 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16077 Adjust dependencies.
16079 2002-04-07 Akim Demaille <akim@epita.fr>
16081 * src/reader.c: Normalize increments to prefix form.
16083 2002-04-07 Akim Demaille <akim@epita.fr>
16085 * src/reader.c, symtab.c: Remove debugging code.
16087 2002-04-07 Akim Demaille <akim@epita.fr>
16089 Rename all the `bucket's as `symbol_t'.
16091 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16092 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16093 * src/symtab.c, src/symtab.h (bucket): Rename as...
16095 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16096 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16097 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16098 (buckets_new, buckets_free, buckets_do): Rename as...
16099 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16100 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16101 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16102 (symbols_new, symbols_free, symbols_do): these.
16104 2002-04-07 Akim Demaille <akim@epita.fr>
16106 Use lib/hash for the symbol table.
16108 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16110 * src/lex.c (lex): Set the `number' member of new terminals.
16111 * src/reader.c (bucket_check_defined, bucket_make_alias)
16112 (bucket_check_alias_consistence, bucket_translation): New.
16113 (reader, grammar_free, readgram, token_translations_init)
16114 (packsymbols): Adjust.
16115 (reader): Number the predefined tokens.
16116 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16117 for predefined tokens.
16118 * src/symtab.h (bucket): Remove all the hash table related
16120 * src/symtab.c (symtab): Replace by...
16121 (bucket_table): this.
16122 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16123 (buckets_new, buckets_do): New.
16125 2002-04-07 Akim Demaille <akim@epita.fr>
16127 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16128 (start_symbol, max_user_token_number, semantic_parser)
16129 (error_token_number): Initialize.
16130 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16133 (errtoken, eoftoken, undeftoken, axiom): Extern.
16135 2002-04-07 Akim Demaille <akim@epita.fr>
16137 * src/gram.h (rule_s): prec and precsym are now pointers
16138 to the bucket giving the priority/associativity.
16139 Member `associativity' removed: useless.
16140 * src/reduce.c, src/conflicts.c: Adjust.
16142 2002-04-07 Akim Demaille <akim@epita.fr>
16144 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16145 Properly escape the symbols' TAG when outputting them.
16147 2002-04-07 Akim Demaille <akim@epita.fr>
16149 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16151 2002-04-07 Akim Demaille <akim@epita.fr>
16153 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16154 (LArule): this, which is an array to rule_t*.
16155 * src/print.c, src/conflicts.c: Adjust.
16157 2002-04-07 Akim Demaille <akim@epita.fr>
16159 * src/gram.h (rule_t): Rename `number' as `user_number'.
16160 `number' is a new member.
16161 Adjust dependencies.
16162 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16164 2002-04-07 Akim Demaille <akim@epita.fr>
16166 As a result of the previous patch, it is no longer needed
16167 to reorder ritem itself.
16169 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16171 2002-04-07 Akim Demaille <akim@epita.fr>
16173 Be sure never to walk through RITEMS, but use only data related to
16174 the rules themselves. RITEMS should be banished.
16176 * src/output.c (output_token_translations): Rename as...
16177 (prepare_tokens): this.
16178 In addition to `translate', prepare the muscles `tname' and
16179 `toknum', which were handled by...
16180 (output_rule_data): this.
16181 Remove, and move the remainder of its outputs into...
16182 (prepare_rules): this new routines, which also merges content from
16183 (output_gram): this.
16184 (prepare_rules): Be sure never to walk through RITEMS.
16185 (output_stos): Rename as...
16186 (prepare_stos): this.
16187 (output): Always invoke prepare_states, after all, just don't use it
16188 in the output if you don't need it.
16190 2002-04-07 Akim Demaille <akim@epita.fr>
16192 * src/LR0.c (new_state): Display `nstates' as the name of the
16193 newly created state.
16194 Adjust to initialize first_state and last_state if needed.
16195 Be sure to distinguish the initial from the final state.
16196 (new_states): Create the itemset of the initial state, and use
16198 * src/closure.c (closure): Now that the initial state has its
16199 items properly set, there is no need for a special case when
16200 creating `ruleset'.
16202 As a result, now the rule 0, reducing to $axiom, is visible in the
16203 outputs. Adjust the test suite.
16205 * tests/conflicts.at (Solved SR Conflicts)
16206 (Unresolved SR Conflicts): Adjust.
16207 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16208 * tests/conflicts.at (S/R in initial): New.
16210 2002-04-07 Akim Demaille <akim@epita.fr>
16212 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16213 the RHS of the rules.
16214 * src/output.c (output_gram): Likewise.
16216 2002-04-07 Akim Demaille <akim@epita.fr>
16218 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16220 Adjust all dependencies.
16221 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16222 `number' of the buckets too.
16223 * src/gram.h: Include `symtab.h'.
16224 (associativity): Move to...
16225 * src/symtab.h: here.
16226 No longer include `gram.h'.
16228 2002-04-07 Akim Demaille <akim@epita.fr>
16230 * src/gram.h, src/gram.c (rules_rhs_length): New.
16231 (ritem_longest_rhs): Use it.
16232 * src/gram.h (rule_t): `number' is a new member.
16233 * src/reader.c (packgram): Set it.
16234 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16235 the end of `rules', and count them out of `nrules'.
16236 (reduce_output, dump_grammar): Adjust.
16237 * src/print.c (print_grammar): It is no longer needed to check for
16238 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16239 * tests/reduce.at (Reduced Automaton): New test.
16241 2002-04-07 Akim Demaille <akim@epita.fr>
16243 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16244 lacking `+ 1' to nrules, Bison reported as useless a token if it
16245 was used solely to set the precedence of the last rule...
16247 2002-04-07 Akim Demaille <akim@epita.fr>
16249 * data/bison.c++, data/bison.simple: Don't output the current file
16250 name in #line, to avoid useless diffs between two identical
16251 outputs under different names.
16253 2002-04-07 Akim Demaille <akim@epita.fr>
16255 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16256 Normalize loops to using `< nrules + 1', not `<= nrules'.
16258 2002-04-07 Akim Demaille <akim@epita.fr>
16262 2002-04-07 Akim Demaille <akim@epita.fr>
16264 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16265 bucket.value as bucket.number.
16267 2002-04-07 Akim Demaille <akim@epita.fr>
16269 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16270 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16271 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16272 RHS, instead of being an index in RITEMS.
16274 2002-04-04 Paul Eggert <eggert@twinsun.com>
16276 * doc/bison.texinfo: Update copyright date.
16277 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16278 (Symbols): Warn about running Bison in one character set,
16279 but compiling and/or running in an incompatible one.
16280 Warn about character code 256, too.
16282 2002-04-03 Paul Eggert <eggert@twinsun.com>
16284 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16285 YYERROR_VERBOSE is nonzero, not whether it is defined.
16287 Merge changes from bison-1_29-branch.
16289 2002-03-20 Paul Eggert <eggert@twinsun.com>
16291 Merge fixes from Debian bison_1.34-1.diff.
16293 * configure.in (AC_PREREQ): 2.53.
16295 2002-03-20 Akim Demaille <akim@epita.fr>
16297 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16299 2002-03-19 Paul Eggert <eggert@twinsun.com>
16301 * src/bison.simple (YYCOPY): New macro.
16302 (YYSTACK_RELOCATE): Use it.
16303 Remove Type arg; no longer needed. All callers changed.
16304 (yymemcpy): Remove; no longer needed.
16306 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16307 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16309 2002-03-19 Akim Demaille <akim@epita.fr>
16311 Test and fix the #line outputs.
16313 * tests/atlocal.at (GCC): New.
16314 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16315 (Prologue synch line, %union synch line, Postprologue synch line)
16316 (Action synch line, Epilogue synch line): New tests.
16317 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16318 * data/bison.simple, data/bison.c++: Use it.
16320 2002-03-19 Akim Demaille <akim@epita.fr>
16322 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16323 (Solved SR Conflicts, %expect not enough, %expect right)
16324 (%expect too much): Move to...
16325 * tests/conflicts.at: this new file.
16327 2002-03-19 Akim Demaille <akim@epita.fr>
16329 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16330 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16331 that we can move to enums for instance.
16332 * src/output.c (token_definitions_output): Output a list of
16333 `token-name, token-number' instead of the #define.
16334 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16336 2002-03-14 Akim Demaille <akim@epita.fr>
16338 Use Gettext 0.11.1.
16340 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16342 * data/bison.c++: Make the user able to add members to the generated
16343 parser by subclassing.
16345 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16347 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16349 Reported by Nicolas Tisserand and Nicolas Burrus.
16351 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16353 * src/reader.c: Warn about lacking semi-colons, do not complain.
16355 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16357 * data/bison.c++: Remove a debug line.
16359 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16361 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16362 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16363 provide a default implementation.
16365 2002-03-04 Akim Demaille <akim@epita.fr>
16367 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16368 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16369 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16370 * tests/semantic.at (Parsing Guards): Similarly.
16371 * src/reader.at (readgram): Complain if the last rule is not ended
16374 2002-03-04 Akim Demaille <akim@epita.fr>
16376 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16377 * src/closure.c: here.
16378 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16380 * src/warshall.h, src/warshall.c: Remove.
16381 * tests/sets.at (Broken Closure): Adjust.
16383 2002-03-04 Akim Demaille <akim@epita.fr>
16385 * src/output.c (output_skeleton): tempdir is const.
16386 bytes_read is unused.
16388 2002-03-04 Akim Demaille <akim@epita.fr>
16390 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16391 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16393 From Michael Hayes.
16395 2002-03-04 Akim Demaille <akim@epita.fr>
16397 * src/closure.c (closure): `r' is unused.
16399 2002-03-04 Akim Demaille <akim@epita.fr>
16401 * tests/sets.at (Broken Closure): Add the ending `;'.
16402 * src/reader.at (readgram): Complain if a rule is not ended with a
16405 2002-03-04 Akim Demaille <akim@epita.fr>
16407 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16408 (count_sr_conflicts): Use bitset_count.
16409 * src/reduce.c (inaccessable_symbols): Ditto.
16410 (bits_size): Remove.
16411 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16413 2002-03-04 Akim Demaille <akim@epita.fr>
16415 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16416 * src/reduce.c: Remove the `bitset_zero's following the
16417 `bitset_create's, as now it is performed by the latter.
16419 2002-03-04 Akim Demaille <akim@epita.fr>
16421 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16422 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16423 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16424 latest sources from Michael.
16426 2002-03-04 Akim Demaille <akim@epita.fr>
16428 * src/output.c (output): Don't free the grammar.
16429 * src/reader.c (grammar_free): New.
16430 * src/main.c (main): Call it and don't free symtab here.
16432 2002-03-04 Akim Demaille <akim@epita.fr>
16434 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16436 Reported by Benoit Perrot.
16438 2002-03-04 Akim Demaille <akim@epita.fr>
16440 Use bitset operations when possible, not loops over bits.
16442 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16444 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16445 * src/reduce.c (useless_nonterminals): Formatting changes.
16446 * src/warshall.c (TC): Use bitset_or.
16448 2002-03-04 Akim Demaille <akim@epita.fr>
16450 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16451 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16454 2002-03-04 Akim Demaille <akim@epita.fr>
16456 * src/lalr.c (F): Now a bitset*.
16457 Adjust all dependencies.
16459 2002-03-04 Akim Demaille <akim@epita.fr>
16461 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16462 Adjust all dependencies.
16464 2002-03-04 Akim Demaille <akim@epita.fr>
16466 * src/L0.c, src/LR0.h (nstates): Be size_t.
16467 Adjust comparisons (signed vs unsigned).
16468 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16470 Adjust all dependencies.
16472 2002-03-04 Akim Demaille <akim@epita.fr>
16474 * src/closure.c (firsts): Now, also a bitset.
16475 Adjust all dependencies.
16476 (varsetsize): Remove, now unused.
16477 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16479 2002-03-04 Akim Demaille <akim@epita.fr>
16481 * src/print.c: Convert to use bitset.h, not hand coded iterations
16484 2002-03-04 Akim Demaille <akim@epita.fr>
16486 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16488 2002-03-04 Akim Demaille <akim@epita.fr>
16490 * src/closure.c (ruleset): Be a bitset.
16491 (rulesetsize): Remove.
16493 2002-03-04 Akim Demaille <akim@epita.fr>
16495 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16496 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16497 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16498 * src/closure.c (fderives): Be an array of bitsets.
16500 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16502 * data/bison.c++: Merge the two generated headers. Insert a copyright
16503 notice in each output file.
16505 2002-02-28 Akim Demaille <akim@epita.fr>
16507 * data/bison.c++: Copy the prologue of bison.simple to fetch
16508 useful M4 definitions, such as b4_header_guard.
16510 2002-02-25 Akim Demaille <akim@epita.fr>
16512 * src/getargs.c (version): Give the name of the authors, and use a
16513 translator friendly scheme for the bgr
16516 2002-02-25 Akim Demaille <akim@epita.fr>
16518 * src/output.c (header_output): Remove, now handled completely via
16521 2002-02-25 Akim Demaille <akim@epita.fr>
16523 * m4/m4.m4: New, from CVS Autoconf.
16524 * configure.in: Invoke it.
16525 * src/output.c (output_skeleton): Use its result instead of the
16528 2002-02-25 Akim Demaille <akim@epita.fr>
16530 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16532 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16533 * src/output.c (output_skeleton): Use mkstemp to create a real
16535 Move the filling of `skeleton' and its muscle to...
16537 (output): Move the definition of the prologue muscle to...
16539 * src/system.h (DEFAULT_TMPDIR): New.
16541 2002-02-14 Paul Eggert <eggert@twinsun.com>
16543 Remove the support for C++ namespace cleanliness; it was
16544 causing more problems than it was curing, since it didn't work
16545 properly on some nonstandard C++ compilers. This can wait
16546 for a proper C++ parser.
16548 * NEWS: Document this.
16549 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16550 of C++, as it's treated like C now.
16551 * src/bison.simple (YYSTD): Remove.
16552 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16553 Treat C++ just like Standard C instead of trying to support
16554 namespace cleanliness.
16556 2002-02-14 Akim Demaille <akim@epita.fr>
16558 * tests/regression.at (else): Adjust to Andreas' change.
16560 2002-02-14 Akim Demaille <akim@epita.fr>
16562 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16564 2002-02-13 Andreas Schwab <schwab@suse.de>
16566 * src/output.c (output_rule_data): Don't output NULL, it might
16567 not be defined yet.
16569 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16571 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16572 (Copyright notice): Update.
16574 2002-02-11 Akim Demaille <akim@epita.fr>
16576 * tests/regression.at (%nonassoc and eof): Don't include
16577 nonportable headers.
16579 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16581 * data/bison.c++: Correct error recovery. Make the user able to
16582 initialize the starting location.
16584 2002-02-07 Akim Demaille <akim@epita.fr>
16586 * tests/input.at: New.
16588 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16590 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16591 more consistent when naming methods and variables. Put preprocessor
16592 directives around tables only needed for debugging.
16594 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16596 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16598 (yy::b4_name::parse): Use print_.
16600 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16602 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16604 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16606 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16608 (yy::b4_name::parse): Build verbose error messages, and use error_.
16610 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16612 * data/bison.c++: Fix m4 quoting in comments.
16614 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16616 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16617 not expanded by m4.
16619 2002-02-05 Akim Demaille <akim@epita.fr>
16621 * data/bison.c++: Adjust to the M4 back end.
16622 More is certainly needed.
16624 2002-02-05 Akim Demaille <akim@epita.fr>
16626 Give a try to M4 as a back end.
16628 * lib/readpipe.c: New, from wdiff.
16629 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16631 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16632 specific values. Now it is m4 that performs the lookup.
16633 * src/parse-skel.y: Remove.
16634 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16635 * src/output.c (actions_output, guards_output)
16636 (token_definitions_output): No longer keeps track of the output
16637 line number, hence remove the second argument.
16638 (guards_output): Check against the guard member of a rule, not the
16641 (output_skeleton): Don't look for the skeleton location, let m4 do
16643 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16645 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16646 (prepare): Given that for the time being changesyntax is not
16647 usable in M4, rename the muscles using `-' to `_'.
16648 Define `defines_flag', `output_parser_name' and `output_header_name'.
16649 * src/output.h (actions_output, guards_output)
16650 (token_definitions_output): Adjust prototypes.
16651 * src/scan-skel.l: Instead of scanning the skeletons, it now
16652 processes the output of m4: `__oline__' and `#output'.
16653 * data/bison.simple: Adjust to be used by M4(sugar).
16654 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16656 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16657 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16658 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16659 shamelessly stolen from CVS Autoconf.
16661 2002-02-05 Akim Demaille <akim@epita.fr>
16663 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16664 * configure.in: Check for the declarations of free and malloc.
16665 * src/muscle_tab.c: Adjust.
16667 2002-02-05 Akim Demaille <akim@epita.fr>
16669 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16670 which have no values.
16672 2002-02-05 Akim Demaille <akim@epita.fr>
16674 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16677 2002-01-29 Paul Eggert <eggert@twinsun.com>
16679 * src/bison.simple (YYSIZE_T): Do not define merely because
16680 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16681 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16683 2002-01-27 Akim Demaille <akim@epita.fr>
16685 Fix `%nonassoc and eof'.
16687 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16688 which were not properly copied! Replace
16689 memcpy (res->errs, src->errs, src->nerrs);
16691 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16693 * tests/regression.at (%nonassoc and eof): Adjust to newest
16694 Autotest: `.' is not in the PATH.
16696 2002-01-27 Akim Demaille <akim@epita.fr>
16698 * tests/sets.at (AT_EXTRACT_SETS): New.
16699 (Nullable): Use it.
16702 2002-01-26 Akim Demaille <akim@epita.fr>
16704 * tests/actions.at, tests/calc.at, tests/headers.at,
16705 * tests/torture.at: Adjust to the newest Autotest which no longer
16706 forces `.' in the PATH.
16708 2002-01-25 Akim Demaille <akim@epita.fr>
16710 * tests/regression.at (%nonassoc and eof): New.
16711 Suggested by Robert Anisko.
16713 2002-01-24 Akim Demaille <akim@epita.fr>
16715 Bison dumps core when trying to complain about broken input files.
16716 Reported by Cris van Pelt.
16718 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16719 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16721 (Invalid inputs): Strengthen: exercise parse_percent_token.
16723 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16725 * src/Makefile.am: Add bison.c++.
16726 * src/bison.c++: New skeleton.
16728 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16732 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16734 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16736 2002-01-20 Marc Autret <marc@gnu.org>
16738 * src/files.c (compute_output_file_names): Fix
16740 2002-01-20 Marc Autret <marc@gnu.org>
16742 * tests/output.at: New test.
16743 * src/files.c (compute_base_names): Don't map extensions when
16744 the YACC flag is set, use defaults.
16745 Reported by Evgeny Stambulchik.
16747 2002-01-20 Marc Autret <marc@gnu.org>
16749 * src/system.h: Need to define __attribute__ away for non-GCC
16750 compilers as well (i.e., the vendor C compiler).
16751 Suggested by Albert Chin-A-Young.
16753 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16755 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16756 canonical definition.
16757 * src/system.h: Use the canonical definition for PARAMS (avoids
16758 a conflict with the macro from lib/hash.h).
16760 2002-01-11 Akim Demaille <akim@epita.fr>
16762 * configure.in: Use AC_FUNC_STRNLEN.
16763 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16765 2002-01-09 Akim Demaille <akim@epita.fr>
16767 * src/files.c, src/files.h (output_infix): New.
16768 (tab_extension): Remove.
16769 (compute_base_names): Compute the former, drop the latter.
16770 * src/output.c (prepare): Insert the muscles `output-infix', and
16772 * src/parse-skel.y (string, string.1): New.
16773 (section.header): Use it.
16774 (section.yacc): Remove.
16775 (prefix): Remove too.
16776 * src/scan-skel.l: Adjust.
16777 * src/bison.simple, src/bison.hairy: Adjust.
16779 2002-01-09 Akim Demaille <akim@epita.fr>
16781 * configure.in (WERROR_CFLAGS): Compute it.
16782 * src/Makefile.am (CFLAGS): Pass it.
16783 * tests/atlocal.in (CFLAGS): Idem.
16784 * src/files.c: Fix a few warnings.
16785 (get_extension_index): Remove, unused.
16787 2002-01-08 Akim Demaille <akim@epita.fr>
16789 * src/getargs.c (AS_FILE_NAME): New.
16790 (getargs): Use it to convert DOSish file names.
16791 * src/files.c (base_name): Rename as full_base_name to avoid
16792 clashes with `base_name ()'.
16793 (filename_split): New.
16794 (compute_base_names): N-th rewrite, using filename_split.
16796 2002-01-08 Akim Demaille <akim@epita.fr>
16798 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16799 New, stolen from the Fileutils 4.1.
16800 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16801 * configure.in: Check for the presence of memrchr, and of its
16804 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16806 * lib/hash.h (__P): Added definition for this macro.
16807 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16808 BUILT_SOURCES, to ensure they are generated first.
16809 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16810 %error-verbose to allow bootstrapping with bison 1.30x.
16812 2002-01-06 Akim Demaille <akim@epita.fr>
16814 * src/reader.c (parse_braces): Don't fetch the next char, the
16815 convention is to fetch on entry.
16816 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16817 'switch' without a following semicolon.
16818 * tests/regression.at (braces parsing): New.
16820 2002-01-06 Akim Demaille <akim@epita.fr>
16822 Bison is dead wrong in its RR conflict reports.
16824 * tests/torture.at (GNU Cim Grammar): New.
16825 * src/conflicts.c (count_rr_conflicts): Fix.
16827 2002-01-06 Akim Demaille <akim@epita.fr>
16829 Creating package.m4 from configure.ac causes too many problems.
16831 * tests/Makefile.am (package.m4): Create it by hand,
16832 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16834 2002-01-06 Akim Demaille <akim@epita.fr>
16836 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16839 2002-01-04 Paul Eggert <eggert@twinsun.com>
16841 * doc/bison.texinfo (Debugging):
16842 Remove YYSTDERR; it's no longer defined or used.
16843 Also, s/cstdio.h/cstdio/.
16845 2002-01-03 Akim Demaille <akim@epita.fr>
16847 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16849 2002-01-03 Akim Demaille <akim@epita.fr>
16851 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16852 tracing code to --trace, wait for a better --trace option, with
16855 2002-01-03 Akim Demaille <akim@epita.fr>
16857 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16858 The ISO C++ standard is extremely clear about it: stderr is
16859 considered a macro, not a regular symbol (see table 94 `Header
16860 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16861 Therefore std:: does not apply to it. It still does with fprintf.
16862 Also, s/cstdio.h/cstdio/.
16864 2002-01-03 Akim Demaille <akim@epita.fr>
16866 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16867 for non system headers.
16869 2002-01-02 Akim Demaille <akim@epita.fr>
16871 Equip the skeleton chain with location tracking, runtime trace,
16872 pure parser and scanner.
16874 * src/parse-skel.y: Request a pure parser, locations, and prefix
16876 (%union): Having several members with the same type does not help
16877 type mismatches, simplify.
16878 (YYPRINT, yyprint): New.
16879 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16880 (skel_error): this.
16882 * src/scan-skel.l: Adjust to these changes.
16883 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16884 (LOCATION_PRINT, skel_control_t): New.
16886 2001-12-30 Akim Demaille <akim@epita.fr>
16888 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16889 replace `gb' with BLANKS.
16890 * src/scan-skel.l: Adjust.
16892 2001-12-30 Akim Demaille <akim@epita.fr>
16894 * src/system.h: We don't need nor want bcopy.
16895 Throw away MS-DOS crap: we don't need getpid.
16896 * configure.in: We don't need strndup. It was even causing
16897 problems: because Flex includes the headers *before* us,
16898 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16900 * lib/xstrndup.c: New.
16901 * src/scan-skel.l: Use it.
16902 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16903 * src/parse-skel.y: Use %directives instead of #defines.
16905 2001-12-30 Akim Demaille <akim@epita.fr>
16907 * src/skeleton.h: New.
16908 * src/output.c (output_parser, output_master_parser): Remove, dead
16910 * src/output.h (get_lines_number, actions_output, guards_output)
16911 (token_definitions_output): Prototype them.
16912 * src/parse-skel.y: Add the license notice.
16913 Include output.h and skeleton.h.
16914 (process_skeleton): Returns void, and takes a single parameter.
16915 * src/scan-skel.l: Add the license notice.
16916 Include skeleton.h.
16917 Don't use %option yylineno: it seems that then Flex imagines
16918 REJECT has been used, and therefore it won't reallocate its
16919 buffers (which makes no other sense to me than a bug). It results
16920 in warnings for `unused: yy_flex_realloc'.
16922 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
16924 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16925 (MUSCLE_INSERT_PREFIX): ...to there.
16926 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16927 (MUSCLE_INSERT_PREFIX): Move from here...
16929 * src/bison.hairy: Add a section directive. Put braces around muscle
16930 names. This parser skeleton is still broken, but Bison should not
16931 choke on a bad muscle 'syntax'.
16932 * src/bison.simple: Add a section directive. Put braces around muscle
16935 * src/files.h (strsuffix, stringappend): Add declarations.
16936 (tab_extension): Add declaration.
16937 (short_base_name): Add declaration.
16939 * src/files.c (strsuffix, stringappend): No longer static. These
16940 functions are used in the skeleton parser.
16941 (tab_extension): New.
16942 (compute_base_names): Use the computations done in this function
16943 to guess if the generated parsers should have '.tab' in their
16945 (short_base_name): No longer static.
16947 * src/output.c (output_skeleton): New.
16948 (output): Disable call to output_master_parser, and give a try to
16949 a new skeleton handling system.
16950 (guards_output, actions_output): No longer static.
16951 (token_definitions_output, get_lines_number): No longer static.
16953 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
16955 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
16958 * src/parse-skel.y: New file.
16959 * src/scan-skel.l: New file.
16961 2001-12-29 Akim Demaille <akim@epita.fr>
16963 %name-prefix is broken.
16965 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
16966 Adjust all dependencies.
16967 * tests/headers.at (export YYLTYPE): Strengthen this test: use
16970 Renaming yylval but not yylloc is not consistent. Now we do.
16972 * src/bison.simple: Prefix yylloc if used.
16973 * doc/bison.texinfo (Decl Summary): Document that.
16975 2001-12-29 Akim Demaille <akim@epita.fr>
16977 * doc/bison.texinfo: Promote `%long-directive' over
16979 Remove all references to fixed-output-files, yacc is enough.
16981 2001-12-29 Akim Demaille <akim@epita.fr>
16983 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
16984 user prologue. These are defaults.
16985 * tests/actions.at (Mid-rule actions): Make sure the user can
16986 define YYDEBUG and YYERROR_VERBOSE.
16988 2001-12-29 Akim Demaille <akim@epita.fr>
16990 * src/output.c (header_output): Don't forget to export YYLTYPE and
16992 * tests/headers.at (export YYLTYPE): New, make sure it does.
16993 * tests/regression.at (%union and --defines, Invalid CPP headers):
16995 * tests/headers.at: here.
16997 2001-12-29 Akim Demaille <akim@epita.fr>
16999 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17001 2001-12-29 Akim Demaille <akim@epita.fr>
17003 * tests/actions.at (Mid-rule actions): Output on a single line
17004 instead of several.
17006 2001-12-29 Akim Demaille <akim@epita.fr>
17008 * doc/bison.texinfo: Formatting changes.
17010 2001-12-29 Akim Demaille <akim@epita.fr>
17012 Don't store the token defs in a muscle, just be ready to output it
17013 on command. Now possible via `symbols'. Fixes a memory leak.
17015 * src/output.c (token_definitions_output): New.
17016 (output_parser, header_output): Use it.
17017 * src/reader.c (symbols_save): Remove.
17019 2001-12-29 Akim Demaille <akim@epita.fr>
17021 * src/bison.simple: Do not provide a default for YYSTYPE and
17022 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17025 2001-12-29 Akim Demaille <akim@epita.fr>
17027 Mid-rule actions are simply... ignored!
17029 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17030 the empty-rule associated to the dummy symbol, not to the host
17032 * tests/actions.at (Mid-rule actions): New.
17034 2001-12-29 Akim Demaille <akim@epita.fr>
17038 * src/reader.c (reader): Free grammar.
17040 2001-12-29 Akim Demaille <akim@epita.fr>
17044 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17045 since it allocates it for each state, although only one is needed.
17046 (allocate_storage): Do it here.
17048 2001-12-29 Akim Demaille <akim@epita.fr>
17050 * src/options.h, src/options.c (create_long_option_table): Rename
17052 (long_option_table_new): this, with a clearer prototype.
17053 (percent_table): Remove, unused,
17054 * src/getargs.c (getargs): Adjust.
17056 2001-12-29 Akim Demaille <akim@epita.fr>
17058 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17059 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17062 2001-12-29 Akim Demaille <akim@epita.fr>
17064 * src/lalr.c (build_relations): Rename `states' as `states1'.
17065 Sorry, I don't understand exactly what it is, no better name...
17067 2001-12-29 Akim Demaille <akim@epita.fr>
17069 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17070 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17071 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17074 2001-12-29 Akim Demaille <akim@epita.fr>
17076 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17079 2001-12-29 Akim Demaille <akim@epita.fr>
17081 * src/reader.c, src/reader.h (user_toknums): Remove.
17082 Adjust all users to use symbols[i]->user_token_number.
17084 2001-12-29 Akim Demaille <akim@epita.fr>
17086 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17087 Adjust all users to use symbols[i]->prec or ->assoc.
17089 2001-12-29 Akim Demaille <akim@epita.fr>
17091 * src/reader.c, src/reader.h (tags): Remove.
17092 Adjust all users to use symbols[i]->tag.
17094 2001-12-29 Akim Demaille <akim@epita.fr>
17096 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17098 * src/reader.c (packsymbols): Fill this table.
17100 * src/conflicts.c (resolve_sr_conflict): Adjust.
17101 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17103 Use symbols[i]->tag instead of tags[i].
17105 2001-12-29 Akim Demaille <akim@epita.fr>
17107 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17108 In addition, put a comment in there, to replace...
17109 * tests/regression.at (%union and C comments): Remove.
17111 2001-12-29 Akim Demaille <akim@epita.fr>
17113 * tests/regression.at (Web2c Actions): Blindly move the actual
17114 output as expected output. The contents *seem* right to me, but I
17115 can't pretend reading perfectly parser tables... Nonetheless, all
17116 the other tests pass correctly, the table look OK, even though the
17117 presence of `$axiom' is to be noted: AFAICS it is useless (but
17120 2001-12-29 Akim Demaille <akim@epita.fr>
17122 * src/reader.c (readgram): Don't add the rule 0 if there were no
17123 rules read. In other words, add it _after_ having performed
17124 grammar sanity checks.
17125 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17127 2001-12-29 Akim Demaille <akim@epita.fr>
17129 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17130 visible, and some states have now a different number.
17132 2001-12-29 Akim Demaille <akim@epita.fr>
17134 * src/reader.c (readgram): Bind the initial rule's lineno to that
17136 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17137 (Solved SR Conflicts): Adjust rule 0's line number.
17139 2001-12-29 Akim Demaille <akim@epita.fr>
17141 Fix the `GAWK Grammar' failure.
17143 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17144 the reductions of the first state which was mistakenly confused
17145 with the final state because precisely final_state was initialized
17147 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17148 now noticed by Bison.
17149 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17150 have a reduction on $default.
17152 2001-12-29 Akim Demaille <akim@epita.fr>
17154 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17156 * src/closure.c (print_closure): Likewise.
17157 * src/derives.c (print_derives): Likewise.
17158 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17161 2001-12-29 Akim Demaille <akim@epita.fr>
17163 * src/lalr.c (lookaheads_print): New.
17164 (lalr): Call it when --trace-flag.
17165 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17168 2001-12-29 Akim Demaille <akim@epita.fr>
17170 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17171 when walking through ritem, even via rule->rhs.
17172 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17173 (useful_production, useless_nonterminals): Likewise.
17174 (reduce_grammar_tables): Likewise, plus update nritems.
17175 * src/nullable.c (set_nullable): Likewise.
17176 * src/lalr.c (build_relations): Likewise.
17177 * tests/sets.at (Nullable): Adjust.
17178 Fortunately, now, the $axiom is no longer nullable.
17180 2001-12-29 Akim Demaille <akim@epita.fr>
17182 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17184 * src/gram.c (ritem_longest_rhs): Likewise.
17185 * src/reduce.c (nonterminals_reduce): Likewise.
17186 * src/print_graph.c (print_graph): Likewise.
17187 * src/output.c (output_rule_data): Likewise.
17188 * src/nullable.c (set_nullable): Likewise.
17190 2001-12-29 Akim Demaille <akim@epita.fr>
17192 * src/output.c: Comment changes.
17194 2001-12-27 Paul Eggert <eggert@twinsun.com>
17196 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17197 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17198 Sparc, as they were causing more porting problems than the
17199 (minor) performance improvement was worth.
17201 Also, catch up with 1.31's YYSTD.
17203 2001-12-27 Akim Demaille <akim@epita.fr>
17205 * src/output.c (output_gram): Rely on nritems, not the
17206 0-sentinel. See below.
17207 Use -1 as separator, not 0.
17208 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17209 Rely on -1 as separator in yyrhs, instead of 0.
17210 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17211 twice `Now at end of input', therefore there are two lines less to
17214 2001-12-27 Akim Demaille <akim@epita.fr>
17216 * tests/regression.at (Unresolved SR Conflicts):
17217 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17220 2001-12-27 Akim Demaille <akim@epita.fr>
17222 * src/LR0.c (new_state): Recognize the final state by the fact it
17223 is reached by eoftoken.
17224 (insert_start_shifting_state, insert_eof_shifting_state)
17225 (insert_accepting_state, augment_automaton): Remove, since now
17226 these states are automatically computed from the initial state.
17227 (generate_states): Adjust.
17228 * src/print.c: When reporting a rule number to the user, substract
17229 1, so that the axiom rule is rule 0, and the first user rule is 1.
17230 * src/reduce.c: Likewise.
17231 * src/print_graph.c (print_core): For the time being, just as for
17232 the report, depend upon --trace-flags to dump the full set of
17234 * src/reader.c (readgram): Once the grammar read, insert the rule
17235 0: `$axiom: START-SYMBOL $'.
17236 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17237 number of the states has changed (the final state is no longer
17238 necessarily the last), catch up.
17240 2001-12-27 Akim Demaille <akim@epita.fr>
17242 Try to make the use of the eoftoken valid. Given that its value
17243 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17244 is used instead of > 0 where appropriate, (ii), depend upon nritems
17245 instead of the 0-sentinel.
17247 * src/gram.h, src/gram.c (nritems): New.
17248 Expected to be duplication of nitems, but for the time being...
17249 * src/reader.c (packgram): Assert nritems and nitems are equal.
17250 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17251 * src/closure.c (print_closure, print_fderives): Likewise.
17252 * src/gram.c (ritem_print): Likewise.
17253 * src/print.c (print_core, print_grammar): Likewise.
17254 * src/print_graph.c: Likewise.
17256 2001-12-27 Akim Demaille <akim@epita.fr>
17258 * src/main.c (main): If there are complains after grammar
17259 reductions, then output the report anyway if requested, then die.
17260 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17261 * src/reader.c (eoftoken): New.
17262 (parse_token_decl): If the token being defined has value `0', it
17264 (packsymbols): No longer hack `tags' to insert `$' by hand.
17265 Be sure to preserve the value of the eoftoken.
17266 (reader): Make sure eoftoken is defined.
17267 Initialize nsyms to 0: now eoftoken is created just like the others.
17268 * src/print.c (print_grammar): Don't special case the eof token.
17269 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17270 lie anyway, albeit pleasant.
17271 * tests/calc.at: Exercise error messages with eoftoken.
17272 Change the grammar so that empty input is invalid.
17273 Adjust expectations.
17274 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17276 2001-12-27 Akim Demaille <akim@epita.fr>
17278 * configure.in: Check the protos of strchr ans strspn.
17279 Replace strchr if needed.
17280 * src/system.h: Provide the protos of strchr, strspn and memchr if
17282 * lib/strchr.c: New.
17283 * src/reader.c (symbols_save): Use strchr.
17285 2001-12-27 Akim Demaille <akim@epita.fr>
17287 * src/print.c, src/print_graph.c (escape): New.
17288 Use it to quote the TAGS outputs.
17289 * src/print_graph.c (print_state): Now errors are in red, and
17290 reductions in green.
17291 Prefer high to wide: output the state number on a line of its own.
17293 2001-12-27 Akim Demaille <akim@epita.fr>
17295 * src/state.h, src/state.c (reductions_new): New.
17296 * src/LR0.c (set_state_table): Let all the states have a
17297 `reductions', even if reduced to 0.
17298 (save_reductions): Adjust.
17299 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17300 * src/print.c (print_reductions, print_actions): Adjust.
17301 * src/output.c (action_row): Adjust.
17303 2001-12-27 Akim Demaille <akim@epita.fr>
17305 * src/state.h, src/state.c (errs_new, errs_dup): New.
17306 * src/LR0.c (set_state_table): Let all the states have an errs,
17307 even if reduced to 0.
17308 * src/print.c (print_errs, print_reductions): Adjust.
17309 * src/output.c (output_actions, action_row): Adjust.
17310 * src/conflicts.c (resolve_sr_conflict): Adjust.
17312 2001-12-27 Akim Demaille <akim@epita.fr>
17314 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17316 2001-12-27 Akim Demaille <akim@epita.fr>
17318 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17319 * src/print.c: here.
17320 (lookaheadset, shiftset): New, used as additional storage by
17322 (print_results): Adjust.
17323 (print_shifts, print_gotos, print_errs): New, extracted from...
17324 (print_actions): here.
17325 * src/print_graph.c (print_actions): Remove dead code.
17327 2001-12-27 Akim Demaille <akim@epita.fr>
17329 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17332 2001-12-27 Akim Demaille <akim@epita.fr>
17334 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17335 (build_relations): Adjust.
17337 2001-12-27 Akim Demaille <akim@epita.fr>
17339 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17342 2001-12-27 Akim Demaille <akim@epita.fr>
17344 * src/reader.c (packgram): Catch nitems overflows.
17346 2001-12-27 Akim Demaille <akim@epita.fr>
17348 * src/files.c, src/files.h (guard_obstack): Remove.
17349 * src/output.c (output): Adjust.
17350 * src/reader.c (parse_braces): New, factoring...
17351 (copy_action, copy_guard): these two which are renamed as...
17352 (parse_action, parse_guard): these.
17353 As a voluntary consequence, using braces around guards is now
17356 2001-12-27 Akim Demaille <akim@epita.fr>
17358 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17359 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17361 (symbol_list_new): Adjust.
17362 (copy_action): action_line is the first line, not the last.
17363 (copy_guard): Just as for actions, store the `action' only, not
17364 the switch/case/break flesh.
17365 Don't parse the user action that might follow the guard, let...
17366 (readgram): do it, i.e., now, there can be an action after a
17368 In other words the guard is just explicitly optional.
17369 (packgram): Adjust.
17370 * src/output.c (guards_output): New.
17371 (output_parser): Call it when needed.
17372 (output): Also free the guard and attrs obstacks.
17373 * src/files.c, src/files.h (obstack_save): Remove.
17374 (output_files): Remove.
17375 As a result, if one needs the former `.act' file, using an
17376 appropriate skeleton which requires actions and guards is now
17378 * src/main.c (main): Adjust.
17379 * tests/semantic.at: New.
17380 * tests/regression.at: Use `input.y' as input file name.
17381 Avoid 8+3 problems by requiring input.c when the test needs the
17384 2001-12-27 Akim Demaille <akim@epita.fr>
17386 * src/reader.c (symbol_list_new): Be sure to initialize all the
17389 2001-12-27 Akim Demaille <akim@epita.fr>
17391 All the hacks using a final pseudo state are now useless.
17393 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17394 * src/lalr.c (nLA): New.
17395 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17396 instead of lookaheadsp from the pseudo state (nstate + 1).
17398 2001-12-27 Akim Demaille <akim@epita.fr>
17400 * src/output.c (action_row, token_actions): Use a state_t instead
17401 of a integer, and nlookaheads instead of the following state's
17404 2001-12-27 Akim Demaille <akim@epita.fr>
17406 * src/conflicts.c (log_resolution, flush_shift)
17407 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17408 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17409 (conflicts_print, print_reductions): Use a state_t instead of an
17410 integer when referring to a state.
17411 As much as possible, depend upon nlookaheads, instead of the
17412 `lookaheadsp' member of the following state (since lookaheads of
17413 successive states are successive, the difference between state n + 1
17414 and n served as the number of lookaheads for state n).
17415 * src/lalr.c (add_lookback_edge): Likewise.
17416 * src/print.c (print_core, print_actions, print_state)
17417 (print_results): Likewise.
17418 * src/print_graph.c (print_core, print_actions, print_state)
17419 (print_graph): Likewise.
17420 * src/conflicts.h: Adjust.
17422 2001-12-27 Akim Demaille <akim@epita.fr>
17424 * src/bison.hairy: Formatting/comment changes.
17426 Remove `register' indications.
17427 Add plenty of `static'.
17429 2001-12-27 Akim Demaille <akim@epita.fr>
17431 * src/output.c (prepare): Drop the muscle `ntbase' which
17432 duplicates ntokens.
17433 * src/bison.simple: Formatting/comment changes.
17434 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17435 is an undocumented synonym.
17437 2001-12-22 Akim Demaille <akim@epita.fr>
17439 * src/output.c (output_table_data): Change the prototype to use
17440 `int' for array ranges: some invocations do pass an int, not a
17442 Reported by Wayne Green.
17444 2001-12-22 Akim Demaille <akim@epita.fr>
17446 Some actions of web2c.y are improperly triggered.
17447 Reported by Mike Castle.
17449 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17450 * tests/regression.at (Web2c): Rename as...
17451 (Web2c Report): this.
17452 (Web2c Actions): New.
17454 2001-12-22 Akim Demaille <akim@epita.fr>
17456 Reductions in web2c.y are improperly reported.
17457 Reported by Mike Castle.
17459 * src/conflicts.c (print_reductions): Fix.
17460 * tests/regression.at (Web2c): New.
17462 2001-12-18 Akim Demaille <akim@epita.fr>
17464 Some host fail on `assert (!"foo")', which expands to
17465 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17466 Reported by Nelson Beebee.
17468 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17469 `#define it_succeeded 0' and `assert (it_succeeded)'.
17471 2001-12-17 Marc Autret <autret_m@epita.fr>
17473 * src/bison.simple: Don't hard code the skeleton line and filename.
17474 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17475 New line counter 'skeleton_line' (skeleton-line muscle).
17477 2001-12-17 Paul Eggert <eggert@twinsun.com>
17479 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17480 YYDEBUG must be defined to a nonzero value.
17482 * src/bison.simple (yytname): Do not assume that the user defines
17483 YYDEBUG to a properly parenthesized expression.
17485 2001-12-17 Akim Demaille <akim@epita.fr>
17487 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17488 nlookaheads is a new member.
17490 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17491 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17494 2001-12-17 Akim Demaille <akim@epita.fr>
17496 * src/files.h, src/files.c (open_files, close_files): Remove.
17497 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17499 * src/reader.c (reader): Do it.
17501 2001-12-17 Akim Demaille <akim@epita.fr>
17503 * src/conflicts.c (print_reductions): Formatting changes.
17505 2001-12-17 Akim Demaille <akim@epita.fr>
17507 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17508 (flush_reduce): New.
17509 (resolve_sr_conflict): Adjust.
17511 2001-12-17 Akim Demaille <akim@epita.fr>
17513 * src/output.c (output_obstack): Be static and rename as...
17514 (format_obstack): this, to avoid any confusion with files.c's
17516 * src/reader.h (muscle_obstack): Move to...
17517 * src/output.h: here, since it's defined in output.c.
17519 2001-12-17 Akim Demaille <akim@epita.fr>
17521 * src/output.c (action_row, save_column, default_goto)
17522 (sort_actions, matching_state, pack_vector): Better variable
17525 2001-12-17 Akim Demaille <akim@epita.fr>
17527 * src/output.c: Various formatting changes.
17529 2001-12-17 Akim Demaille <akim@epita.fr>
17531 * src/files.c (output_files): Free the output_obstack.
17532 * src/main.c (main): Call print and print_graph conditionally.
17533 * src/print.c (print): Work unconditionally.
17534 * src/print_graph.c (print_graph): Work unconditionally.
17535 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17537 2001-12-16 Marc Autret <autret_m@epita.fr>
17539 * src/output.c (actions_output): Fix. When we use %no-lines,
17540 there is one less line per action.
17542 2001-12-16 Marc Autret <autret_m@epita.fr>
17544 * src/bison.simple: Remove a useless #line directive.
17545 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17546 * src/output.c (get_lines_number): New.
17547 (output_parser): Adjust, now takes care about the lines of a
17549 Fix line numbering.
17550 (actions_output): Computes the number of lines taken by actions.
17551 (output_master_parser): Insert new skeleton which is the name of
17552 the output parser file name.
17554 2001-12-15 Marc Autret <autret_m@epita.fr>
17556 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17558 2001-12-15 Marc Autret <autret_m@epita.fr>
17560 * src/output.c (output_gram): Keep track of the hairy one.
17562 2001-12-15 Akim Demaille <akim@epita.fr>
17564 Make `make distcheck' work.
17566 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17567 system.h which uses libgettext.h.
17569 2001-12-15 Akim Demaille <akim@epita.fr>
17571 * src/nullable.c (set_nullable): Useless rules must be skipped,
17572 otherwise, since we range over their symbols, we might look at a
17573 nonterminal which no longer ``exists'', i.e., it is not counted in
17574 `nvars', hence we overflow our arrays.
17576 2001-12-15 Akim Demaille <akim@epita.fr>
17578 The header can also be produced directly, without any obstack!
17581 * src/files.c, src/files.h (defines_obstack): Remove.
17582 (compute_header_macro): Global.
17583 (defines_obstack_save): Remove.
17584 * src/reader.c (parse_union_decl): No longer output to
17585 defines_obstack: its content can be found in the `stype' muscle
17587 (output_token_translations): Merge into...
17588 (symbols_output): this.
17590 (symbols_save): this.
17592 * src/output.c (header_output): New.
17595 2001-12-15 Akim Demaille <akim@epita.fr>
17597 * src/reader.c (parse_union_decl): Instead of handling two obstack
17598 simultaneously, use one to define the `stype' muscle, and use the
17599 value of the latter to fill defines_obstack.
17600 (copy_comment): Remove.
17601 (copy_comment2): Work for a single obstack.
17603 (copy_comment): this.
17605 2001-12-15 Akim Demaille <akim@epita.fr>
17607 * src/lex.c, src/lex.h (xgetc): No longer static.
17608 * src/reader.c (parse_union_decl): Revamp.
17610 2001-12-15 Akim Demaille <akim@epita.fr>
17612 Still making progress in separating Bison into (i) input, (ii)
17613 process, (iii) output: now we can directly output the parser file
17614 without using table_obstack at all.
17616 * src/files.c, src/files.h (table_obstack): Bye bye.
17617 (parser_file_name): New.
17618 * src/files.c (compute_output_file_names): Compute it.
17619 * src/output.c (actions_output, output_parser)
17620 (output_master_parser): To a file instead of an obstack.
17622 2001-12-15 Akim Demaille <akim@epita.fr>
17624 Attach actions to rules, instead of pre-outputting them to
17627 * src/gram.h (rule_t): action and action_line are new members.
17628 * src/reader.c (symbol_list): Likewise.
17629 (copy_action): Save the actions within the rule.
17630 (packgram): Save them in rule_table.
17631 * src/output.c (actions_output): New.
17632 (output_parser): Use it on `%%actions'.
17633 (output_rule_data): Don't free rule_table.
17635 (prepare): Don't save the `action' muscle.
17636 * src/bison.simple: s/%%action/%%actions/.
17638 2001-12-15 Akim Demaille <akim@epita.fr>
17640 * src/reader.c (copy_action): When --yacc, don't append a `;'
17641 to the user action: let it fail if lacking.
17642 Suggested by Arnold Robbins and Tom Tromey.
17644 2001-12-14 Akim Demaille <akim@epita.fr>
17646 * src/lex.c (literalchar): Simply return the char you decoded, non
17647 longer mess around with obstacks and int pointers.
17648 Adjust all callers.
17650 2001-12-14 Akim Demaille <akim@epita.fr>
17652 * src/lex.c (literalchar): Don't escape the special characters,
17653 just decode them, and keep them as char (before, eol was output as
17654 the 2 char string `\n' etc.).
17655 * src/output.c (output_rule_data): Use quotearg to output the
17658 2001-12-13 Paul Eggert <eggert@twinsun.com>
17660 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17661 Do not infringe on the global user namespace when using C++.
17662 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17663 All uses of `fprintf' and `stderr' changed.
17665 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17667 2001-12-13 Akim Demaille <akim@epita.fr>
17669 The computation of nullable is broken: it doesn't handle empty
17672 * tests/torture.at (GNU AWK Grammar): New.
17673 * tests/sets.at (Nullable): New.
17674 * src/nullable.c (set_nullable): Instead of blindly looping over
17675 `ritems', loop over the rules, and then over their rhs's.
17677 Work around Autotest bugs.
17679 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17680 frame, because Autotest understand lines starting with a `+' as
17681 traces from the shell. Then, they are not processed properly.
17682 Admittedly an Autotest bug, but we don't have time to wait for
17683 Autotest to catch up.
17684 * tests/regression.at (Broken Closure): Adjust to the new table
17687 * tests/sets.at: here.
17689 2001-12-13 Akim Demaille <akim@epita.fr>
17691 * src/closure.c (closure): Use nrules instead of playing tricks
17692 with BITS_PER_WORD.
17694 2001-12-13 Akim Demaille <akim@epita.fr>
17696 * src/print.c (print_actions): Output the handling of `$' as the
17697 traces do: shifting the token EOF. Before EOF was treated as a
17699 * tests/regression.at: Adjust some tests.
17700 * src/print_graph.c (print_core): Complete the set of items via
17701 closure. The next-to-final and final states are still unsatisfying,
17702 but that's to be addressed elsewhere.
17703 No longer output the rule numbers, but do output the state number.
17704 A single loop for the shifts + gotos is enough, but picked a
17705 distinct color for each.
17706 (print_graph): Initialize and finalize closure.
17708 2001-12-13 Akim Demaille <akim@epita.fr>
17710 * src/reader.c (readgram): Remove dead code, an strip useless
17712 (get_type): Remove, unused.
17714 2001-12-12 Akim Demaille <akim@epita.fr>
17716 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17717 on that of lib/error.c.
17719 2001-12-12 Akim Demaille <akim@epita.fr>
17721 Some hosts don't like `/' in includes.
17723 * src/system.h: Include libgettext.h without qualifying the path.
17724 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17727 2001-12-11 Marc Autret <autret_m@epita.fr>
17729 * src/output.c (output_parser): Remove useless muscle.
17731 2001-12-11 Marc Autret <autret_m@epita.fr>
17733 * src/bison.simple: Remove #line just before %%epilogue. It
17734 is now handled in ...
17735 * src/reader.c (read_additionnal_code): Add the output of a
17736 #line for the epilogue.
17738 2001-12-10 Marc Autret <autret_m@epita.fr>
17740 * src/reader.c (copy_definition): Re-use CPP-outed code which
17741 replace precedent remove.
17742 * src/bison.simple: Remove #line before %%prologue because
17743 %%input-line is wrong at this time.
17745 2001-12-10 Marc Autret <autret_m@epita.fr>
17747 * src/reader.c (symbols_output): Clean up.
17748 * src/output.c (output_gram, output): Clean up.
17750 2001-12-10 Akim Demaille <akim@epita.fr>
17752 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17753 * src/LR0.c (set_state_table): here.
17754 * src/lalr.c (lalr): Call it.
17756 2001-12-10 Akim Demaille <akim@epita.fr>
17758 * src/state.h (shifts): Remove the `number' member: shifts are
17759 attached to state, hence no longer need to be labelled with a
17762 2001-12-10 Akim Demaille <akim@epita.fr>
17764 Now that states have a complete set of members, the linked list of
17765 shifts is useless: just fill directly the state's shifts member.
17767 * src/state.h (shifts): Remove the `next' member.
17768 * src/LR0.c (first_state, last_state): Remove.
17769 Adjust the callers.
17770 (augment_automaton): Don't look for the shifts that must be added
17771 a shift on EOF: it is those of the state we looked for! But now,
17772 since shifts are attached, it is no longer needed to looking
17773 merely by its id: its number.
17775 2001-12-10 Akim Demaille <akim@epita.fr>
17777 * src/LR0.c (augment_automaton): Better variable locality.
17778 Remove an impossible branch: if there is a state corresponding to
17779 the start symbol being shifted, then there is shift for the start
17780 symbol from the initial state.
17782 2001-12-10 Akim Demaille <akim@epita.fr>
17784 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17785 only when appropriate: when insert_start_shifting_state' is not
17787 * tests/regression.at (Rule Line Numbers): Adjust.
17789 2001-12-10 Akim Demaille <akim@epita.fr>
17791 * src/LR0.c (augment_automaton): Now that all states have shifts,
17792 merge the two cases addition shifts to the initial state.
17794 2001-12-10 Akim Demaille <akim@epita.fr>
17796 * src/lalr.c (set_state_table): Move to...
17798 * src/lalr.c (lalr): Don't call it...
17799 * src/LR0.c (generate_states): do it.
17800 * src/LR0.h (first_state): Remove, only the table is used.
17802 2001-12-10 Akim Demaille <akim@epita.fr>
17804 * src/LR0.h (first_shift, first_reduction): Remove.
17805 * src/lalr.c: Don't use first_shift: find shifts through the
17808 2001-12-10 Akim Demaille <akim@epita.fr>
17810 * src/LR0.c: Attach shifts to states as soon as they are
17812 * src/lalr.c (set_state_table): Instead of assigning shifts to
17813 state, just assert that the mapping was properly done.
17815 2001-12-10 Akim Demaille <akim@epita.fr>
17817 * src/LR0.c (insert_start_shift): Rename as...
17818 (insert_start_shifting_state): this.
17819 (insert_eof_shifting_state, insert_accepting_state): New.
17820 (augment_automaton): Adjust.
17821 Better locality of the variables.
17822 When looking if the start_symbol is shifted from the initial
17823 state, using `while (... symbol != start_symbol ...)' sounds
17824 better than `while (... symbol < start_symbol ...)': If fail
17825 to see how the order between symbols could be relevant!
17827 2001-12-10 Akim Demaille <akim@epita.fr>
17829 * src/getargs.h: Don't declare `spec_name_prefix' and
17830 `spec_file_prefix', declared by src/files.h.
17831 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17832 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17833 * src/output.c (prepare): Adjust.
17834 * src/reader.c (symbols_output): Likewise.
17835 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17837 2001-12-10 Akim Demaille <akim@epita.fr>
17839 * src/muscle_tab.c (muscle_init): NULL is a better default than
17842 2001-12-10 Akim Demaille <akim@epita.fr>
17844 * src/reader.c (reader): Calling symbols_output once is enough.
17846 2001-12-10 Akim Demaille <akim@epita.fr>
17848 Now that states have a complete set of members, the linked list of
17849 reductions is useless: just fill directly the state's reductions
17852 * src/state.h (struct reductions): Remove member `number' and
17854 * src/LR0.c (first_reduction, last_reduction): Remove.
17855 (save_reductions): Don't link the new reductions, store them in
17857 * src/lalr.c (set_state_table): No need to attach reductions to
17858 states, it's already done.
17859 * src/output.c (output_actions): No longer free the shifts, then
17860 the reductions, then the states: free all the states and their
17863 2001-12-10 Akim Demaille <akim@epita.fr>
17865 * src/options.c (OPTN, DRTV, BOTH): New.
17866 (option_table): Use them.
17868 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17869 the job of system.h.
17870 * src/options.c: Don't include stdio.h and xalloc.h for the same
17873 2001-12-10 Akim Demaille <akim@epita.fr>
17875 * src/output.c (output, prepare): Make sure the values of the
17876 muscles `action' and `prologue' are 0-terminated.
17878 2001-12-10 Akim Demaille <akim@epita.fr>
17880 Clean up GCC warnings.
17882 * src/reader.c (copy_action): `buf' is not used.
17883 (parse_skel_decl): Be static.
17884 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17885 * src/options.h (create_long_option_table): Have a real prototype.
17886 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17887 (hash_delete_at): Return const void *.
17888 Adjust casts to preserve the const.
17890 2001-12-10 Akim Demaille <akim@epita.fr>
17892 * configure.in: Require 2.52g.
17893 M4 is not needed, but AUTOM4TE is.
17894 * m4/m4.m4: Remove.
17895 * tests/Makefile.am: Adjust.
17897 2001-12-10 Akim Demaille <akim@epita.fr>
17899 One structure for states is enough, even though theoretically
17900 there are LR(0) states and LALR(1) states.
17902 * src/lalr.h (state_t): Remove.
17903 (state_table): Be state_t **, not state_t *.
17904 * src/state.h (core, CORE_ALLOC): Rename as...
17905 (state_t, STATE_ALLOC): this.
17906 Add the LALR(1) members: shifts, reductions, errs.
17907 * src/LR0.c (state_table): Rename as...
17908 (state_hash): this, to avoid name clashes with the global
17910 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17911 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17913 2001-12-10 Akim Demaille <akim@epita.fr>
17915 Bison dumps core on bash.y.
17916 Reported by Pascal Bart.
17918 * src/warshall.c (bitmatrix_print): New.
17920 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
17921 j must be the outer loop.
17922 * tests/regression.at (Broken Closure): New.
17924 2001-12-05 Akim Demaille <akim@epita.fr>
17926 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17928 Reported by Peter Hamorsky.
17930 2001-12-05 Akim Demaille <akim@epita.fr>
17932 * src/conflicts.c (err_table): Remove.
17933 (resolve_sr_conflict): Adjust.
17934 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
17936 (state_t.reductions, state_t.shifts): this.
17938 2001-12-05 Akim Demaille <akim@epita.fr>
17940 * src/reduce.c (reduce_grammar_tables): No longer disable the
17941 removal of useless rules via CPP but via `if (0)', so that the
17942 compiler still check the code is valid.
17943 For instance, it should have noticed `rline' no longer exists: use
17944 the `line' member of rule_t.
17945 * src/gram.c (dummy, rline): Remove, unused.
17947 2001-12-05 Akim Demaille <akim@epita.fr>
17949 * src/output.c (pack_vector): Use assert, not berror.
17950 * src/main.c (berror): Remove, unused.
17952 2001-12-05 Akim Demaille <akim@epita.fr>
17954 New experimental feature: if --verbose --trace output all the
17955 items of a state, not only its kernel.
17957 * src/print.c (print_core): If `trace_flag', then invoke closure
17958 before outputting the items of the state (print_core is no longer
17959 a correct name them).
17960 (print_results): Invoke new_closure/free_closure if needed.
17962 2001-12-05 Akim Demaille <akim@epita.fr>
17964 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
17965 * src/closure.c, src/closure.h (itemsetsize): Rename as...
17966 (nitemset): for consistency with the rest of the project.
17968 2001-12-05 Akim Demaille <akim@epita.fr>
17970 * src/closure.c (print_closure): Improve.
17971 (closure): Use it for printing input and output.
17973 2001-12-05 Akim Demaille <akim@epita.fr>
17975 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
17976 indexed by nonterminals.
17978 2001-12-05 Akim Demaille <akim@epita.fr>
17980 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
17982 * src/warshall.h: Remove accidental duplication of the content.
17984 2001-12-05 Akim Demaille <akim@epita.fr>
17986 * src/closure.c (set_fderives): De-obfuscate.
17988 2001-12-05 Akim Demaille <akim@epita.fr>
17990 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
17992 2001-12-05 Akim Demaille <akim@epita.fr>
17994 * src/closure.c (set_firsts): De-obfuscate.
17996 2001-12-05 Akim Demaille <akim@epita.fr>
17998 * src/output.c (action_row): De-obfuscate
17999 using the good o' techniques: arrays not pointers, variable
18000 locality, BITISSET, RESETBIT etc.
18002 2001-12-05 Akim Demaille <akim@epita.fr>
18004 Pessimize the code to simplify it: from now on, all the states
18005 have a valid SHIFTS, which NSHIFTS is possibly 0.
18007 * src/LR0.c (shifts_new): Be global and move to..
18008 * src/state.c, src/state.h: here.
18009 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18010 * src/print_graph: Adjust.
18012 2001-12-05 Akim Demaille <akim@epita.fr>
18014 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18015 * src/conflicts.c: Use it.
18016 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18017 incorrectly ``simplified''.
18019 2001-12-05 Akim Demaille <akim@epita.fr>
18021 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18022 using the good o' techniques: arrays not pointers, variable
18023 locality, BITISSET, RESETBIT etc.
18025 2001-12-05 Akim Demaille <akim@epita.fr>
18027 * src/state.h (SHIFT_SYMBOL): New.
18028 * src/conflicts.c: Use it to deobfuscate.
18030 2001-12-05 Akim Demaille <akim@epita.fr>
18032 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18033 (print_reductions): De-obfuscate using the good o' techniques:
18034 arrays not pointers, variable locality, BITISSET.
18036 2001-12-05 Akim Demaille <akim@epita.fr>
18038 * src/conflicts.c (print_reductions): Arrays, not pointers.
18041 2001-12-05 Akim Demaille <akim@epita.fr>
18043 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18045 2001-12-05 Akim Demaille <akim@epita.fr>
18047 * src/conflicts.c (print_reductions): Improve variable locality.
18049 2001-12-05 Akim Demaille <akim@epita.fr>
18051 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18053 2001-12-05 Akim Demaille <akim@epita.fr>
18055 * src/conflicts.c (print_reductions): Improve variable locality.
18057 2001-12-05 Akim Demaille <akim@epita.fr>
18059 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18060 * src/lalr.c: Use them.
18062 2001-12-05 Akim Demaille <akim@epita.fr>
18064 * src/LR0.c (augment_automaton): Formatting changes.
18065 Better variable locality.
18067 2001-12-05 Akim Demaille <akim@epita.fr>
18069 * src/lalr.c (matrix_print): New.
18070 (transpose): Use it.
18071 Use arrays instead of pointers.
18073 2001-12-05 Akim Demaille <akim@epita.fr>
18075 * src/lalr.c (maxrhs): Move to...
18076 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18077 * src/lalr.c (build_relations): Adjust.
18079 2001-12-05 Akim Demaille <akim@epita.fr>
18081 * src/lalr.c (transpose): Free the memory allocated to the
18082 argument, as it is replaced by the results by the unique caller.
18083 (build_relations): Merely invoke transpose: it handles the memory
18085 Improve variable locality.
18086 Avoid variables used as mere abbreviations.
18087 (compute_lookaheads): Use arrays instead of pointers.
18089 2001-12-05 Akim Demaille <akim@epita.fr>
18091 * src/lalr.c (initialize_F): Improve variable locality.
18092 Avoid variables used as mere abbreviations.
18094 2001-12-05 Akim Demaille <akim@epita.fr>
18096 * src/derives.c (print_derives): Display the ruleno.
18097 * src/lalr.c (initialize_F, transpose): Better variable locality
18098 to improve readability.
18099 Avoid variables used as mere abbreviations.
18101 2001-12-05 Akim Demaille <akim@epita.fr>
18103 * src/lalr.c (traverse): Use arrays instead of pointers.
18105 2001-12-05 Akim Demaille <akim@epita.fr>
18107 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18108 the handling of squeue.
18109 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18111 2001-12-05 Akim Demaille <akim@epita.fr>
18113 Because useless nonterminals are now kept alive (instead of being
18114 `destroyed'), we now sometimes examine them, and store information
18115 related to them. Hence we need to know their number, and adjust
18116 memory allocations.
18118 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18120 * src/LR0.c (allocate_itemsets): The memory allocated to
18121 `symbol_count' was used for two different purpose: once to count
18122 the number of occurrences of each symbol, and later reassigned to
18123 `shift_symbol', containing the symbol that can be shifted from a
18125 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18127 (new_itemsets): Allocate `shift_symbol' here.
18128 (allocate_itemsets): symbol_count includes useless nonterminals.
18129 Make room for them.
18130 (free_storage): Use `free', not `XFREE', for pointers that cannot
18133 2001-12-05 Akim Demaille <akim@epita.fr>
18135 * src/nullable.c (set_nullable): Deobfuscate the handling of
18137 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18139 2001-12-05 Akim Demaille <akim@epita.fr>
18141 * src/gram.c, src/gram.h (ritem_print): New.
18142 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18143 (This useless function was defined only to work around VMS linkers
18144 that can't handle compilation units with variables only).
18145 * src/reduce.c (dump_grammar): Use it to trace the construction of
18148 2001-12-04 Paul Eggert <eggert@twinsun.com>
18150 * src/bison.simple (union yyalloc): Change member names
18151 to be the same as the stack names.
18152 (yyparse): yyptr is now union yyalloc *, not char *.
18153 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18154 and may generate better code on some machines.
18155 (yystpcpy): Use prototype if __STDC__ is defined, not just
18156 if __cplusplus is defined.
18158 2001-11-30 Akim Demaille <akim@epita.fr>
18160 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18161 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18162 Gettext doesn't compile cleanly, and dies with -Werror.
18163 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18164 Include WARNING_CFLAGS here.
18165 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18166 before being defined.
18168 2001-11-27 Paul Eggert <eggert@twinsun.com>
18170 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18171 First arg is int, not unsigned.
18172 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18173 (SIZE_MAX, UINT_MAX): New macros.
18174 (quotearg_n_options): Abort if N is negative.
18175 Avoid overflow check on hosts where size_t is 64 bits and int
18176 is 32 bits, as overflow is impossible there.
18177 Fix off-by-one typo that caused unnecessary reallocation.
18179 2001-11-29 Paul Eggert <eggert@twinsun.com>
18181 Name space cleanup in generated parser.
18183 * doc/bison.texinfo (Bison Parser): Discuss system headers
18184 and their effect on the user name space.
18186 * src/bison.simple:
18187 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18188 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18189 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18191 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18192 on user names when possible.
18194 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18195 Simplify test for whather <alloca.h> exists.
18197 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18199 (<stdio.h>): Include if YYDEBUG.
18201 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18202 ! defined (yyoverflow) && ! defined (yymemcpy).
18204 (yymemcpy, yyparse): Rename local variables as needed so that
18205 they all begin with 'yy'.
18207 (yystrlen, yystpcpy): New functions.
18209 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18212 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18213 instead of relying on string.h functions. Use YYSTACK_ALLOC
18214 and YYSTACK_FREE instead of malloc and free.
18216 2001-11-30 Akim Demaille <akim@epita.fr>
18218 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18219 before their first uses.
18220 (YYBISON, YYPURE): Move to the top of the output.
18222 2001-11-30 Akim Demaille <akim@epita.fr>
18224 * tests/reduce.at (Useless Nonterminals): Fix.
18226 2001-11-30 Akim Demaille <akim@epita.fr>
18228 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18229 if body instead of `;' to pacify GCC's warnings.
18231 2001-11-30 Akim Demaille <akim@epita.fr>
18233 Instead of mapping the LHS of unused rules to -1, keep the LHS
18234 valid, but flag the rules as invalid.
18236 * src/gram.h (rule_t): `useful' is a new member.
18237 * src/print.c (print_grammar): Adjust.
18238 * src/derives.c (set_derives): Likewise.
18239 * src/reader.c (packgram, reduce_output): Likewise.
18240 * src/reduce.c (reduce_grammar_tables): Likewise.
18241 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18243 2001-11-30 Akim Demaille <akim@epita.fr>
18245 * src/reduce.c (reduce_output): Formatting changes.
18246 * src/print.c (print_results, print_grammar): Likewise.
18247 * tests/regression.at (Rule Line Numbers)
18248 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18250 2001-11-30 Akim Demaille <akim@epita.fr>
18252 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18253 useless nonterminals, move them at the end of the symbol arrays.
18254 (reduce_output): Adjust.
18255 * tests/reduce.at (Useless Nonterminals): Adjust.
18257 2001-11-30 Akim Demaille <akim@epita.fr>
18259 * src/reduce.c: Various comment/formatting changes.
18260 (nonterminals_reduce): New, extracted from...
18261 (reduce_grammar_tables): here.
18262 (reduce_grammar): Call nonterminals_reduce.
18264 2001-11-29 Paul Eggert <eggert@twinsun.com>
18266 * src/bison.simple (YYSTACK_REALLOC): Remove.
18267 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18268 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18270 (union yyalloc): New type.
18271 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18272 an arbitrary restriction on hosts where size_t is wider than int.
18274 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18275 a parser stack overflow. Allocate just one block of memory for all
18276 three stacks, instead of allocating three blocks; this typically is
18277 faster and reduces fragmentation.
18279 Do not limit the number of items in the stack to a value that fits
18280 in 'int', as this is an arbitrary limit on hosts with 64-bit
18281 size_t and 32-bit int.
18283 2001-11-29 Marc Autret <autret_m@epita.fr>
18285 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18286 of defining YYERROR_VERBOSE.
18287 [AT_DATA]: $4 is now out of C declarations in the prologue.
18289 2001-11-28 Marc Autret <autret_m@epita.fr>
18291 * src/reader.c (parse_dquoted_param): New.
18292 (parse_skel_decl): Use it.
18293 * src/lex.h: Add its prototype.
18294 * src/lex.c (literalchar): Become not static.
18296 2001-11-28 Marc Autret <autret_m@epita.fr>
18298 * src/output.h: And put its extern declaration here.
18299 * src/output.c (error_verbose): Define here.
18300 (prepare): Echo name modification.
18301 * src/getargs.h: Clean its extern declaration.
18302 * src/getargs.c (error_verbose_flag): Remove.
18303 (getargs): Remove case 'e'.
18304 * src/options.c (option_table): 'error-verbose' is now seen as simple
18308 * src/reader.c (read_declarations): Remove case tok_include.
18309 (parse_include_decl): Remove.
18310 * src/lex.h (token_t): Remove tok_include.
18311 * src/options.c (option_table): 'include' is now a simple command line
18314 2001-11-28 Marc Autret <autret_m@epita.fr>
18316 * src/bison.simple: Adjust muscle names.
18317 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18318 * src/output.c (prepare): s/_/-/ for the muscles names.
18319 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18321 2001-11-28 Marc Autret <autret_m@epita.fr>
18323 * src/bison.simple: Fix debug.
18324 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18326 2001-11-28 Akim Demaille <akim@epita.fr>
18328 * src/LR0.c (shifts_new): New.
18329 (save_shifts, insert_start_shift, augment_automaton): Use it.
18331 2001-11-28 Akim Demaille <akim@epita.fr>
18333 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18336 2001-11-28 Akim Demaille <akim@epita.fr>
18338 * src/closure.c (closure): Instead of looping over word in array
18339 then bits in words, loop over bits in array.
18341 2001-11-28 Akim Demaille <akim@epita.fr>
18343 * src/closure.c (closure): No longer optimize the special case
18344 where all the bits of `ruleset[r]' are set to 0, to make the code
18347 2001-11-28 Akim Demaille <akim@epita.fr>
18349 * src/closure.c (closure): `r' and `c' are new variables, used to
18350 de-obfuscate accesses to RULESET and CORE.
18352 2001-11-28 Akim Demaille <akim@epita.fr>
18354 * src/reduce.c (reduce_print): Use ngettext.
18355 (dump_grammar): Improve the trace accuracy.
18357 2001-11-28 Akim Demaille <akim@epita.fr>
18359 * src/reduce.c (dump_grammar): Don't translate trace messages.
18361 2001-11-28 Akim Demaille <akim@epita.fr>
18363 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18364 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18365 as all tags are free'ed afterwards.
18366 From Enrico Scholz.
18368 2001-11-27 Paul Eggert <eggert@twinsun.com>
18370 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18371 use alloca when we didn't want to, and vice versa.
18373 2001-11-27 Marc Autret <autret_m@epita.fr>
18375 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18377 * src/output.c (prepare): Remove its update.
18379 2001-11-27 Marc Autret <autret_m@epita.fr>
18381 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18382 Use %error-verbose.
18384 2001-11-27 Marc Autret <autret_m@epita.fr>
18386 * src/bison.simple: Remove YYERROR_VERBOSE using.
18387 Use %%error_verbose.
18388 (yyparse): Likewise.
18389 * src/output.c (prepare): Give its final value.
18390 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18391 * src/getargs.h: Add its extern declaration.
18392 * src/getargs.c (error_verbose_flag): New int.
18393 (getargs): Update to catch new case.
18394 * src/options.c (option_table): 'error-verbose' is a new option.
18395 (shortopts): Update.
18397 2001-11-27 Akim Demaille <akim@epita.fr>
18399 * src/system.h: Use intl/libgettext.h.
18400 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18402 2001-11-27 Akim Demaille <akim@epita.fr>
18404 * tests/torture.at (Exploding the Stack Size with Malloc):
18405 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18407 2001-11-27 Akim Demaille <akim@epita.fr>
18409 * src/files.c: Include error.h.
18410 Reported by Hans Aberg.
18412 2001-11-26 Marc Autret <autret_m@epita.fr>
18414 * src/reader.c (parse_include_decl): New, not yet implemented.
18415 (read_declarations): Add case tok_include.
18416 * src/getargs.h (include): Add its extern definition.
18417 * src/getargs.c (include): New const char *.
18418 (getargs): Add case '-I'.
18419 * src/options.c (option_table): Add include as command line and
18421 * src/lex.h (token_t): Add tok_include.
18423 2001-11-26 Akim Demaille <akim@epita.fr>
18425 * src/reader.c (readgram): Make sure rules for mid-rule actions
18426 have a lineno equal to that of their host rule.
18427 Reported by Hans Aberg.
18428 * tests/regression.at (Rule Line Numbers): New.
18430 2001-11-26 Akim Demaille <akim@epita.fr>
18432 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18435 2001-11-26 Akim Demaille <akim@epita.fr>
18437 * src/complain.c, src/complain.h (error): Remove, provided by
18440 2001-11-26 Akim Demaille <akim@epita.fr>
18442 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18443 issue an error message.
18444 * tests/regression.at (Invalid %directive): New.
18445 Reported by Hans Aberg.
18447 2001-11-26 Akim Demaille <akim@epita.fr>
18449 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18450 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18452 2001-11-26 Akim Demaille <akim@epita.fr>
18454 * src/conflicts.c (conflicts_print): Don't complain at all when
18455 there are no reduce/reduce conflicts, and as many shift/reduce
18456 conflicts as expected.
18457 * tests/regression.at (%expect right): Adjust.
18459 2001-11-23 Akim Demaille <akim@epita.fr>
18461 * lib/alloca.c: Update, from fileutils.
18463 2001-11-23 Akim Demaille <akim@epita.fr>
18465 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18467 2001-11-23 Akim Demaille <akim@epita.fr>
18469 * src/system.h: Include alloca.h.
18470 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18472 2001-11-23 Akim Demaille <akim@epita.fr>
18474 * src/print_graph.c (print_actions): Remove `rule', unused.
18475 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18476 pacify GCC's signed < unsigned warnings.
18477 * src/closure.c (itemsetsize): Likewise.
18478 * src/reader.c (symbol_list_new): Static.
18480 2001-11-23 Akim Demaille <akim@epita.fr>
18482 Attaching lineno to buckets is stupid, since only one copy of each
18483 symbol is kept, only the line of the first occurrence is kept too.
18485 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18486 * src/reader.c (rline_allocated): Remove, unused.
18487 (symbol_list): Have a `line' member.
18488 (symbol_list_new): New.
18489 (readgram): Use it.
18490 * src/print.c (print_grammar): Output the rule line numbers.
18491 * tests/regression.at (Solved SR Conflicts)
18492 (Unresolved SR Conflicts): Adjust.
18493 Reported by Hans Aberg.
18495 2001-11-22 Marc Autret <autret_m@epita.fr>
18497 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18499 2001-11-22 Marc Autret <autret_m@epita.fr>
18501 * src/muscle_tab.c (muscle_init): Remove initialization of
18503 * src/output.c (output_master_parser): Do it here.
18505 2001-11-20 Akim Demaille <akim@epita.fr>
18508 * configure.in (ALL_LINGUAS): Adjust.
18509 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18510 longer contains strings to translate.
18512 2001-11-19 Akim Demaille <akim@epita.fr>
18514 * src/conflicts.c (conflicts_print): Add a missing \n.
18516 2001-11-19 Akim Demaille <akim@epita.fr>
18518 * src/nullable.c (nullable_print): New.
18519 (set_nullable): Call it when tracing.
18520 Better locality of variables.
18522 2001-11-19 Akim Demaille <akim@epita.fr>
18524 * src/print.c (print_actions): Better locality of variables.
18526 2001-11-19 Akim Demaille <akim@epita.fr>
18528 * src/derives.c (print_derives): Fix and enrich.
18529 * src/closure.c (print_fderives): Likewise.
18531 2001-11-19 Akim Demaille <akim@epita.fr>
18533 * src/closure.c (itemsetend): Remove, replaced with...
18534 (itemsetsize): new.
18536 2001-11-19 Akim Demaille <akim@epita.fr>
18538 * src/LR0.c (kernel_end): Remove, replaced with...
18539 (kernel_size): new.
18541 2001-11-19 Akim Demaille <akim@epita.fr>
18543 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18546 2001-11-19 Akim Demaille <akim@epita.fr>
18548 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18550 2001-11-19 Akim Demaille <akim@epita.fr>
18552 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18554 * src/LR0.c: Likewise.
18555 (allocate_itemsets): Use arrays instead of pointers to clarify.
18557 2001-11-19 Akim Demaille <akim@epita.fr>
18559 * src/getargs.c (statistics_flag): Replace with...
18561 (longopts): Accept --trace instead of --statistics.
18562 * src/getargs.h, src/options.c: Adjust.
18563 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18564 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18566 2001-11-19 Akim Demaille <akim@epita.fr>
18568 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18569 pointers to clarify the code.
18570 (save_reductions, save_shifts): Factor common parts of alternatives.
18572 2001-11-19 Akim Demaille <akim@epita.fr>
18574 * src/LR0.c (new_state, get_state): Complete TRACE code.
18575 * src/closure.c: Include `reader.h' to get `tags', needed by the
18577 Rename the conditional DEBUG as TRACE.
18578 Output consistently TRACEs to stderr, not stdout.
18579 * src/derives.c: Likewise.
18580 * src/reduce.c: (inaccessable_symbols): Using if is better style
18582 Use `#if TRACE' instead of `#if 0' for tracing code.
18584 2001-11-19 Akim Demaille <akim@epita.fr>
18586 * src/system.h (LIST_FREE, shortcpy): New.
18587 * src/LR0.c: Use them.
18588 * src/output.c (free_itemsets, free_reductions, free_shifts):
18589 Remove, replaced by LIST_FREE.
18591 2001-11-19 Akim Demaille <akim@epita.fr>
18593 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18594 (REDUCTIONS_ALLOC): New.
18595 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18598 2001-11-19 Akim Demaille <akim@epita.fr>
18600 * src/LR0.c (new_state): Complete trace code.
18601 * src/nullable.c (set_nullable): Don't translate traces.
18603 2001-11-19 Akim Demaille <akim@epita.fr>
18605 * src/print_graph.c (print_core): Better locality of variables.
18606 * src/print.c (print_core): Likewise.
18608 2001-11-19 Akim Demaille <akim@epita.fr>
18610 * src/vcg.c: You do the output, so you are responsible of the
18611 handling of VCG syntax, in particular: use quotearg.
18612 * src/print_graph.c: Don't.
18613 (print_actions): Don't output the actions as part of the nodes,
18614 since that's the job of the edges.
18615 (print_state): Don't output by hand: fill the node description,
18616 and ask for its output.
18618 2001-11-19 Akim Demaille <akim@epita.fr>
18620 * src/bison.simple (yyparse): When verbosely reporting an error,
18621 no longer put additional quotes around token names.
18622 * tests/calc.at: Adjust.
18624 2001-11-19 Akim Demaille <akim@epita.fr>
18626 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18627 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18628 * src/output.c: Adjust.
18630 2001-11-19 Akim Demaille <akim@epita.fr>
18632 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18634 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18636 2001-11-19 Akim Demaille <akim@epita.fr>
18638 * src/gram.h (rule_t): New.
18640 (rrhs, rlhs): Remove, part of state_t.
18641 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18642 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18643 * src/reader.c, src/reduce.c: Adjust.
18645 2001-11-19 Akim Demaille <akim@epita.fr>
18647 * src/reader.c (symbols_output): New, extracted from...
18648 (packsymbols): Here.
18651 2001-11-19 Akim Demaille <akim@epita.fr>
18653 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18654 (maxrhs): this new function.
18656 2001-11-19 Akim Demaille <akim@epita.fr>
18658 * src/lalr.c (F): New macro to access the variable F.
18661 2001-11-19 Akim Demaille <akim@epita.fr>
18663 * src/lalr.h (LA): New macro to access the variable LA.
18664 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18665 * src/lalr.c: Adjust.
18667 2001-11-19 Akim Demaille <akim@epita.fr>
18669 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18670 (set_state_table): handle the `lookaheads' members.
18672 2001-11-19 Akim Demaille <akim@epita.fr>
18674 * src/lalr.h (lookaheads): Removed array, whose contents is now
18676 (state_t): this structure.
18677 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18680 2001-11-19 Akim Demaille <akim@epita.fr>
18682 * src/lalr.h (consistent): Removed array, whose contents is now
18684 (state_t): this structure.
18685 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18688 2001-11-19 Akim Demaille <akim@epita.fr>
18690 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18691 contents are now members of...
18692 (state_t): this structure.
18693 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18696 2001-11-19 Akim Demaille <akim@epita.fr>
18698 * src/lalr.h (state_t): New.
18699 (state_table): Be a state_t * instead of a core **.
18700 (accessing_symbol): Remove, part of state_t.
18701 * src/lalr.c: Adjust.
18702 (set_accessing_symbol): Merge into...
18703 (set_state_table): this.
18704 * src/print_graph.c, src/conflicts.c: Adjust.
18706 2001-11-14 Akim Demaille <akim@epita.fr>
18708 * tests/calc.at, tests/output.at, tests/regression.at,
18709 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18710 now the tests are run in private dirs, therefore AC_CLEANUP and
18711 family can be simplified to 0-ary.
18712 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18713 use abs. path to find config.h.
18714 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18715 stderr, there can be way too much random noise.
18716 Instead pass -Werror to GCC and rely on the exit status.
18717 Reported by Wolfram Wagner.
18719 2001-11-14 Akim Demaille <akim@epita.fr>
18721 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18722 defined only if yyoverflow is defined, to avoid `warning: unused
18724 Reported by The Test Suite.
18726 2001-11-14 Akim Demaille <akim@epita.fr>
18728 * src/print.c: Include reduce.h.
18729 Reported by Hans Aberg.
18731 2001-11-14 Akim Demaille <akim@epita.fr>
18733 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18734 Revert a previous patch: these are really const.
18735 * src/conflicts.c (conflict_report): Additional useless pair of
18736 braces to pacify GCC's warnings for `if () if () {} else {}'.
18737 * src/lex.c (parse_percent_token): Replace equal_offset with
18740 Be sure to strdup `arg' when used, since there is no reason for
18741 token_buffer not to change.
18743 2001-11-14 Akim Demaille <akim@epita.fr>
18745 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18747 * src/main.c (main): Use them.
18748 Suggested by Hans Aberg.
18750 2001-11-12 Akim Demaille <akim@epita.fr>
18752 * src/system.h (ngettext): Now that we use ngettext, be sure to
18753 provide a default definition when NLS are not used.
18755 2001-11-12 Akim Demaille <akim@epita.fr>
18757 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18758 Use @kbd to denote user input.
18759 (Language and Grammar): ANSIfy the example.
18760 Adjust its layout for info/notinfo.
18761 (Location Tracking Calc): Output error messages to stderr.
18762 Output locations in a more GNUtically correct way.
18763 Fix a couple of Englishos.
18764 Adjust @group/@end group pairs.
18766 2001-11-12 Akim Demaille <akim@epita.fr>
18768 %expect was not functioning at all.
18770 * src/conflicts.c (expected_conflicts): Set to -1.
18771 (conflict_report): Use ngettext.
18772 (conflicts_print): Check %expect and make its violation an error.
18773 * doc/bison.texinfo (Expect Decl): Adjust.
18774 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18775 * tests/regression.at (%expect not enough, %expect right)
18776 (%expect too much): New.
18778 2001-11-12 Akim Demaille <akim@epita.fr>
18780 * tests/regression.at (Conflicts): Rename as...
18781 (Unresolved SR Conflicts): this.
18782 (Solved SR Conflicts): New.
18784 2001-11-12 Akim Demaille <akim@epita.fr>
18786 * src/reduce.c (print_results): Rename as...
18787 (reduce_output): This.
18788 Output to OUT, passed as argument, instead of output_obstack.
18789 (dump_grammar): Likewise.
18790 (reduce_free): New.
18792 (reduce_grammar): No longer call reduce_output, since...
18793 * src/print.c (print_results): do it.
18794 * src/main.c (main): Call reduce_free;
18796 2001-11-12 Akim Demaille <akim@epita.fr>
18798 * src/conflicts.c (print_reductions): Accept OUT as argument.
18799 Output to it, not to output_obstack.
18800 * src/print.c (print_actions): Adjust.
18802 2001-11-12 Akim Demaille <akim@epita.fr>
18804 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18805 the result instead of using...
18806 (src_total, rrc_total, src_count, rrc_count): Remove.
18807 (any_conflicts): Remove.
18808 (print_conflicts): Split into...
18809 (conflicts_print, conflicts_output): New.
18810 * src/conflicts.h: Adjust.
18811 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18812 * src/print.c (print_grammar): Issue `\n' between two rules.
18813 * tests/regression.at (Conflicts): New.
18814 Reported by Tom Lane.
18816 2001-11-12 Akim Demaille <akim@epita.fr>
18818 * tests/regression.at (Invalid input): Remove, duplicate with
18819 ``Invalid input: 1''.
18821 2001-11-12 Akim Demaille <akim@epita.fr>
18823 * tests/torture.at (AT_DATA_STACK_TORTURE)
18824 (Exploding the Stack Size with Alloca)
18825 (Exploding the Stack Size with Malloc): New.
18827 2001-11-12 Akim Demaille <akim@epita.fr>
18829 * src/bison.simple (YYSTACK_REALLOC): New.
18830 (yyparse) [!yyoverflow]: Use it and free the old stack.
18831 Reported by Per Allansson.
18833 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18835 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18836 define CPP macro, which substitute YYSTYPE by yystype.
18837 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18838 with yyltype/YYLTYPE. This allows inclusion of the generated
18839 header within the parser if the compiler, such as GGC, accepts
18840 multiple equivalent #defines.
18843 2001-11-05 Akim Demaille <akim@epita.fr>
18845 * src/reader.c (symbols_output): New, extracted from...
18846 (packsymbols): here.
18849 2001-11-05 Akim Demaille <akim@epita.fr>
18851 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18853 2001-11-05 Akim Demaille <akim@epita.fr>
18855 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18858 2001-11-05 Akim Demaille <akim@epita.fr>
18860 * src/options.h (struct option_table_struct): set_flags is void*.
18861 * src/options.c (longopts): Support `--output' and `%output'.
18863 * src/lex.h (tok_setopt): Remove, replaced with...
18864 (tok_intopt, tok_stropt): these new guys.
18865 * src/lex.c (getopt.h): Not needed.
18866 (token_buffer, unlexed_token_buffer): Not const.
18867 (percent_table): Promote `-' over `_' in directive names.
18868 Active `%name-prefix', `file-prefix', and `output'.
18869 (parse_percent_token): Accept possible arguments to directives.
18870 Promote `-' over `_' in directive names.
18872 2001-11-04 Akim Demaille <akim@epita.fr>
18874 * doc/bison.texinfo (Decl Summary): Split the list into
18875 `directives for grammars' and `directives for bison'.
18877 Add description of `%name-prefix', `file-prefix', and `output'.
18878 Promote `-' over `_' in directive names.
18879 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18880 Simplify the description of `--name-prefix'.
18881 Promote `-' over `_' in directive names.
18882 Promote `--output' over `--output-file'.
18883 Fix the description of `--defines'.
18884 * tests/output.at: Exercise %file-prefix and %output.
18886 2001-11-02 Akim Demaille <akim@epita.fr>
18888 * doc/refcard.tex: Update.
18890 2001-11-02 Akim Demaille <akim@epita.fr>
18892 * src/symtab.h (SUNDEF): New.
18893 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18894 stand for `uninitialized', instead of 0.
18895 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18896 * src/lex.c (lex): Adjust.
18898 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18900 Let yylex return it instead of a plain 0.
18901 Reported by Dick Streefland.
18903 2001-11-02 Akim Demaille <akim@epita.fr>
18905 * tests/regression.at (Mixing %token styles): New test.
18907 2001-11-02 Akim Demaille <akim@epita.fr>
18909 * src/reader.c (parse_thong_decl): Formatting changes.
18910 (token_translations_init): New, extracted from...
18911 (packsymbols): Here.
18914 2001-11-01 Akim Demaille <akim@epita.fr>
18916 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18917 Check that `9foo.y' produces correct cpp guards.
18918 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18922 2001-11-01 Akim Demaille <akim@epita.fr>
18924 * tests/regression.at (Invalid input: 2): New.
18925 * src/lex.c (unlexed_token_buffer): New.
18926 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18930 2001-11-01 Akim Demaille <akim@epita.fr>
18932 * tests/calc.at: Catch up with 1.30.
18933 * configure.in: Bump to 1.49a.
18934 Adjust to newer Autotest.
18936 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
18938 * src/conflicts.c: Move global variables rrc_total and src_total ...
18939 (print_conflicts): here.
18940 * src/output.c (output): Free global variable user_toknums.
18941 * src/lex.c (token_obstack): Become static.
18943 2001-10-18 Akim Demaille <akim@epita.fr>
18945 * tests/atlocal.in (GCC): Add.
18946 * tests/calc.at: s/m4_match/m4_bmatch/.
18947 s/m4_patsubst/m4_bpatsubst/.
18948 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
18949 * configure.in: AC_SUBST(GCC).
18951 2001-10-14 Marc Autret <autret_m@epita.fr>
18953 * src/options.c (create_long_option_table): Fix.
18955 2001-10-10 Akim Demaille <akim@epita.fr>
18957 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
18959 2001-10-04 Akim Demaille <akim@epita.fr>
18961 * src/reader.c (parse_union_decl): Push the caracters in
18962 union_obstack, not attrs_obstack.
18964 2001-10-04 Akim Demaille <akim@epita.fr>
18966 Merge in the branch 1.29.
18968 * src/reader.c (packsymbols): Use a temporary obstack for
18969 `%%tokendef', since output_stack is already used elsewhere.
18971 2001-10-02 Akim Demaille <akim@epita.fr>
18975 2001-10-02 Akim Demaille <akim@epita.fr>
18979 2001-10-02 Akim Demaille <akim@epita.fr>
18981 * tests/regression.at (Invalid CPP headers): New.
18982 From Alexander Belopolsky.
18983 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
18985 2001-10-02 Akim Demaille <akim@epita.fr>
18987 * tests/regression.at (Invalid input): New.
18988 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
18991 2001-10-02 Akim Demaille <akim@epita.fr>
18993 * tests/calc.at: Now that --debug works, the tests must be adjusted.
18995 2001-10-02 Akim Demaille <akim@epita.fr>
18997 * src/output.c (output_parser): Assert `skeleton'.
18998 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19002 2001-10-01 Marc Autret <autret_m@epita.fr>
19004 * src/lex.h: Echo modifications.
19005 * src/lex.c (unlex): Parameter is now token_t.
19008 2001-10-01 Marc Autret <autret_m@epita.fr>
19010 * src/main.c: Include lex.h.
19013 2001-09-29 Akim Demaille <akim@epita.fr>
19015 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19017 2001-09-28 Akim Demaille <akim@epita.fr>
19019 * tests/testsuite.at: Update to newer Autotest.
19020 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19022 2001-09-27 Akim Demaille <akim@epita.fr>
19024 Position independent wrapper.
19026 * tests/bison: Remove.
19027 * tests/bison.in: New.
19028 * configure.in: Adjust.
19030 2001-09-27 Paul Eggert <eggert@twinsun.com>
19032 Port quotearg fixes from tar 1.13.24.
19034 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19036 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19037 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19039 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19040 * m4/mbrtowc.m4: New file.
19041 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19042 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19044 2001-09-27 Akim Demaille <akim@epita.fr>
19048 2001-09-27 Akim Demaille <akim@epita.fr>
19052 2001-09-25 Akim Demaille <akim@epita.fr>
19054 * src/system.h: Include `xalloc.h'.
19055 Remove it from the C files.
19056 * src/files.c (output_files): Free the obstacks.
19057 * src/lex.c (init_lex): Rename as...
19060 * src/main.c (main): Use it.
19062 2001-09-24 Marc Autret <autret_m@epita.fr>
19064 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19065 to output informations in fout (FILE*).
19066 (open_graph, close_graph): Likewise.
19067 (output_graph, output_edge, output_node): Likewise.
19068 * src/vcg.h: Update function prototypes.
19069 * src/print_graph.c (print_graph): Open output graph file.
19070 (print_actions): Adjust.
19071 * src/files.h: Remove extern declaration.
19072 * src/files.c: Remove graph_obstack declaration.
19073 (open_files): Remove graph_obstack initialization.
19074 (output_files): Remove graph_obstack saving.
19076 2001-09-24 Marc Autret <autret_m@epita.fr>
19078 * src/files.c (compute_output_file_names): Fix.
19080 2001-09-24 Marc Autret <autret_m@epita.fr>,
19081 Akim Demaille <akim@epita.fr>
19083 * src/reader.c (reader): Remove call to free_symtab ().
19084 * src/main.c (main): Call it here.
19086 * src/conflicts.c (initialize_conflicts): Rename as...
19087 (solve_conflicts): this.
19088 * src/print.c (print_core, print_actions, print_state)
19089 (print_grammar): Dump to a file instead a `output_obstack'.
19090 (print_results): Dump `output_obstack', and then proceed with the
19092 * src/files.c (compute_output_file_names, close_files): New.
19093 (output_files): Adjust.
19094 * src/main.c (main): Adjust.
19096 2001-09-23 Marc Autret <autret_m@epita.fr>
19098 * src/files.c (compute_header_macro): Computes header macro name
19099 from spec_defines_file when given.
19101 2001-09-23 Marc Autret <autret_m@epita.fr>
19103 * src/files.c (output_files): Add default extensions.
19105 2001-09-22 Akim Demaille <akim@epita.fr>
19107 * src/conflicts.c (finalize_conflicts): Rename as...
19108 (free_conflicts): this.
19110 2001-09-22 Akim Demaille <akim@epita.fr>
19112 * src/gram.c (gram_free): Rename back as...
19114 (output_token_translations): Free `token_translations'.
19115 * src/symtab.c (free_symtab): Free the tag field.
19117 2001-09-22 Akim Demaille <akim@epita.fr>
19119 Remove `translations' as it is always set to true.
19121 * src/gram.h: Adjust.
19122 * src/reader.c (packsymbols, parse_token_decl): Adjust
19123 * src/print.c (print_grammar): Adjust.
19124 * src/output.c (output_token_translations): Adjust.
19125 * src/lex.c (lex): Adjust.
19126 * src/gram.c: Be sure the set pointers to NULL.
19127 (dummy): Rename as...
19130 2001-09-22 Akim Demaille <akim@epita.fr>
19132 * configure.in: Invoke AM_LIB_DMALLOC.
19133 * src/system.h: Use dmalloc.
19134 * src/LR0.c: Be sure to have pointers initialized to NULL.
19135 (allocate_itemsets): Allocate kernel_items only if needed.
19137 2001-09-22 Akim Demaille <akim@epita.fr>
19139 * configure.in: Bump to 1.29b.
19140 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19141 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19142 need xmalloc.c in calc.y.
19145 2001-09-21 Akim Demaille <akim@epita.fr>
19148 * Makefile.maint, config/config.guess, config/config.sub,
19149 * config/missing: Update from masters.
19150 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19152 * configure.in (ALL_LINGUAS): Add `tr'.
19154 2001-09-21 Akim Demaille <akim@epita.fr>
19156 * tests/Makefile.am (package.m4): Move to...
19157 ($(srcdir)/$(TESTSUITE)): here.
19159 2001-09-20 Akim Demaille <akim@epita.fr>
19161 * src/complain.c: No longer try to be standalone: use system.h.
19162 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19163 * src/complain.h: Likewise.
19164 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19165 Remove the unused variable `n'.
19166 From Albert Chin-A-Young.
19168 2001-09-18 Marc Autret <autret_m@epita.fr>
19170 * doc/bison.1: Update.
19171 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19173 (Option Cross Key): Update.
19176 2001-09-18 Marc Autret <autret_m@epita.fr>
19178 * tests/regression.at: New test (comment in %union).
19180 2001-09-18 Marc Autret <autret_m@epita.fr>
19182 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19184 Reported by Keith Browne.
19186 2001-09-18 Marc Autret <autret_m@epita.fr>
19188 * tests/output.at: Add tests for --defines and --graph.
19190 2001-09-18 Marc Autret <autret_m@epita.fr>
19192 * tests/output.at: Removes tests of %{header,src}_extension features.
19194 2001-09-18 Akim Demaille <akim@epita.fr>
19196 * tests/Makefile.am (package.m4): New.
19197 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19198 (_AT_CHECK_CALC_ERROR): Likewise.
19199 Factor the `, ' part of verbose error messages.
19201 2001-09-18 Marc Autret <autret_m@epita.fr>
19203 * src/getargs.c (longopts): Declare --defines and --graph as options
19204 with optional arguments.
19205 * src/files.h: Add extern declarations.
19206 * src/files.c (spec_graph_file, spec_defines_file): New.
19207 (output_files): Update.
19208 Remove CPP-outed code.
19210 2001-09-18 Marc Autret <autret_m@epita.fr>
19212 Turn off %{source,header}_extension feature.
19214 * src/files.c (compute_exts_from_gf): Update.
19215 (compute_exts_from_src): Update.
19216 (output_files): CPP-out useless code.
19217 * src/files.h: Remove {header,source}_extension extern declarations.
19218 * src/reader.c (parse_dquoted_param): CPP-out.
19219 (parse_header_extension_decl): Remove.
19220 (parse_source_extension_decl): Remove.
19221 (read_declarations): Remove cases tok_{hdrext,srcext}.
19222 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19223 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19225 2001-09-10 Akim Demaille <akim@epita.fr>
19227 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19228 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19229 (AT_CHECK_OUTPUT): this.
19230 Merely check ls' exit status, its output is useless.
19232 2001-09-10 Akim Demaille <akim@epita.fr>
19234 * tests/calc.at: Use m4_match.
19235 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19237 2001-09-10 Marc Autret <autret_m@epita.fr>,
19238 Akim Demaille <akim@epita.fr>
19240 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19242 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19244 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19245 * src/lex.h: Adjust prototype.
19246 (token_t): Add `tok_undef'.
19247 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19248 (parse_percent_token): Now returns token_t.
19249 Add default statement in switch.
19250 (lex): Separate `c' as an input variable, from the token_t result
19252 (unlexed): Is a token_t.
19254 2001-09-10 Akim Demaille <akim@epita.fr>
19256 * configure.in: Bump to 1.29a.
19258 2001-09-07 Akim Demaille <akim@epita.fr>
19262 2001-08-30 Akim Demaille <akim@epita.fr>
19264 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19265 * m4/atconfig.m4: Remove.
19266 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19267 * tests/bison: New.
19268 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19269 m4_if, m4_patsubst, and m4_regexp.
19270 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19271 `input' file instead of echo.
19273 2001-08-29 Akim Demaille <akim@epita.fr>
19277 2001-08-29 Akim Demaille <akim@epita.fr>
19281 2001-08-29 Paul Eggert <eggert@twinsun.com>
19283 * src/bison.simple (yyparse): Don't take the address of an
19284 item before the start of an array, as that doesn't conform to
19287 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19289 * doc/bison.texinfo (Location Tracking Calc): New node.
19291 2001-08-29 Paul Eggert <eggert@twinsun.com>
19293 * src/output.c (output): Do not define const, as this now
19294 causes more problems than it cures.
19296 2001-08-29 Akim Demaille <akim@epita.fr>
19298 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19300 Be sure to tag the `detailmenu'.
19302 2001-08-29 Akim Demaille <akim@epita.fr>
19304 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19305 download in a tmp dir.
19307 2001-08-28 Marc Autret <autret_m@epita.fr>
19309 * config/depcomp: New file.
19311 2001-08-28 Marc Autret <autret_m@epita.fr>
19313 * doc/bison.1 (mandoc): Adjust.
19314 From Juan Manuel Guerrero.
19316 2001-08-28 Marc Autret <autret_m@epita.fr>
19318 * src/print_graph.c (print_state): Fix.
19320 2001-08-27 Marc Autret <autret_m@epita.fr>
19322 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19324 Echo modifications to the functions prototypes.
19325 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19327 2001-08-27 Marc Autret <autret_m@epita.fr>
19329 * src/vcg.c: Include `xalloc.h'.
19330 (add_colorentry): New.
19331 (add_classname): New.
19332 (add_infoname): New.
19333 * src/vcg.h: Add new prototypes.
19335 2001-08-27 Akim Demaille <akim@epita.fr>
19337 * Makefile.maint: Sync. again with CVS Autoconf.
19339 2001-08-27 Akim Demaille <akim@epita.fr>
19341 * Makefile.maint: Formatting changes.
19342 (po-update, cvs-update, update): New targets.
19345 2001-08-27 Akim Demaille <akim@epita.fr>
19347 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19348 * Makefile.maint: Sync. with CVS Autoconf.
19350 2001-08-27 Marc Autret <autret_m@epita.fr>
19352 * src/vcg.h (struct infoname_s): New.
19353 (struct colorentry_s): New.
19354 (graph_s): New fields {vertical,horizontal}_order in structure.
19355 Add `infoname' field.
19356 Add `colorentry' field;
19357 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19358 (G_HORIZONTAL_ORDER): New.
19360 (G_COLORENTRY): New.
19361 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19362 Add output of `infoname'.
19363 Add output of `colorentry'.
19365 2001-08-27 Marc Autret <autret_m@epita.fr>
19367 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19368 This one shadowed a global parameter.
19370 2001-08-24 Marc Autret <autret_m@epita.fr>
19372 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19373 instead of `unsigned'.
19374 (print_state): Do not call obstack_object_size () in obstack_grow ()
19375 to avoid macro variables shadowing.
19377 2001-08-23 Marc Autret <autret_m@epita.fr>
19379 * src/lex.c (percent_table): Typo: s/naem/name/.
19381 Normalize new options declarations.
19383 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19385 * tests/suite.at: Exercise %header_extension and %source_extension.
19387 2001-08-16 Marc Autret <autret_m@epita.fr>
19389 * src/reader.c (parse_dquoted_param): New.
19390 (parse_header_extension_decl): Use it.
19391 (parse_source_extension_decl): Likewise.
19393 2001-08-16 Marc Autret <autret_m@epita.fr>
19395 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19396 (get_xxxx_str): Use assert () instead of complain ().
19397 Remove return invokations in default cases.
19398 (get_decision_str): Modify default behaviour. Remove second argument.
19399 Echo modifications on calls.
19400 (output_graph): Fix.
19402 2001-08-16 Marc Autret <autret_m@epita.fr>
19404 * src/getargs.c (usage): Update with ``-g, --graph''.
19406 2001-08-16 Marc Autret <autret_m@epita.fr>
19408 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19409 (Option Cross Key): Likewise.
19410 * doc/bison.1: Update.
19412 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19414 * src/output.c (output_master_parser): Don't finish action_obstack.
19415 (output_parser): Don't care about the muscle action, here.
19416 (prepare): Copy the action_obstack in the action muscle.
19417 (output): Free action_obstack.
19419 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19421 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19422 will contain `%union' declaration.
19423 (parse_union_decl): Delete #line directive output.
19424 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19425 informations about %union.
19426 (parse_union_decl): Copy the union_obstack in the muscle stype.
19427 * src/bison.simple: Add new #line directive.
19428 Add typdef %%stype YYSTYPE.
19430 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19432 * src/bison.simple: Add new `#line' directive.
19434 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19436 * src/bison.simple: New `#line' directive.
19437 * src/output.c (output_parser): Support new dynamic muscle input_line.
19439 2001-09-22 Marc Autret <autret_m@epita.fr>
19441 * src/output.c (output_master_parser): New.
19442 (output_parser): Be more re-entrant.
19444 2001-09-21 Marc Autret <autret_m@epita.fr>
19446 * src/reader.c (copy_definition, parse_union_decl): Update and use
19448 (copy_action): Likewise.
19449 Use obstack_1grow ().
19450 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19452 2001-09-21 Marc Autret <autret_m@epita.fr>
19454 * src/options.c (option_table): Adjust.
19455 * src/lex.c (parse_percent_token): Fix.
19457 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19459 * src/options.c (symtab.h): Include it, need by lex.h.
19461 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19463 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19464 is now an option_table_struct*.
19465 (option_strcmp): New function option_strcmp.
19466 (parse_percent_token): Call option_strcmp.
19467 * src/getargs.c (xalloc.h, options.h): Include it.
19468 (getargs): Call create_long_option_table.
19469 (getargs): Free longopts at the end of the function.
19470 (shortopts): Move in options.c.
19471 * src/options.c (create_long_option_table): New function. Convert
19472 information from option_table to option structure.
19473 * src/reader.c (options.h): Include it.
19475 * src/Makefile.am: Adjust.
19476 * src/options.c (option_table): Create from longopts and percent_table.
19477 * src/getargs.c (longopts): Delete.
19478 * src/lex.c (struct percent_table_struct): Delete.
19479 (percent_table): Delete.
19480 (options.h): Include it.
19481 * src/options.c: Create.
19482 * src/options.h: Create.
19483 Declare enum opt_access_e.
19484 Define struct option_table_struct.
19486 2001-09-20 Marc Autret <autret_m@epita.fr>
19488 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19491 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19493 * src/bison.simple: s/%%filename/%%skeleton.
19494 * src/muscle_tab.c (getargs.h): Include it.
19495 (muscle_init): Insert new muscle skeleton.
19497 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19499 * src/output.c (output_parser): Delete unused variable actions_dumped.
19501 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19503 * src/output.c (output): Delete call to reader_output_yylsp.
19504 * src/reader.c (reader): Likewise.
19505 * src/reader.h: Delete declaration of reader_output_yylsp.
19507 2001-09-02 Marc Autret <autret_m@epita.fr>
19509 * src/reader.c: Include muscle_tab.h.
19510 (parse_union_decl): Update.
19511 (parse_macro_decl): Rename parse_muscle_decl.
19512 Update to use renamed functions and variable.
19513 (read_declarations, copy_action, read_additionnal_code, : Updated
19514 with correct variables and functions names.
19515 (packsymbols, reader): Likewise.
19517 * src/reader.h (muscle_obstack): Extern declaration update.
19519 * src/output.c: Include muscle_tab.h
19520 In all functions using macro_insert, change by using muscle_insert ().
19521 (macro_obstack): Rename muscle_obstack.
19522 Echo modifications in the whole file.
19523 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19524 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19525 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19527 * src/muscle_tab.h: Update double inclusion macros.
19528 (macro_entry_s): Rename muscle_entry_s.
19531 * src/muscle_tab.c: Include muscle_tab.h.
19532 Rename macro_tabble to muscle_table.
19533 (mhash1, mhash2, mcmp): Use muscle_entry.
19534 (macro_init): Rename muscle_init. Update.
19535 (macro_insert): Rename muscle_insert. Update.
19536 (macro_find): Rename muscle_find. Update.
19538 * src/main.c: Include muscle_tab.h.
19539 (main): Call muscle_init ().
19540 * src/Makefile.am (bison_SOURCES): Echo modifications.
19542 2001-09-02 Marc Autret <autret_m@epita.fr>
19544 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19546 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19548 2001-09-02 Marc Autret <autret_m@epita.fr>
19550 * src/macrotab.c, src/macrotab.h: Remove.
19552 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19554 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19557 2001-09-01 Marc Autret <autret_m@epita.fr>
19559 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19560 to an explicit value to activate the feature. We do it here.
19562 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19564 * src/output.c (prepare): Delete the `filename' muscule insertion.
19565 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19566 (parse_union_decl): Likewise.
19567 * src/macrotab.c (macro_init): Initialize filename by infile.
19569 2001-08-31 Marc Autret <autret_m@epita.fr>
19571 * src/bison.simple (YYLSP_NEEDED): New definition.
19572 * src/output.c (prepare): Add macro insertion of `locations_flag'
19574 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19576 * src/output.c (prepare): Delete insertion of previous muscles,
19577 and insert the `prefix' muscles.
19578 * src/macrotab.c (macro_init): Likewise.
19579 (macro_init): Initialization prefix directive by `yy'.
19580 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19581 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19582 yylval, yydebug, yyerror, yynerrs and yyparse.
19583 New directive `#define' to substitute yydebug, ... with option
19586 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19588 * src/main.c (main): Standardize.
19589 * src/output.c (output_table_data, output_parser): Likewise.
19590 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19592 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19594 * src/reader.c (read_additionnal_code): Rename %%user_code to
19596 * src/output.c (output): Rename %%declarations to %%prologue.
19597 * src/bison.simple: Echo modifications.
19599 2001-08-31 Marc Autret <autret_m@epita.fr>
19601 * src/reader.c (readgram): CleanUp.
19602 (output_token_defines): Likewise.
19603 (packsymbols): Likewise.
19604 (reader): Likewise.
19605 * src/output.c (output): CPP-out useless code.
19607 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19609 * src/reader.c (reader): Delete obsolete call to function
19610 output_trailers and output_headers.
19611 * src/output.h: Remove obsolete functions prototypes of output_headers
19612 and output_trailers.
19614 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19616 * src/main.c: Include macrotab.h.
19617 * src/macrotab.h (macro_entry_s): Constify fields.
19618 Adjust functions prototypes.
19619 * src/macrotab.c (macro_insert): Constify key and value.
19620 (macro_find): Constify key.
19621 (macro_insert): Include 'xalloc.h'
19622 (macro_insert): Use XMALLOC.
19623 (macro_find): Constify return value.
19624 * src/output.c (output_table_data): Rename table to table_data.
19625 (output_parser): Constify macro_key, macro_value.
19627 2001-08-30 Marc Autret <autret_m@epita.fr>
19629 * src/reader.c (parse_skel_decl): New.
19630 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19631 * src/lex.h (token_t): New token `tok_skel'.
19632 * src/lex.c (percent_table): Add skeleton option entry.
19635 2001-08-29 Marc Autret <autret_m@epita.fr>
19637 * src/bison.simple: Add %%user_code directive at the end.
19638 * src/reader.c (read_additionnal_code): New.
19640 * src/output.c (output_program): Remove.
19643 2001-08-28 Marc Autret <autret_m@epita.fr>
19645 * src/output.c (output_actions): Clean up.
19646 (output_gram): CPP-out useless code.
19647 * src/reader.c (reader): Clean up, CPP-out useless code.
19649 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19651 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19653 * src/bison.simple: Add `%%definitions'.
19655 2001-08-28 Marc Autret <autret_m@epita.fr>
19657 * config/depcomp: New file.
19659 2001-08-27 Paul Eggert <eggert@twinsun.com>
19661 * src/bison.simple (yyparse): Don't take the address of an
19662 item before the start of an array, as that doesn't conform to
19665 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19667 * src/output.c (output): Remove the initialization of the macro
19668 obstack. It was done too late here.
19670 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19672 (reader): Initialize the macro obstack here, since we need it to grow
19673 '%define' directives.
19675 * src/reader.h: Declare the macro obstack as extern.
19677 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19679 * src/output.c (output_parser): Fix. Store single '%' characters in
19680 the output obstack instead of throwing them away.
19682 2001-08-27 Akim Demaille <akim@epita.fr>
19684 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19686 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19688 * lib/Makefile.am: Adjust.
19690 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19692 * src/bison.simple: Update and add '%%' directives.
19694 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19696 * src/reader.c (reader): Remove calls to 'output_headers' and
19697 'output_trailers'. Remove some C output.
19698 (readgram): Disable a piece of code that was writing a default
19699 definition for 'YYSTYPE'.
19700 (reader_output_yylsp): Remove.
19701 (packsymbols): Output token defintions to a macro.
19702 (copy_definition): Disable C output.
19704 * src/reader.c (parse_macro_decl): New function used to parse macro
19706 (copy_string2): Put the body of copy_string into this new function.
19707 Add a parameter to let the caller choose whether he wants to copy the
19708 string delimiters or not.
19709 (copy_string): Be a simple call to copy_string2 with the last argument
19711 (read_declarations): Add case for macro definition.
19712 (copy_identifier): New.
19713 (parse_macro_decl): Read macro identifiers using copy_identifier
19716 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19718 * src/output.c (prepare): Add prefixed names.
19719 (output_parser): Output semantic actions.
19720 (output_parser): Fix bug on '%%line' directives.
19722 * src/output.c (output_headers): Remove. The C code printed by this
19723 function should now be in the skeletons.
19724 (output_trailers): Remove.
19725 (output): Disable call to 'reader_output_yylsp'.
19726 (output_rule_data): Do not output tables to the table obstack.
19728 * src/output.c: Remove some C dedicated output.
19729 Improve the use of macro and output obstacks.
19730 (output_defines): Remove.
19732 * src/output.c (output_token_translations): Associate 'translate'
19733 table with a macro. No output to the table obstack.
19734 (output_gram): Same for 'rhs' and 'prhs'.
19735 (output_stos): Same for 'stos'.
19736 (output_rule_data): Same for 'r1' and 'r2'.
19737 (token_actions): Same for 'defact'.
19738 (goto_actions): Same for 'defgoto'.
19739 (output_base): Same for 'pact' and 'pgoto'.
19740 (output_table): Same for 'table'.
19741 (output_check): Same for 'check'.
19743 * src/output.c (output_table_data): New function.
19744 (output_short_table): Remove.
19745 (output_short_or_char_table): Remove.
19747 * src/output.c (output_parser): Replace most of the skeleton copy code
19748 with something new. Skeletons are now processed character by character
19749 rather than line by line, and Bison looks for '%%' macros. This is the
19750 first step in making Bison's output process (a lot) more flexible.
19751 (output_parser): Use the macro table.
19753 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19755 * src/main.c (main): Initialize the macro table.
19757 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19759 * src/lex.c (percent_table): Add tok_define.
19760 * src/lex.h: Add tok_define.
19762 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19764 * src/macrotab.c: New file.
19765 * src/macrotab.h: New file.
19766 * src/Makefile.am: Update.
19768 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19770 * lib/hash.c: New file.
19771 * lib/hash.h: New file.
19772 * lib/Makefile.am: Update.
19774 2001-08-15 Akim Demaille <akim@epita.fr>
19778 2001-08-15 Marc Autret <autret_m@epita.fr>
19780 * src/reader.c (readgram): Indent output macro YYSTYPE.
19781 (packsymbols): Likewise.
19782 (output_token_defines): Likewise.
19783 * src/files.c: Standardize.
19784 (compute_header_macro): New.
19785 (defines_obstack_save): New. Use compute_header_macro.
19786 (output_files): Update. Use defines_obstack_save.
19788 2001-08-15 Akim Demaille <akim@epita.fr>
19790 * doc/bison.texinfo (Table of Symbols): Document
19791 YYSTACK_USE_ALLOCA.
19793 2001-08-15 Akim Demaille <akim@epita.fr>
19795 * missing: Update from CVS Automake.
19796 * config/config.guess, config/config.sub, config/texinfo.tex:
19797 Update from gnu.org.
19799 2001-08-15 Akim Demaille <akim@epita.fr>
19801 * Makefile.maint: Sync with CVS Autoconf.
19803 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19805 * doc/bison.texinfo: Include GNU Free Documentation License from
19807 * doc/fdl.texi: Add to package.
19809 2001-08-14 Marc Autret <autret_m@epita.fr>
19811 Turn on %{source,header}_extension features.
19813 * src/lex.c (percent_table): Un-CPP out header_extension and
19815 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19816 (compute_exts_from_src): Remove conditions. It restores priorities
19819 2001-08-14 Marc Autret <autret_m@epita.fr>
19821 * src/files.c (compute_base_names): Add extensions computing when
19822 `--file-prefix' used.
19823 Standardize function calls.
19825 2001-08-13 Marc Autret <autret_m@epita.fr>
19827 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19828 defining it (defined but null disables alloca).
19830 2001-08-13 Marc Autret <autret_m@epita.fr>
19832 * src/bison.simple (_yy_memcpy): CPP reformat.
19834 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19836 * tests/atconfig.in (CPPFLAGS): Fix.
19838 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19840 * doc/bison.texinfo: Include GNU General Public License from
19842 * doc/gpl.texi: Add to package.
19844 2001-08-10 Marc Autret <autret_m@epita.fr>
19846 * src/print_graph.h: Fix.
19847 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19849 2001-08-10 Akim Demaille <akim@epita.fr>
19851 * src/system.h: Provide default declarations for stpcpy, strndup,
19854 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19856 * doc/bison.texinfo (Locations): Update @$ stuff.
19858 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19860 * src/bison.simple (YYLLOC_DEFAULT): Update.
19863 2001-08-08 Marc Autret <autret_m@epita.fr>
19865 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19866 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19867 Reported by Fabrice Bauzac.
19869 2001-08-08 Marc Autret <autret_m@epita.fr>
19871 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19872 * src/vcg.c (output_node): Fix.
19873 * src/vcg.h: Cleanup.
19874 * src/print_graph.c: Add comments.
19875 (node_output_size): New global variable. Simplify the formatting of
19876 the VCG graph output.
19877 (print_actions): Unused code is now used. It notifies the final state
19878 and no action states in the VCG graph. It also give the reduce actions.
19879 The `shift and goto' edges are red and the `go to state' edges are
19881 Get the current node name and node_obstack by argument.
19882 (node_obstack): New variable.
19883 (print_state): Manage node_obstack.
19884 (print_core): Use node_obstack given by argument.
19885 A node is not only computed here but in print_actions also.
19886 (print_graph): CPP out useless code instead of commenting it.
19888 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19890 * tests/atconfig.in (CPPFLAGS): Fix.
19892 2001-08-07 Akim Demaille <akim@epita.fr>
19894 * src/print_graph.c (quote): New.
19895 (print_core): Use it.
19897 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19899 * src/vcg.c (complain.h): Include it.
19900 Unepitaize `return' invocations.
19901 [NDEBUG] (main): Remove.
19902 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19903 * src/files.c (open_files): Initialize graph_obstack.
19904 * src/print_graph.c (print_actions): CPP out useless code.
19905 (print_core): Don't output the last `\n' in labels.
19907 * src/files.c (output_files): Output the VCG file.
19908 * src/main.c (main): Invoke print_graph ();
19910 2001-08-06 Marc Autret <autret_m@epita.fr>
19912 Automaton VCG graph output.
19913 Using option ``-g'' or long option ``--graph'', you can generate
19914 a gram_filename.vcg file containing a VCG description of the LALR (1)
19915 automaton of your grammar.
19917 * src/main.c: Call to print_graph() function.
19918 * src/getargs.h: Update.
19919 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19920 (graph_flag): New flag.
19921 (longopts): Update.
19922 (getargs): Add case `g'.
19923 * src/files.c (graph_obstack): New obstack struct.
19924 (open_files): Initialize new obstack.
19925 (output_files): Saves graph_obstack if required.
19926 * src/files.h (graph_obstack): New extern declaration.
19927 * src/Makefile.am: Add new source files.
19929 2001-08-06 Marc Autret <autret_m@epita.fr>
19931 * src/print_graph.c, src/print_graph.h (graph): New.
19932 * src/vcg.h: New file.
19933 * src/vcg.c: New file, VCG graph handling.
19935 2001-08-06 Marc Autret <autret_m@epita.fr>
19937 Add of %source_extension and %header_extension which specify
19938 the source or/and the header output file extension.
19940 * src/files.c (compute_base_names): Remove initialisation of
19941 src_extension and header_extension.
19942 (compute_exts_from_gf): Update.
19943 (compute_exts_from_src): Update.
19944 (output_files): Update.
19945 * src/reader.c (parse_header_extension_decl): New.
19946 (parse_source_extension_decl): New.
19947 (read_declarations): New case statements for the new tokens.
19948 * src/lex.c (percent_table): Add entries for %source_extension
19949 and %header_extension.
19950 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
19952 2001-08-06 Marc Autret <autret_m@epita.fr>
19954 * configure.in: Bump to 1.28c.
19955 * doc/bison.texinfo: Texinfo thingies.
19957 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
19959 * tests/atconfig.in (CPPFLAGS): Add.
19960 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
19962 2001-08-03 Akim Demaille <akim@epita.fr>
19966 2001-08-03 Akim Demaille <akim@epita.fr>
19968 * tests/Makefile.am (check-local): Ship testsuite.
19969 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
19970 Include `string.h'.
19972 2001-08-03 Akim Demaille <akim@epita.fr>
19974 * configure.in: Try using -Wformat when compiling.
19976 2001-08-03 Akim Demaille <akim@epita.fr>
19978 * configure.in: Bump to 1.28b.
19980 2001-08-03 Akim Demaille <akim@epita.fr>
19982 * src/complain.c: Adjust strerror_r portability issues.
19984 2001-08-03 Akim Demaille <akim@epita.fr>
19988 2001-08-03 Akim Demaille <akim@epita.fr>
19990 * src/getargs.c, src/getarg.h (skeleton)): Constify.
19991 * src/lex.c (literalchar): Avoid name clashes on `buf'.
19992 * src/getargs.c: Include complain.h.
19993 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
19994 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
19996 2001-08-03 Akim Demaille <akim@epita.fr>
19998 * src/reader.c (readgram): Display hidden chars in error messages.
20000 2001-08-03 Akim Demaille <akim@epita.fr>
20002 Update to gettext 0.10.39.
20004 2001-08-03 Akim Demaille <akim@epita.fr>
20006 * lib/strspn.c: New.
20008 2001-08-01 Marc Autret <autret_m@epita.fr>
20010 * doc/bison.texinfo: Update.
20011 * doc/bison.1 (mandoc): Update.
20012 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20013 * src/files.c: Support output files extensions computing.
20014 (src_extension): New static variable.
20015 (header_extension): New static variable.
20016 (tr): New function.
20017 (get_extension_index): New function, gets the index of an extension
20018 filename in a string.
20019 (compute_exts_from_gf): New function, computes extensions from the
20020 grammar file extension.
20021 (compute_exts_from_src): New functions, computes extensions from the
20022 C source file extension, file given by ``-o'' option.
20023 (compute_base_names): Update.
20024 (output_files): Update.
20026 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20028 * doc/bison.texi: Document @$.
20029 (Locations): New section.
20031 2001-07-18 Akim Demaille <akim@epita.fr>
20033 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20034 * config/prev-version.txt, config/move-if-change: New.
20035 * Makefile.am: Adjust.
20037 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20039 * src/bison.simple (yyparse): Suppress warning `comparaison
20040 between signed and unsigned'.
20042 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20044 * src/getargs.h (raw_flag): Remove.
20045 * src/getargs.c: Die on `-r'/`--raw'.
20046 * src/lex.c (parse_percent_token): Die on `%raw'.
20047 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20048 * tests/calc.at: Suppress test with option `--raw'.
20050 2001-07-14 Akim Demaille <akim@epita.fr>
20053 * configure.in: Require Autoconf 2.50.
20054 Update to gettext 0.10.38.
20056 2001-03-16 Akim Demaille <akim@epita.fr>
20058 * doc/bison.texinfo: ANSIfy the examples.
20060 2001-03-16 Akim Demaille <akim@epita.fr>
20062 * getargs.c (skeleton): New variable.
20063 (longopts): --skeleton is a new option.
20064 (shortopts, getargs): -S is a new option.
20065 * getargs.h: Declare skeleton.
20066 * output.c (output_parser): Use it.
20068 2001-03-16 Akim Demaille <akim@epita.fr>
20070 * m4/strerror_r.m4: New.
20071 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20072 * lib/error.h, lib/error.c: Update.
20074 2001-03-16 Akim Demaille <akim@epita.fr>
20076 * src/getargs.c (longopts): Clean up.
20078 2001-02-21 Akim Demaille <akim@epita.fr>
20080 * src/reader.c (gensym): `gensym_count' is your own.
20081 Use a static buf to create the symbol name, as token_buffer is no
20084 2001-02-08 Akim Demaille <akim@epita.fr>
20086 * src/conflicts.c (conflict_report): Be sure not to append to res
20087 between two calls, which could happen if both first sprintf were
20088 skipped, but not the first cp += strlen.
20090 2001-02-08 Akim Demaille <akim@epita.fr>
20092 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20093 New, from fileutils 4.0.37.
20094 * configure.in: Require Autoconf 2.49c. I took some time before
20095 making this decision. This is the only way out for portability
20096 issues in Bison, it would mean way too much duplicate effort to
20097 import in Bison features implemented in 2.49c since 2.13.
20098 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20100 2001-02-02 Akim Demaille <akim@epita.fr>
20102 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20103 * lib/xalloc.h, lib/xmalloc.c: Update.
20105 2001-01-19 Akim Demaille <akim@epita.fr>
20107 Get rid of the ad hoc handling of token_buffer in the scanner: use
20110 * src/lex.c (token_obstack): New.
20111 (init_lex): Initialize it. No longer call...
20112 (grow_token_buffer): this. Remove it.
20113 Adjust all the places which used it to use the obstack.
20115 2001-01-19 Akim Demaille <akim@epita.fr>
20117 * src/lex.h: Rename all the tokens:
20118 s/\bENDFILE\b/tok_eof/g;
20119 s/\bIDENTIFIER\b/tok_identifier/g;
20121 Let them be enums, not #define, to ease debugging.
20122 Adjust all the code.
20124 2001-01-18 Akim Demaille <akim@epita.fr>
20126 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20127 * src/lex.c (maxtoken, grow_token_buffer): Static.
20129 2001-01-18 Akim Demaille <akim@epita.fr>
20131 Since we now use obstacks, more % directives can be enabled.
20133 * src/lex.c (percent_table): Also accept `%yacc',
20134 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20136 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20137 instead of returning a token.
20138 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20139 * src/reader.c (read_declarations): Adjust.
20140 * src/files.c (open_files): Don't call `compute_base_names', don't
20141 compute `attrsfile' since they depend upon data which might be
20142 *in* the input file now.
20143 (output_files): Do it here.
20144 * src/output.c (output_headers): Document the fact that this patch
20145 introduces a guaranteed SEGV for semantic parsers.
20146 * doc/bison.texinfo: Document them.
20147 * tests/suite.at: Exercise these %options.
20149 2000-12-20 Akim Demaille <akim@epita.fr>
20151 Also handle the output file (--verbose) with obstacks.
20153 * files.c (foutput): Remove.
20154 (output_obstack): New.
20155 Adjust all dependencies.
20156 * src/conflicts.c: Return a string.
20157 * src/system.h (obstack_grow_string): Rename as...
20158 (obstack_sgrow): this. Be ready to work with non literals.
20159 (obstack_fgrow4): New.
20161 2000-12-20 Akim Demaille <akim@epita.fr>
20163 * src/files.c (open_files): Fix the computation of short_base_name
20164 in the case of `-o foo.tab.c'.
20166 2000-12-20 Akim Demaille <akim@epita.fr>
20168 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20169 (copy_dollar): Now that everything uses obstacks, get rid of the
20172 2000-12-20 Akim Demaille <akim@epita.fr>
20174 * src/files.c (open_files): Actually the `.output' file is based
20175 on the short_base_name, not base_name.
20176 * tests/suite.at (Checking output file names): Adjust.
20178 2000-12-20 Akim Demaille <akim@epita.fr>
20180 * src/bison.s1: Remove, we now use directly...
20181 * src/bison.simple: this.
20182 * src/Makefile.am: Use pkgdata instead of data.
20184 2000-12-20 Akim Demaille <akim@epita.fr>
20186 * src/files.c (guard_obstack): New.
20187 (open_files): Initialize it.
20188 (output_files): Dump it...
20189 * src/files.h: Export it.
20190 * src/reader.c (copy_guard): Use it.
20192 2000-12-19 Akim Demaille <akim@epita.fr>
20194 * src/files.c (outfile, defsfile, actfile): Removed as global
20196 (open_files): Don't compute them.
20197 (output_files): Adjust.
20198 (base_name, short_base_name): Be global.
20199 Adjust dependencies.
20201 2000-12-19 Akim Demaille <akim@epita.fr>
20203 * src/files.c (strsuffix): New.
20204 (stringappend): Be just like strcat but allocate.
20205 (base_names): Eve out from open_files.
20206 Try to simplify the rather hairy computation of base_name and
20208 (open_files): Use it.
20209 * tests/suite.at (Checking output file names): New test.
20211 2000-12-19 Akim Demaille <akim@epita.fr>
20213 * src/system.h (obstack_grow_literal_string): Rename as...
20214 (obstack_grow_string): this.
20215 * src/output.c (output_parser): Recognize `%% actions' instead of
20217 * src/bison.s1: s/$/%% actions/.
20218 * src/bison.hairy: Likewise.
20220 2000-12-19 Akim Demaille <akim@epita.fr>
20222 * src/output.c (output_parser): Compute the `#line' lines when
20224 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20225 Suggested by Hans Aberg.
20227 2000-12-19 Akim Demaille <akim@epita.fr>
20229 Let the handling of the skeleton files be local to the procedures
20232 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20234 (fparser, open_extra_files): Remove.
20235 (open_files, output_files): Don't take care of fparser.
20236 * src/files.h: Adjust.
20237 * src/output.c (output_parser): Open and close the file to the
20239 * src/reader.c (read_declarations): When %semantic_parser, open
20242 2000-12-19 Akim Demaille <akim@epita.fr>
20244 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20245 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20247 2000-12-19 Akim Demaille <akim@epita.fr>
20249 * src/files.c (open_files): Yipee! We no longer need all the code
20250 looking for `/tmp' since we have no tmp file.
20252 2000-12-19 Akim Demaille <akim@epita.fr>
20254 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20256 * src/files.c (open_files): Less dependency on MSDOS etc.
20258 2000-12-14 Akim Demaille <akim@epita.fr>
20260 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20261 Provide a default definition.
20262 Use it when executing the default @ action.
20263 * src/reader.c (reader_output_yylsp): No longer include
20264 `timestamp' and `text' in the default YYLTYPE.
20266 2000-12-12 Akim Demaille <akim@epita.fr>
20268 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20269 (copy_guard): Quote the file names.
20270 Reported by Laurent Mascherpa.
20272 2000-12-12 Akim Demaille <akim@epita.fr>
20274 * src/output.c (output_headers, output_program, output): Be sure
20275 to escape special characters when outputting filenames.
20276 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20277 (output_headers): Don't depend on them, Use ACTSTR.
20279 2000-11-17 Akim Demaille <akim@epita.fr>
20281 * lib/obstack.h: Formatting changes.
20282 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20283 prevents type checking.
20284 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20285 cast the value to (void *): assigning a `foo *' to a `void *'
20287 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20288 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20291 2000-11-17 Akim Demaille <akim@epita.fr>
20293 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20295 (suite.m4, regression.m4, calc.m4): these.
20296 * tests/atgeneral.m4: Update from CVS Autoconf.
20298 2000-11-17 Akim Demaille <akim@epita.fr>
20300 * tests/regression.m4 (%union and --defines): New test,
20301 demonstrating a current bug in the obstack implementation.
20303 2000-11-17 Akim Demaille <akim@epita.fr>
20305 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20307 Use them to declare the variables which are global or local to
20310 2000-11-17 Akim Demaille <akim@epita.fr>
20312 * acconfig.h: Remove, no longer used.
20314 2000-11-07 Akim Demaille <akim@epita.fr>
20316 * src: s/Copyright (C)/Copyright/g.
20318 2000-11-07 Akim Demaille <akim@epita.fr>
20320 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20322 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20324 2000-11-07 Akim Demaille <akim@epita.fr>
20326 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20327 Merge in a single CPP if/else.
20329 2000-11-07 Akim Demaille <akim@epita.fr>
20331 * src/output.c (output): Remove useless variables.
20332 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20333 argument `data' for consistency with the prototypes.
20334 Qualify it `const'.
20335 (obstack_copy, obstack_copy0): Rename the second argument as
20336 `address' for consistency. Qualify it `const'.
20337 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20338 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20339 `const' their input argument (`data' or `address').
20340 Adjust the corresponding macros to include `const' in casts.
20342 2000-11-03 Akim Demaille <akim@epita.fr>
20344 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20345 s/PFILE1/BISON_HAIRY/.
20346 Adjust dependencies.
20348 2000-11-03 Akim Demaille <akim@epita.fr>
20350 For some reason, this was not applied.
20352 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20353 `unlink': it's no longer used.
20355 2000-11-03 Akim Demaille <akim@epita.fr>
20357 * src/files.c (skeleton_find): New function, eved out of...
20358 (open_files, open_extra_files): here.
20360 2000-11-03 Akim Demaille <akim@epita.fr>
20362 Don't use `atexit'.
20364 * src/files.c (obstack_save): New function.
20365 (done): Rename as...
20366 (output_files): this.
20367 Use `obstack_save'.
20368 * src/main.c (main): Don't use `atexit' to register `done', since
20369 it no longer has to remove tmp files, just call `output_files'
20370 when there are no errors.
20372 2000-11-02 Akim Demaille <akim@epita.fr>
20374 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20375 `unlink': it's no longer used.
20376 * src/files.h: Formatting changes.
20378 2000-11-02 Akim Demaille <akim@epita.fr>
20380 Remove the last uses of mktemp and unlink/delete.
20382 * src/files.c (fdefines, ftable): Removed.
20383 (defines_ostack, table_obstack): New.
20384 Adjust dependencies of the former into uses of the latter.
20385 * src/output.c (output_short_or_char_table, output_short_table):
20386 Convert to using obstacks.
20387 * src/reader.c (copy_comment2): Accept one FILE * and two
20389 (output_token_defines, reader_output_yylsp): Use obstacks.
20390 * src/system.h (obstack_fgrow3): New.
20391 * po/POTFILES.in: Adjust.
20393 2000-11-01 Akim Demaille <akim@epita.fr>
20395 Change each use of `fattrs' into a use of `attrs_obstack'.
20397 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20398 * src/files.c (fattrs): Remove.
20399 (attrs_obstack): New.
20400 Adjust all dependencies.
20401 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20403 2000-11-01 Akim Demaille <akim@epita.fr>
20405 Introduce obstacks.
20406 Change each use of `faction' into a use of `action_obstack'.
20408 * lib/obstack.h, lib/obstack.c: New files.
20409 * src/files.c (faction): Remove.
20410 (action_obstack): New.
20411 Adjust all dependencies.
20413 2000-10-20 Akim Demaille <akim@epita.fr>
20415 * lib/quote.h (PARAMS): New macro. Use it.
20417 2000-10-16 Akim Demaille <akim@epita.fr>
20419 * src/output.c (output_short_or_char_table): New function.
20420 (output_short_table, output_token_translations): Use it.
20421 (goto_actions): Use output_short_table.
20423 2000-10-16 Akim Demaille <akim@epita.fr>
20425 * src/symtab.c (bucket_new): New function.
20428 * src/output.c (output_short_table): New argument to display the
20429 comment associated with the table.
20430 Adjust dependencies.
20431 (output_gram): Use it.
20432 (output_rule_data): Nicer output layout for YYTNAME.
20434 2000-10-16 Akim Demaille <akim@epita.fr>
20436 * src/lex.c (read_typename): New function.
20438 * src/reader.c (copy_dollar): Likewise.
20440 2000-10-16 Akim Demaille <akim@epita.fr>
20442 * src/reader.c (copy_comment2): Expect the input stream to be on
20443 the `/' which is suspected to open a comment, instead of being
20444 called after `//' or `/*' was read.
20445 (copy_comment, copy_definition, parse_union_decl, copy_action)
20446 (copy_guard): Adjust.
20448 2000-10-16 Akim Demaille <akim@epita.fr>
20450 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20451 `read_signed_integer'.
20453 2000-10-16 Akim Demaille <akim@epita.fr>
20455 * src/reader.c (copy_dollar): New function.
20456 (copy_guard, copy_action): Use it.
20458 2000-10-16 Akim Demaille <akim@epita.fr>
20460 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20461 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20462 New files, from Fileutils 4.0.27.
20463 * src/main.c (printable_version): Remove.
20464 * src/lex.c, src/reader.c: Use `quote'.
20466 2000-10-04 Akim Demaille <akim@epita.fr>
20468 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20470 2000-10-04 Akim Demaille <akim@epita.fr>
20472 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20474 2000-10-04 Akim Demaille <akim@epita.fr>
20476 When a literal string is used to define two different tokens,
20477 `bison -v' segfaults.
20478 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20480 * tests/regression.m4: New file.
20481 Include the core of the sample provided by Piotr Gackiewicz.
20482 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20485 2000-10-04 Akim Demaille <akim@epita.fr>
20487 * src/reader.c (parse_expect_decl): Keep `count' within the size
20491 2000-10-02 Paul Eggert <eggert@twinsun.com>
20493 * bison.s1 (yyparse): Assign the default value
20494 unconditionally, to avoid a GCC warning and make the parser a
20497 2000-10-02 Akim Demaille <akim@epita.fr>
20499 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20502 2000-10-02 Akim Demaille <akim@epita.fr>
20504 * src/derives.c, src/print.c, src/reduce.c: To ease the
20505 translation, move some `\n' out of the translated strings.
20507 2000-10-02 Akim Demaille <akim@epita.fr>
20509 The location tracking mechanism is precious for parse error
20510 messages. Nevertheless, it is enabled only when `@n' is used in
20511 the grammar, which is a different issue (you can use it in error
20512 message, but not in the grammar per se). Therefore, there should
20513 be another means to enable it.
20515 * src/getargs.c (getargs): Support `--locations'.
20516 (usage): Report it.
20517 * src/getargs.h (locationsflag): Export it.
20518 * src/lex.c (percent_table): Support `%locations'.
20519 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20520 with `locationsflag'.
20521 * doc/bison.texinfo: Document `--locations' and `%locations'.
20523 * tests/calc.m4: Test it.
20525 For regularity of the names, replace each
20526 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20527 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20528 In addition replace each `flag' with `_flag'.
20530 2000-10-02 Akim Demaille <akim@epita.fr>
20532 Also test parse error messages, including with YYERROR_VERBOSE.
20534 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20536 Use it to check the computations.
20537 Use it to check `nonassoc' is honored.
20538 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20539 `--yyerror-verbose'.
20540 (_AT_CHECK_CALC): Adjust to this option.
20541 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20543 2000-10-02 Akim Demaille <akim@epita.fr>
20545 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20546 the latter demonstrates a flaw in the handling of non debugging
20547 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20548 was used in order to simplify:
20564 unfortunately this leads to a CPP conflict when
20565 `--name-prefix=foo' is used since it produces `#define yydebug
20568 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20569 (YYDPRINTF): New macro.
20571 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20573 Also test `--verbose', `--defines' and `--name-prefix'.
20575 2000-10-02 Akim Demaille <akim@epita.fr>
20577 Improve the readability of the produced parsers.
20579 * src/bison.s1: Formatting changes.
20580 Improve the comment related to the `$' mark.
20581 (yydefault): Don't fall through to `yyresume': `goto' there.
20582 * src/output.c (output_parser): When the `$' is met, skip the end
20584 New variable, `number_of_dollar_signs', to check there's exactly
20585 one `$' in the parser skeleton.
20587 2000-10-02 Akim Demaille <akim@epita.fr>
20589 * lib/xstrdup.c: New file, from the fileutils.
20590 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20591 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20592 instead of strlen + xmalloc + strcpy.
20593 * src/symtab.c (copys): Remove, use xstrdup instead.
20595 2000-10-02 Akim Demaille <akim@epita.fr>
20597 * src/gram.h (associativity): New enum type which replaces the
20598 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20599 `right_assoc', `left_assoc' and `non_assoc'.
20600 Adjust all dependencies.
20601 * src/reader.c: Formatting changes.
20602 (LTYPESTR): Don't define it, use it as a literal in
20603 `reader_output_yylsp'.
20604 * src/symtab.h (symbol_class): New enum type which replaces the
20605 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20606 `sunknown', `stoken and `snterm'.
20608 2000-10-02 Akim Demaille <akim@epita.fr>
20610 * src/getargs.c (fixed_outfiles): Rename as...
20611 (yaccflag): for consistency and accuracy.
20612 Adjust dependencies.
20614 2000-10-02 Akim Demaille <akim@epita.fr>
20616 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20617 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20618 difficult and introduced a lot of core dump. It turns out that
20619 Bison used an implementation of `xmalloc' based on `calloc', and
20620 at various places it does depend upon the initialization to 0. I
20621 have not tried to isolate the pertinent places, and all the former
20622 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20623 someone should address this issue.
20625 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20626 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20628 Adjust dependencies.
20629 * src/warshall.h: New file.
20632 2000-10-02 Akim Demaille <akim@epita.fr>
20634 Various anti-`extern in *.c' changes.
20636 * src/system.h: Include `assert.h'.
20638 2000-10-02 Akim Demaille <akim@epita.fr>
20640 * src/state.h (nstates, final_state, first_state, first_shift)
20641 (first_reduction): Move their exportation from here...
20642 * src/LR0.h: to here.
20643 Adjust dependencies.
20644 * src/getargs.c (statisticsflag): New variable.
20645 Add support for `--statistics'.
20646 Adjust dependencies.
20648 Remove a lot of now useless `extern' statements in most files.
20650 2000-10-02 Akim Demaille <akim@epita.fr>
20652 * src/LR0.h: New file.
20655 2000-10-02 Akim Demaille <akim@epita.fr>
20657 * src/print.h: New file.
20659 * src/print.c: Formatting and ordering changes.
20660 (verbose, terse): Replace with...
20661 (print_results): this new function.
20662 Adjust dependencies.
20664 2000-10-02 Akim Demaille <akim@epita.fr>
20666 * src/conflicts.c (conflict_report): New function.
20667 (conflict_log, verbose_conflict_log): Replace with...
20668 (print_conflicts): this function.
20669 Adjust dependencies.
20670 * src/conflicts.h: New file.
20671 Propagate its inclusion.
20673 2000-10-02 Akim Demaille <akim@epita.fr>
20675 * src/nullable.h: New file.
20676 Propagate its inclusion.
20677 * src/nullable.c: Formatting changes.
20679 2000-10-02 Akim Demaille <akim@epita.fr>
20681 * src/reduce.h: New file.
20682 Propagate its inclusion.
20683 * src/reduce.c: Topological sort and other formatting changes.
20684 (bool, TRUE, FALSE): Move their definition to...
20685 * src/system.h: here.
20687 2000-10-02 Akim Demaille <akim@epita.fr>
20689 * src/files.c: Formatting changes.
20690 (tryopen, tryclose, openfiles): Rename as...
20691 (xfopen, xfclose, open_files): this.
20692 (stringappend): static.
20693 * src/files.h: Complete the list of exported symbols.
20696 2000-10-02 Akim Demaille <akim@epita.fr>
20698 * src/reader.h: New file.
20699 Propagate its use instead of tedious list of `extern' and
20701 * src/reader.c: Formatting changes, topological sort,
20704 2000-10-02 Akim Demaille <akim@epita.fr>
20706 * src/lex.h: Prototype `lex.c' exported functions.
20707 * src/reader.c: Adjust.
20708 * src/lex.c: Formatting changes.
20709 (safegetc): Rename as...
20712 2000-10-02 Akim Demaille <akim@epita.fr>
20714 * src/lalr.h: New file.
20715 Propagate its inclusion instead of prototypes and `extern'.
20716 * src/lalr.c: Formatting changes, topological sorting etc.
20718 2000-10-02 Akim Demaille <akim@epita.fr>
20720 * src/output.c (token_actions): Introduce a temporary array,
20721 YYDEFACT, that makes it possible for this function to use
20722 output_short_table.
20724 2000-10-02 Akim Demaille <akim@epita.fr>
20726 `user_toknums' is output as a `short[]' in `output.c', while it is
20727 defined as a `int[]' in `reader.c'. For consistency with the
20728 other output tables, `user_toknums' is now defined as a table of
20731 * src/reader.c (user_toknums): Be a short table instead of an int
20733 Adjust dependencies.
20735 Factor the short table outputs.
20737 * src/output.c (output_short_table): New function.
20738 * src/output.c (output_gram, output_stos, output_rule_data)
20739 (output_base, output_table, output_check): Use it.
20741 2000-10-02 Akim Demaille <akim@epita.fr>
20743 * src/output.c (output): Topological sort of the functions, in
20744 order to get rid of the `static' prototypes.
20745 No longer use `register'.
20746 * src/output.h: New file.
20747 Propagate its inclusion in files explicitly prototyping functions
20750 2000-09-21 Akim Demaille <akim@epita.fr>
20752 * src/atgeneral.m4: Update from Autoconf.
20754 2000-09-21 Akim Demaille <akim@epita.fr>
20756 * src/closure.h: New file.
20757 * src/closure.c: Formatting changes, topological sort over the
20758 functions, use of closure.h.
20759 (initialize_closure, finalize_closure): Rename as...
20760 (new_closure, free_closure): these. Adjust dependencies.
20761 * src/LR0.c: Formatting changes, topological sort, use of
20763 (initialize_states): Rename as...
20764 (new_states): this.
20765 * src/Makefile.am (noinst_HEADERS): Adjust.
20767 2000-09-20 Akim Demaille <akim@epita.fr>
20769 * src/acconfig.h: Don't protect config.h against multiple
20771 Don't define PARAMS.
20772 * src/system.h: Define PARAMS.
20773 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20774 purpose of config.h. system.h must not try to fix wrong
20775 definitions in config.h.
20777 2000-09-20 Akim Demaille <akim@epita.fr>
20779 * src/derives.h: New file.
20780 * src/main.c, src/derives.h: Use it.
20781 Formatting changes.
20782 * src/Makefile.am (noinst_HEADERS): Adjust.
20784 2000-09-20 Akim Demaille <akim@epita.fr>
20786 * tests/atgeneral.m4: Update from Autoconf.
20787 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20788 (AT_CHECK_CALC): New macros.
20789 Use these macros to test bison with options `', `--raw',
20790 `--debug', `--yacc', `--yacc --debug'.
20792 2000-09-19 Akim Demaille <akim@epita.fr>
20794 * src/output.c: Formatting changes.
20795 * src/machine.h: Remove, leaving its contents in...
20796 * src/system.h: here.
20798 Adjust all dependencies on stdio.h and machine.h.
20799 * src/getargs.h: New file.
20800 Let all `extern' declarations about getargs.c be replaced with
20801 inclusion of `getargs.h'.
20802 * src/Makefile.am (noinst_HEADERS): Adjust.
20804 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20806 (yyerror): Returns void, not int.
20807 * doc/bison.texinfo: Formatting changes.
20809 2000-09-19 Akim Demaille <akim@epita.fr>
20811 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20814 2000-09-18 Akim Demaille <akim@epita.fr>
20816 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20817 * src/Makefile.am (INCLUDES): Don't.
20818 Be ready to fetch headers in lib/.
20820 2000-09-18 Akim Demaille <akim@epita.fr>
20822 * doc/bison.texinfo: Update the copyright.
20823 ANSIfy and GNUify the examples.
20824 Remove the old menu.
20826 2000-09-18 Akim Demaille <akim@epita.fr>
20828 First set of tests: use the `calc' example from the documentation.
20830 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20831 is defined only when YYDEBUG is.
20832 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20833 * src/files.c (tryopen, tryclose): Formatting changes.
20834 Move to the top and be static.
20835 * src/reader.c (read_signed_integer): Likewise.
20836 * tests/calc.m4: New file.
20837 * Makefile.am, suite.m4: Adjust.
20838 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20840 2000-09-18 Akim Demaille <akim@epita.fr>
20842 Add support for an Autotest test suite for Bison.
20844 * m4/m4.m4, m4/atconfig.m4: New files.
20845 * m4/Makefile.am (EXTRA_DIST): Adjust.
20846 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20848 * src/getargs.c: Display a more standard --version message.
20849 * src/reader.c (reader): Formatting changes.
20850 No longer depend upon VERSION_STRING.
20851 * configure.in: No longer use `dnl'.
20852 Set up the test suite and the new directory `tests/.
20853 (VERSION_STRING): Remove.
20855 2000-04-14 Akim Demaille <akim@epita.fr>
20857 * src/reader.c (copy_comment2): New function, same as former
20858 `copy_comment', but outputs into two FILE *.
20859 (copy_comment): Use it.
20860 (parse_union_decl): Use it.
20861 (get_type, parse_start_decl): Use the same `invalid' message.
20862 (parse_start_decl, parse_union_decl): Use the same `multiple'
20864 (parse_union_decl, copy_guard, copy_action): Use the same
20865 `unmatched' message.
20866 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20868 2000-03-31 Akim Demaille <akim@epita.fr>
20870 * src/files.c (tryopen, tryclose): Move to the top.
20873 2000-03-31 Akim Demaille <akim@epita.fr>
20875 * src/main.c (main): Don't call `done', exit does it.
20877 2000-03-31 Akim Demaille <akim@epita.fr>
20879 * allocate.c: s/return (foo)/return foo/.
20880 * lalr.c: Likewise.
20882 * output.c: Likewise.
20883 * reader.c: Likewise.
20884 * symtab.c: Likewise.
20885 * vmsgetargs.c: Likewise.
20887 2000-03-31 Akim Demaille <akim@epita.fr>
20889 Clean up the error reporting functions.
20891 * src/report.c: New file.
20892 * src/report.h: Likewise.
20893 * src/Makefile.am: Adjust.
20894 * m4/error.m4: New file.
20895 * m4/Makefile.am: Adjust.
20896 * configure.in (jm_PREREQ_ERROR): Call it.
20897 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20899 (fatal, fatals): Remove. All callers use complain.c::fatal.
20900 (warn, warni, warns, warnss, warnss): Remove. All callers use
20901 complain.c::complain.
20902 (toomany): Remove, use fatal instead.
20903 * src/files.c (done): No argument, use complain_message_count.
20904 * src/main.c (main): Register `done' to `atexit'.
20906 * src/getargs.c (usage): More `fputs', less `fprintf'.
20908 2000-03-28 Akim Demaille <akim@epita.fr>
20910 * lib/: New directory.
20911 * Makefile.am (SUBDIRS): Adjust.
20912 * configure.in: Adjust.
20913 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20915 * src/alloca.c: Moved to lib/.
20916 * src/getopt.c: Likewise.
20917 * src/getopt1.c: Likewise.
20918 * src/getopt.h: Likewise.
20919 * src/ansi2knr.c: Likewise.
20920 * src/ansi2knr.1: Likewise.
20921 * src/Makefile.am: Adjust.
20922 * lib/Makefile.am: New file.
20924 2000-03-28 Akim Demaille <akim@epita.fr>
20926 * src/getargs.c (usage): Refresh the help message.
20928 2000-03-17 Akim Demaille <akim@epita.fr>
20930 * src/getopt1.c: Updated from textutils 2.0e
20931 * src/getopt.c: Likewise.
20932 * src/getopt.h: Likewise.
20934 2000-03-17 Akim Demaille <akim@epita.fr>
20936 * src/Makefile.am (bison.simple): Fix the awk program: quote only
20937 the file name, not the whole `#line LINE FILE'.
20939 2000-03-17 Akim Demaille <akim@epita.fr>
20941 On syntax errors, report the token on which we choked.
20943 * src/bison.s1 (yyparse): In the label yyerrlab, when
20944 YYERROR_VERBOSE, add yychar in msg.
20946 2000-03-17 Akim Demaille <akim@epita.fr>
20948 * src/reader.c (copy_at): New function.
20949 (copy_guard): Use it.
20950 (copy_action): Use it.
20952 2000-03-17 Akim Demaille <akim@epita.fr>
20954 Be kind to translators, save some useless translations.
20956 * src/main.c (banner): New function.
20957 (fatal_banner): Use it.
20958 (warn_banner): Use it.
20960 2000-03-17 Akim Demaille <akim@epita.fr>
20962 * src/reader.c (copy_definition): Use copy_string and
20963 copy_comment. Removed now unused `match', `ended',
20965 (copy_comment, copy_string): Moved, to be visible from
20968 2000-03-17 Akim Demaille <akim@epita.fr>
20970 * src/reader.c (copy_string): Declare `static inline'. No
20971 problems with inline, since it is checked by configure.
20972 (copy_comment): Likewise.
20974 2000-03-17 Akim Demaille <akim@epita.fr>
20976 * src/reader.c (packsymbols): Formatting changes.
20978 2000-03-17 Akim Demaille <akim@epita.fr>
20980 * src/reader.c (copy_comment): New function, factored out from:
20981 (copy_action): Use it. Removed now unused `match', `ended',
20983 (copy_guard): Likewise.
20985 2000-03-17 Akim Demaille <akim@epita.fr>
20987 * src/reader.c (copy_string): New function, factored out from:
20988 (copy_action): Use it.
20989 (copy_guard): Likewise.
20991 2000-03-17 Akim Demaille <akim@epita.fr>
20993 Change the handling of @s so that they behave exactly like $s.
20994 There is now a pseudo variable @$ (readble and writable), location
20995 of the lhs of the rule (by default ranging from the location of
20996 the first symbol of the rhs, to the location of the last symbol,
20997 or, if the rhs is empty, YYLLOC).
20999 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21001 (yyparse): When providing a default semantic action, provide a
21002 default location action.
21003 (after the $): No longer change `*YYLSP', just stack YYLOC the
21004 same way you stack YYVAL.
21005 * src/reader.c (read_declarations): Use warns.
21006 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21007 (copy_action, case '@'): Likewise.
21008 Use a standard error message, to save useless work from
21011 2000-03-17 Akim Demaille <akim@epita.fr>
21013 * src/bison.s1: Formatting and cosmetics changes.
21014 * src/reader.c: Likewise.
21015 Update the Copyright notice.
21017 2000-03-17 Akim Demaille <akim@epita.fr>
21019 * src/bison.s1 (#line): All set to `#line' only, since the
21020 Makefile now handles them.
21022 2000-03-16 Akim Demaille <akim@epita.fr>
21024 * src/output.c (output_rule_data): Output the documentation of
21025 some of the tables.
21026 (Copyright notice): Update.
21027 Formatting changes.
21029 2000-03-16 Akim Demaille <akim@epita.fr>
21031 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21032 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21033 One `#if YYDEBUG' remains, since it uses variables which are
21034 defined only if `YYDEBUG != 0'.
21036 2000-03-16 Akim Demaille <akim@epita.fr>
21038 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21039 and related variables so that the similarities are highlighted.
21041 2000-03-16 Akim Demaille <akim@epita.fr>
21043 * src/bison.s1: Properly indent CPP directives.
21045 2000-03-16 Akim Demaille <akim@epita.fr>
21047 * src/bison.s1: Properly indent the `alloca' CPP section.
21049 2000-03-16 Akim Demaille <akim@epita.fr>
21051 Do not hard code values of directories in `configure.in'.
21052 Update the `configure' tool chain.
21054 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21056 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21057 (AC_OUTPUT): Add m4/Makefile.
21058 Bump to bison 1.28a, 1.29 has never been released.
21059 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21060 handled via src/Makefile.am.
21061 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21062 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21064 * Makefile.am (SUBDIRS): Add m4.
21065 (ACLOCAL_AM_FLAGS): New variable.
21066 (AUTOMAKE_OPTIONS): Add check-news.
21067 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21068 the proper line number and file name.
21069 (DEFS): Propagate the location of bison library files and of the
21071 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21073 * acinclude.m4: Remove, replaced by the directory m4.
21074 * m4/Makefile.am (EXTRA_DIST): New variable.
21075 * m4/gettext.m4: New file, from the fileutils.
21076 * m4/lcmessage.m4: Likewise
21077 * m4/progtest.m4: Likewise.
21078 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21080 2000-03-10 Akim Demaille <akim@epita.fr>
21083 Formatting changes of various comments.
21084 Respect the GNU coding standards at various places.
21085 Don't use `_()' when no translation is needed.
21087 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21090 OS/2 honors TMPDIR environment variable.
21092 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21094 * doc/bison.texinfo: Tweaked spelling and grammar.
21096 Removed reference to price of printed copy.
21097 Mention BISON_SIMPLE and BISON_HAIRY.
21099 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21101 * configure.in, NEWS:
21102 Bison 1.29 released.
21104 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21106 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21107 Added reference card.
21109 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21111 * po/ru.po: Added Russian translation.
21113 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21115 * configure.in: Added Russian translation.
21117 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21119 * configure.in, NEWS, README:
21120 Released version 1.28.
21122 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21125 Squashed redefinition warning on some systems.
21127 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21128 Have configure build version string instead of relying on ANSI string
21131 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21133 * po/POTFILES.in: Got rid of version.c.
21135 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21137 * acconfig.h, configure.in:
21138 Have configure build version string instead of relying on ANSI string
21141 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21144 Dropped mention of `+' for long-named options.
21146 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21148 * src/files.c: Added <unistd.h> for unlink().
21150 * src/Makefile.am, src/system.h:
21153 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21155 * README: Added a FAQ list.
21157 * configure.in, acconfig.h:
21160 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21162 * doc/FAQ, doc/Makefile.am:
21165 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21167 * src/alloc.h, src/symtab.h, src/version.c:
21168 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21170 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21172 * src/.cvsignore, src/Makefile.am:
21173 Reorganized: sources in `src', documentation in `doc'.
21175 * src/lex.c (literalchar):
21176 fixed the code for escaping double quotes (thanks
21179 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21181 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21182 Adjusted paths to reflect directory reorganization.
21184 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21186 * doc/.cvsignore, doc/Makefile.am:
21187 Reorganized: sources in `src', documentation in `doc'.
21189 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21192 Updated AC_INIT file to reflect directory reorganization.
21194 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21195 Reorganized: sources in `src', documentation in `doc'.
21197 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21200 Don't declare calloc() and realloc() if not necessary.
21202 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21204 * configure.in, acconfig.h, acinclude.m4:
21205 Don't declare calloc() and realloc() if not necessary.
21207 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21209 * po/.cvsignore: Added i18n support.
21211 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21213 * acconfig.h, configure.in, Makefile.am:
21214 Added i18n support.
21216 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21218 * src/bison.s1: Fixed #line numbers.
21220 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21222 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21223 Added PO files from Translation Project.
21225 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21228 Added support for non-ANSI compilers (ansi2knr).
21230 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21232 * configure.in: Bumped version number to 1.27.
21235 Added `bison.simple' to list of files removed by `make distclean'.
21237 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21239 * src/files.c, src/files.h:
21240 Defined locations of parser files in config.h instead of Makefile.
21242 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21244 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21245 Defined locations of parser files in config.h instead of Makefile.
21247 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21250 Removed inappropriate use of $< macro.
21252 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21254 * po/Makefile.in.in, po/POTFILES.in:
21255 Add `po' directory skeleton.
21257 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21259 * README: Document help-bison list.
21261 * configure.in: Add check for mkstemp().
21263 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21265 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21266 Hush a few compiler warnings.
21269 Add tryclose(), which verifies that fclose was successful.
21270 Hush a couple of compiler warnings.
21272 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21274 * Makefile.am, OChangeLog:
21275 ChangeLog is now automatically generated. Include the old version as
21278 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21280 * 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:
21281 Update FSF address.
21283 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21285 * doc/bison.texinfo: Fix formatting glitch.
21287 * doc/bison.texinfo: Update FSF address.
21289 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21291 * acconfig.h: Update FSF address.
21293 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21296 Don't define PACKAGE here, since config.h defines it.
21298 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21300 * src/reader.c: Update copyright date.
21303 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21304 favor of output directly to stderr (avoids buffer overruns).
21306 * src/reader.c: Some checks for premature EOF.
21308 * 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:
21309 Use prototypes if the compiler understands them.
21311 * src/files.c: Honor TMPDIR on Unix hosts.
21312 Use prototypes if the compiler understands them.
21315 Fix a couple of buffer overrun bugs.
21316 Use prototypes if the compiler understands them.
21318 * src/system.h: Include unistd.h and ctype.h.
21319 Use #ifdef instead of #if for NLS symbols.
21321 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21323 * doc/bison.texinfo:
21324 Delete comment "consider using @set for edition number, etc..." since
21325 we now are doing so.
21327 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21330 Use prototypes if the compiler understands them.
21332 * NEWS: Document 1.26 highlights.
21334 * Makefile.am: Require Automake 1.3 or later.
21337 Use prototypes if the compiler understands them.
21339 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21342 Use VERSION symbol from automake for version number.
21344 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21346 * acconfig.h, configure.in, version.cin:
21347 Use VERSION symbol from automake for version number.
21349 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21352 Distribute original version of simple parser (bison.s1), not built
21353 version (bison.simple).
21355 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21357 * doc/bison.texinfo: Add info dir entry.
21359 * doc/bison.texinfo:
21360 Let automake put version number into documentation.
21362 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21364 * src/bison.cld, src/build.com, src/vmshlp.mar:
21365 Add non-RCS files from /gd/gnu/bison.
21367 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21370 Document the BISON_HAIRY and BISON_SIMPLE variables.
21372 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21374 * src/version.c: Build version.c automatically.
21377 Fix token numbering (used to start at 258, not 257).
21379 * src/system.h: Include config.h.
21381 * src/getargs.c: Update bug report address.
21383 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21384 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21386 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21389 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21391 * configure.in, version.cin:
21392 Build version.c automatically.
21394 * AUTHORS: Add AUTHORS file.
21396 * README: Update bug report address.
21399 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21401 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21402 Add automake stuff.
21404 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21406 * doc/bison.texinfo: Clean up some formatting.
21408 1998-05-05 Richard Stallman <rms@gnu.org>
21410 * doc/bison.texinfo:
21411 Explain better why to make a pure parser.
21413 1998-01-05 Richard Stallman <rms@gnu.org>
21415 * src/files.c (openfiles):
21416 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21417 find a temporary directory, if possible. Do not unlink files while
21420 1997-08-25 Richard Stallman <rms@gnu.org>
21422 * src/reader.c (stack_offset;):
21423 Change some warni to warns.
21425 * src/lex.c (literalchar): Use warns, not warni.
21427 1997-06-28 Richard Stallman <rms@gnu.org>
21429 * src/bison.s1: Add a Bison version comment.
21431 * src/main.c (fatal, warn, berror):
21434 1997-06-28 Richard Stallman <rms@gnu.org>
21436 * Makefile.in (bison_version): New variable.
21437 (dist): Use that variable.
21438 (bison.s1): Substitute the Bison version into bison.simple.
21440 * bison.simple: Add a Bison version comment.
21442 1997-06-18 Richard Stallman <rms@gnu.org>
21444 * src/main.c (fatal, warn, berror):
21445 Make error messages standard.
21446 (toomany): Improve error message text.
21448 * 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:
21449 new.h renamed to alloc.h.
21451 1997-06-18 Richard Stallman <rms@gnu.org>
21453 * Makefile.in: new.h renamed to alloc.h.
21455 1997-05-24 Richard Stallman <rms@gnu.org>
21457 * src/lex.c (literalchar):
21458 Fix the code for escaping \, " and '.
21460 (lex): Avoid trouble when there are many chars
21461 to discard in a char literal with just several chars in it.
21463 1997-05-17 Richard Stallman <rms@gnu.org>
21466 Use malloc, if using alloca is troublesome.
21467 (YYSTACK_USE_ALLOCA): New flag macro.
21468 Define it for some systems and compilers.
21469 (YYSTACK_ALLOC): New macro.
21470 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21471 If it was malloc'd, free it.
21473 1997-05-17 Richard Stallman <rms@gnu.org>
21476 Use malloc, if using alloca is troublesome.
21477 (YYSTACK_USE_ALLOCA): New flag macro.
21478 Define it for some systems and compilers.
21479 (YYSTACK_ALLOC): New macro.
21480 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21481 If it was malloc'd, free it.
21483 1997-04-23 Richard Stallman <rms@gnu.org>
21486 (alloca) [__hpux]: Always define as __builtin_alloca.
21488 1997-04-23 Richard Stallman <rms@gnu.org>
21491 (alloca) [__hpux]: Always define as __builtin_alloca.
21493 1997-04-22 Richard Stallman <rms@gnu.org>
21496 [__hpux]: Include alloca.h (right for HPUX 10)
21497 instead of declaring alloca (right for HPUX 9).
21499 * src/bison.s1 (__yy_memcpy):
21500 Declare arg `count' as unsigned int.
21501 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21503 1997-04-22 Richard Stallman <rms@gnu.org>
21506 [__hpux]: Include alloca.h (right for HPUX 10)
21507 instead of declaring alloca (right for HPUX 9).
21509 * bison.simple (__yy_memcpy):
21510 Declare arg `count' as unsigned int.
21511 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21513 1997-01-03 Richard Stallman <rms@gnu.org>
21515 * src/allocate.c: [__STDC__ or _MSC_VER]:
21516 Declare calloc and realloc to return void *.
21518 1997-01-02 Richard Stallman <rms@gnu.org>
21521 [_MSC_VER]: Include stdlib.h and process.h.
21522 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21524 * src/main.c (main): Return FAILURE as a value.
21525 (printable_version): Declare arg as int, not char.
21527 1997-01-02 Richard Stallman <rms@gnu.org>
21529 * Makefile.in (dist):
21530 Explicitly check for symlinks, and copy them.
21532 1996-12-19 Richard Stallman <rms@gnu.org>
21535 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21537 1996-12-18 Paul Eggert <eggert@gnu.org>
21539 * src/bison.s1 (yyparse):
21540 If __GNUC__ and YYPARSE_PARAM are both defined,
21541 declare yyparse to have a void * argument.
21543 1996-12-18 Paul Eggert <eggert@gnu.org>
21545 * bison.simple (yyparse):
21546 If __GNUC__ and YYPARSE_PARAM are both defined,
21547 declare yyparse to have a void * argument.
21549 1996-12-17 Richard Stallman <rms@gnu.org>
21551 * src/reduce.c (nbits): Add some casts.
21553 1996-08-12 Richard Stallman <rms@gnu.org>
21555 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21557 1996-08-12 Richard Stallman <rms@gnu.org>
21559 * bison.simple: Test _MSDOS as well as _MSDOS_.
21561 1996-07-31 Richard Stallman <rms@gnu.org>
21564 [__sun && __i386]: Include alloca.h.
21566 1996-07-31 Richard Stallman <rms@gnu.org>
21569 [__sun && __i386]: Include alloca.h.
21571 1996-07-30 Richard Stallman <rms@gnu.org>
21573 * src/bison.s1: Comment change.
21575 * src/bison.s1: Test _MSDOS_, not MSDOS.
21577 1996-07-30 Richard Stallman <rms@gnu.org>
21579 * bison.simple: Comment change.
21581 * bison.simple: Test _MSDOS_, not MSDOS.
21583 1996-06-01 Richard Stallman <rms@gnu.org>
21585 * 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:
21586 Insert `_' macro around many string constants.
21589 Insert `_' macro around many string constants.
21591 (main): Call setlocale, bindtextdomain and textdomain.
21593 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21594 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21595 [ENABLE_NLS]: Include libintl.h.
21596 [ENABLE_NLS] (gettext): Define.
21597 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21598 (N_, PACKAGE, LOCALEDIR): New macros.
21600 1996-06-01 Richard Stallman <rms@gnu.org>
21602 * POTFILES.in: New file.
21604 * Makefile.in (allocate.o):
21605 Define target explicitly.
21607 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21608 (LDFLAGS): Set to @LDFLAGS@.
21609 (configure): Run autoconf only if preceding `cd' succeeds.
21610 (bison.s1): Redirect output to temporary file then move the
21611 temporary to the target, rather than redirecting directly to bison.s1.
21612 (clean): Remove config.status and config.log.
21613 (distclean): Don't remove config.status here.
21615 1996-05-12 Richard Stallman <rms@gnu.org>
21618 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21620 1996-05-12 Richard Stallman <rms@gnu.org>
21623 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21625 1996-05-11 Richard Stallman <rms@gnu.org>
21627 * src/bison.s1 (__yy_memcpy):
21628 Really reorder the args, as was supposedly done on Feb 14 1995.
21629 (yyparse): Calls changed accordingly.
21631 1996-05-11 Richard Stallman <rms@gnu.org>
21633 * Makefile.in (dist): Don't use $(srcdir).
21635 * bison.simple (__yy_memcpy):
21636 Really reorder the args, as was supposedly done on Feb 14 1995.
21637 (yyparse): Calls changed accordingly.
21639 1996-01-27 Richard Stallman <rms@gnu.org>
21641 * src/output.c (output_rule_data):
21642 Test YYERROR_VERBOSE in the conditional
21643 around the definition of ttyname.
21645 1995-12-29 Richard Stallman <rms@gnu.org>
21648 Fix line numbers in #line commands.
21650 1995-12-29 Richard Stallman <rms@gnu.org>
21653 Fix line numbers in #line commands.
21655 1995-12-27 Richard Stallman <rms@gnu.org>
21657 * src/bison.s1 (YYPARSE_PARAM_DECL):
21658 In C++, make it always null.
21659 (YYPARSE_PARAM_ARG): New macro.
21660 (yyparse): Use YYPARSE_PARAM_ARG.
21662 1995-12-27 Richard Stallman <rms@gnu.org>
21664 * bison.simple (YYPARSE_PARAM_DECL):
21665 In C++, make it always null.
21666 (YYPARSE_PARAM_ARG): New macro.
21667 (yyparse): Use YYPARSE_PARAM_ARG.
21669 1995-11-29 Richard Stallman <rms@gnu.org>
21671 * doc/bison.texinfo:
21672 Describe literal string tokens, %raw, %no_lines, %token_table.
21674 1995-11-29 Daniel Hagerty <hag@gnu.org>
21676 * doc/bison.texinfo: Fixed update date
21678 1995-10-16 Richard Stallman <rms@gnu.org>
21680 * src/version.c: Version 1.25.
21682 1995-10-16 Richard Stallman <rms@gnu.org>
21684 * NEWS: *** empty log message ***
21686 1995-10-16 Richard Stallman <rms@gnu.org>
21688 * doc/bison.1, doc/bison.rnh:
21691 1995-10-15 Richard Stallman <rms@gnu.org>
21693 * src/vmsgetargs.c, src/getargs.c:
21694 Added -n, -k, and -raw switches.
21695 (noparserflag, toknumflag, rawtoknumflag): New variables.
21697 * src/symtab.h (SALIAS):
21698 New #define for adding aliases to %token.
21699 (struct bucket): Added `alias' field.
21701 * src/reduce.c (reduce_grammar):
21702 Revise error message.
21703 (print_notices): Remove final `.' from error message.
21705 * src/reader.c (reader_output_yylsp):
21707 (readgram): Use `#if 0' around code that accepted %command
21708 inside grammar rules: The documentation doesn't allow it,
21709 and it will fail since the %command processors scan for the next %.
21710 (parse_token_decl): Extended the %token
21711 declaration to allow a multi-character symbol as an alias.
21712 (parse_thong_decl): New function.
21713 (read_declarations): Added %thong declarations.
21714 (read_declarations): Handle NOOP to deal with allowing
21715 % declarations as another means to specify the flags.
21716 (readgram): Allow %prec prior to semantics embedded in a rule.
21717 (skip_to_char, read_declarations, copy_definition)
21718 (parse_token_decl, parse_start_decl, parse_type_decl)
21719 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21720 (get_type_name, copy_guard, copy_action, readgram)
21721 (get_type, packsymbols): Revised most error messages.
21722 Changed `fatal' to `warnxxx' to avoid aborting for error.
21723 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21724 (read_declarations): Improve the error message for
21725 an invalid character. Do not abort.
21726 (read_declarations, copy_guard, copy_action): Use
21727 printable_version to avoid unprintable characters in printed output.
21728 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21729 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21730 Allow the type of a non-terminal can be given
21731 more than once, as long as all specifications give the same type.
21734 (output_headers, output_trailers, output, output_gram)
21735 (output_rule_data): Implement noparserflag variable.
21736 Implement toknumflag variable.
21737 (output): Call reader_output_yylsp to output LTYPESTR.
21739 * src/main.c (main):
21740 If reader sees an error, don't process the grammar.
21741 (fatals): Updated to not use VARARGS1.
21742 (printable_version, int_to_string, warn, warni, warns, warnss)
21743 (warnsss): New error reporting functions. Avoid abort for error.
21746 Added THONG and NOOP for alias processing.
21747 Added SETOPT for the new code that allows setting options with %flags.
21750 Include getopt.h. Add some extern decls.
21751 (safegetc): New function to deal with EOF gracefully.
21752 (literalchar); new function to deal with reading \ escapes.
21753 (lex): Use literalchar.
21754 (lex): Implemented "..." tokens.
21755 (literalchar, lex, parse_percent_token): Made tokenbuffer
21756 always contain the token. This includes growing the token
21757 buffer while reading an integer.
21758 (parse_percent_token): Replaced if-else statement with percent_table.
21759 (parse_percent_token): Added % declarations as another
21760 way to specify the flags -n, -l, and -r. Also added hooks for
21761 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21762 major changes to files.c.
21763 (lex) Retain in the incoming stream a character following
21765 (skip_white_space, lex): Revised most error messages
21766 and changed fatal to warn to avoid aborting.
21767 (percent_table): Added %thong declarations.
21769 * src/gram.h: Comment changes.
21771 * src/files.c (openfiles, open_extra_files, done):
21773 and actfile file. Handle noparserflag. Both for -n switch.
21775 * src/conflicts.c (resolve_sr_conflict):
21776 Remove use of alloca.
21778 1995-06-01 Jim Meyering <meyering@gnu.org>
21780 * doc/bison.texinfo: *** empty log message ***
21782 1995-05-06 Richard Stallman <rms@gnu.org>
21784 * src/bison.s1: Comment change.
21786 1995-05-06 Richard Stallman <rms@gnu.org>
21788 * bison.simple: Comment change.
21790 1995-05-03 Richard Stallman <rms@gnu.org>
21792 * src/version.c: Version now 1.24.
21794 * src/bison.s1: Change distribution terms.
21796 * src/version.c: Version now 1.23.
21798 1995-05-03 Richard Stallman <rms@gnu.org>
21800 * doc/bison.texinfo:
21801 Rewrite "Conditions for Using Bison".
21802 Update version to 1.24.
21804 1995-05-03 Richard Stallman <rms@gnu.org>
21806 * bison.simple: Change distribution terms.
21808 1995-02-23 Richard Stallman <rms@gnu.org>
21810 * src/files.c: Test __VMS_POSIX as well as VMS.
21812 1995-02-14 Jim Meyering <meyering@gnu.org>
21814 * src/bison.s1 (__yy_memcpy):
21815 Renamed from __yy_bcopy to avoid
21816 confusion. Reverse FROM and TO arguments to be consistent with
21819 1995-02-14 Jim Meyering <meyering@gnu.org>
21821 * bison.simple (__yy_memcpy):
21822 Renamed from __yy_bcopy to avoid
21823 confusion. Reverse FROM and TO arguments to be consistent with
21826 1994-11-10 David J. MacKenzie <djm@gnu.org>
21832 * Makefile.in (DISTFILES): Include NEWS.
21834 * Makefile.in (DISTFILES):
21835 Include install-sh, not install.sh.
21837 * configure.in: Update to Autoconf v2 macro names.
21839 1994-10-05 David J. MacKenzie <djm@gnu.org>
21841 * Makefile.in: fix typo
21843 * Makefile.in (prefix, exec_prefix):
21844 Let configure set them.
21846 1994-09-28 David J. MacKenzie <djm@gnu.org>
21848 * Makefile.in: Set datadir to $(prefix)/share.
21850 1994-09-15 Richard Stallman <rms@gnu.org>
21853 Update copyright notice and GPL version.
21855 1994-09-15 Richard Stallman <rms@gnu.org>
21858 Update copyright notice and GPL version.
21860 1994-07-12 Richard Stallman <rms@gnu.org>
21862 * src/reduce.c, src/reader.c:
21865 1994-05-05 David J. MacKenzie <djm@gnu.org>
21867 * Makefile.in: entered into RCS
21869 1994-03-26 Richard Stallman <rms@gnu.org>
21871 * src/bison.s1: entered into RCS
21873 1994-03-26 Richard Stallman <rms@gnu.org>
21875 * bison.simple: entered into RCS
21877 1994-03-25 Richard Stallman <rms@gnu.org>
21879 * src/main.c: entered into RCS
21881 1994-03-24 Richard Stallman <rms@gnu.org>
21883 * src/conflicts.c: entered into RCS
21885 1994-01-02 Richard Stallman <rms@gnu.org>
21887 * Makefile.in: *** empty log message ***
21889 1993-11-21 Richard Stallman <rms@gnu.org>
21891 * src/bison.s1: *** empty log message ***
21893 1993-11-21 Richard Stallman <rms@gnu.org>
21895 * doc/bison.texinfo: entered into RCS
21897 * doc/bison.texinfo: *** empty log message ***
21899 1993-11-21 Richard Stallman <rms@gnu.org>
21901 * bison.simple: *** empty log message ***
21903 1993-10-25 David J. MacKenzie <djm@gnu.org>
21905 * doc/bison.texinfo: *** empty log message ***
21907 1993-10-19 Richard Stallman <rms@gnu.org>
21909 * src/bison.s1: *** empty log message ***
21911 1993-10-19 Richard Stallman <rms@gnu.org>
21913 * bison.simple: *** empty log message ***
21915 1993-10-14 Richard Stallman <rms@gnu.org>
21917 * src/bison.s1: *** empty log message ***
21919 1993-10-14 Richard Stallman <rms@gnu.org>
21921 * bison.simple: *** empty log message ***
21923 1993-09-14 David J. MacKenzie <djm@gnu.org>
21925 * doc/bison.texinfo: *** empty log message ***
21927 1993-09-13 Noah Friedman <friedman@gnu.org>
21929 * Makefile.in: *** empty log message ***
21931 1993-09-10 Richard Stallman <rms@gnu.org>
21933 * src/conflicts.c: *** empty log message ***
21935 * src/system.h: entered into RCS
21937 1993-09-10 Richard Stallman <rms@gnu.org>
21939 * doc/bison.1: entered into RCS
21941 1993-09-06 Noah Friedman <friedman@gnu.org>
21943 * src/version.c: entered into RCS
21945 1993-09-06 Noah Friedman <friedman@gnu.org>
21947 * Makefile.in: *** empty log message ***
21949 1993-07-30 David J. MacKenzie <djm@gnu.org>
21951 * Makefile.in: *** empty log message ***
21953 1993-07-24 Richard Stallman <rms@gnu.org>
21955 * src/bison.s1: *** empty log message ***
21957 1993-07-24 Richard Stallman <rms@gnu.org>
21959 * bison.simple: *** empty log message ***
21961 1993-07-08 David J. MacKenzie <djm@gnu.org>
21963 * Makefile.in: *** empty log message ***
21965 1993-07-04 Richard Stallman <rms@gnu.org>
21967 * src/bison.s1: *** empty log message ***
21969 1993-07-04 Richard Stallman <rms@gnu.org>
21971 * bison.simple: *** empty log message ***
21973 1993-06-26 David J. MacKenzie <djm@gnu.org>
21975 * src/getargs.c: entered into RCS
21977 1993-06-26 David J. MacKenzie <djm@gnu.org>
21979 * doc/bison.texinfo: *** empty log message ***
21981 * doc/bison.1: New file.
21983 1993-06-25 Richard Stallman <rms@gnu.org>
21985 * src/getargs.c: New file.
21987 1993-06-16 Richard Stallman <rms@gnu.org>
21989 * src/bison.s1: *** empty log message ***
21991 1993-06-16 Richard Stallman <rms@gnu.org>
21993 * bison.simple: *** empty log message ***
21995 1993-06-03 Richard Stallman <rms@gnu.org>
21997 * src/bison.s1: New file.
21999 1993-06-03 Richard Stallman <rms@gnu.org>
22001 * doc/bison.texinfo: *** empty log message ***
22003 1993-06-03 Richard Stallman <rms@gnu.org>
22005 * bison.simple: New file.
22007 1993-05-19 Richard Stallman <rms@gnu.org>
22009 * doc/bison.texinfo: New file.
22011 1993-05-07 Noah Friedman <friedman@gnu.org>
22013 * Makefile.in: *** empty log message ***
22015 1993-04-28 Noah Friedman <friedman@gnu.org>
22017 * src/reader.c: *** empty log message ***
22019 1993-04-23 Noah Friedman <friedman@gnu.org>
22021 * src/alloc.h: entered into RCS
22023 1993-04-20 David J. MacKenzie <djm@gnu.org>
22025 * src/version.c: *** empty log message ***
22027 * src/files.c, src/allocate.c:
22030 * src/reader.c: *** empty log message ***
22032 * src/lex.c: entered into RCS
22034 * src/conflicts.c: New file.
22036 * src/symtab.c: entered into RCS
22038 * src/alloc.h: New file.
22040 * src/LR0.c: entered into RCS
22042 1993-04-18 Noah Friedman <friedman@gnu.org>
22044 * src/reader.c: New file.
22046 * src/version.c: *** empty log message ***
22048 1993-04-18 Noah Friedman <friedman@gnu.org>
22050 * Makefile.in: *** empty log message ***
22052 1993-04-17 Noah Friedman <friedman@gnu.org>
22054 * Makefile.in: *** empty log message ***
22056 1993-04-15 Richard Stallman <rms@gnu.org>
22058 * src/main.c, src/files.c:
22061 1993-04-15 Noah Friedman <friedman@gnu.org>
22063 * configure.in: entered into RCS
22065 * configure.in: *** empty log message ***
22067 * configure.in: New file.
22069 1993-04-14 Richard Stallman <rms@gnu.org>
22071 * Makefile.in: New file.
22073 1993-04-13 Richard Stallman <rms@gnu.org>
22075 * src/version.c: New file.
22077 1993-03-25 Richard Stallman <rms@gnu.org>
22079 * src/output.c: entered into RCS
22081 1992-09-25 Richard Stallman <rms@gnu.org>
22083 * configure.bat: entered into RCS
22085 1992-06-22 Richard Stallman <rms@gnu.org>
22087 * src/vmsgetargs.c: entered into RCS
22089 1992-06-22 Richard Stallman <rms@gnu.org>
22091 * doc/bison.rnh: entered into RCS
22093 1992-04-20 David J. MacKenzie <djm@gnu.org>
22095 * README: entered into RCS
22097 1992-01-22 Richard Stallman <rms@gnu.org>
22099 * src/machine.h: entered into RCS
22101 1991-12-21 Richard Stallman <rms@gnu.org>
22103 * src/lalr.c, src/closure.c:
22106 1991-12-20 Richard Stallman <rms@gnu.org>
22108 * src/state.h: entered into RCS
22110 1991-12-18 Richard Stallman <rms@gnu.org>
22112 * src/print.c, src/nullable.c, src/derives.c:
22115 1991-11-03 David J. MacKenzie <djm@gnu.org>
22117 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22120 1988-09-09 Richard Stallman <rms@gnu.org>
22122 * src/bison.hairy: entered into RCS
22124 1987-12-16 Richard Stallman <rms@gnu.org>
22126 * REFERENCES: entered into RCS
22131 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22132 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22133 Free Software Foundation, Inc.
22135 Copying and distribution of this file, with or without
22136 modification, are permitted provided the copyright notice and this
22137 notice are preserved.