]> git.saurik.com Git - bison.git/blob - ChangeLog
%define token.prefix.
[bison.git] / ChangeLog
1 2008-11-13 Akim Demaille <demaille@gostai.com>
2
3 %define token.prefix.
4 Provide a means to add a prefix to the name of the tokens as output in the
5 generated files. Because of name clashes, it is good to have such a
6 prefix such as TOK_ that protects from names such as EOF, FILE etc.
7 But it clutters the grammar itself.
8
9 * data/bison.m4 (token.prefix): Empty by default.
10 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
11 * data/lalr1.cc (b4_symbol): Ditto.
12
13 2008-11-13 Akim Demaille <demaille@gostai.com>
14
15 Compute at M4 time some of the subtractions.
16 * data/lalr1.cc (b4_substract): New.
17 (b4_rhs_data): Use it.
18
19 2008-11-13 Akim Demaille <demaille@gostai.com>
20
21 symbol::token.
22 This is allows the user to get the type of a token return by
23 yylex.
24
25 * data/lalr1.cc (symbol::token): New.
26 (yytoknum_): Define when %define lex_symbol, independently of
27 %debug.
28 (yytoken_number_): Move into...
29 (symbol::token): here, since that's the only use.
30 The other one is YYPRINT which was not officially supported
31 by lalr1.cc, and anyway it did not work since YYPRINT uses this
32 array under a different name (yytoknum).
33
34 2008-11-13 Akim Demaille <demaille@gostai.com>
35
36 YYERRCODE.
37 * TODO (YYERRCODE): Mention the case of $undef.
38
39 2008-11-13 Akim Demaille <demaille@gostai.com>
40
41 TODO: YYPRINT.
42 * TODO (YYPRINT): New.
43
44 2008-11-13 Akim Demaille <demaille@gostai.com>
45
46 Comment changes.
47 * data/lalr1.cc, data/yacc.c: Fix the description of the
48 yytranslate and yytoknum tables.
49
50 2008-11-13 Akim Demaille <demaille@gostai.com>
51
52 Define make_symbol in the header.
53 To reach good performances these functions should be inlined (yet this is
54 to measure precisely). To this end they must be available to the caller.
55
56 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
57 location_type with the class name.
58 Since will now be output in the header, declare "inline".
59 No longer use b4_symbol_constructor_specializations, but
60 b4_symbol_constructor_definitions in the header.
61 Don't call it in the *.cc file.
62
63 2008-11-13 Akim Demaille <demaille@gostai.com>
64
65 Define yytranslate in the header for lex_symbol.
66 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
67 into the header file when using %define lex_symbol.
68 (yytranslate_): Declare inline.
69
70 2008-11-13 Akim Demaille <demaille@gostai.com>
71
72 Define the constructors of symbol_type in b4_symbol_constructor_definitions.
73 The constructors are called by the make_symbol functions, which a
74 forthcoming patch will move elsewhere. Hence the interest of putting them
75 together.
76
77 The stack_symbol_type does not need to be moved, it is used only by the
78 parser.
79
80 * data/lalr1.cc: Move symbol_type and symbol_base_type
81 constructors into...
82 (b4_symbol_constructor_definitions): here.
83 Adjust.
84
85 2008-11-13 Akim Demaille <demaille@gostai.com>
86
87 Make it easier to move the definition of yytranslate_.
88 Forthcoming changes will make it possible to use yytranslate_
89 from outside the parser implementation file.
90
91 * data/lalr1.cc (b4_yytranslate_definition): New.
92 Use it.
93
94 2008-11-13 Akim Demaille <demaille@gostai.com>
95
96 Remove useless class specification.
97 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
98 to refer to the class name to use a type defined by the class for
99 arguments of member functions.
100
101 2008-11-13 Akim Demaille <demaille@gostai.com>
102
103 Finer input type for yytranslate.
104 This patch is debatable: the tradition expects yylex to return an int
105 which happens to correspond to token_number (which is an enum). This
106 allows for instance to return characters (such as '*' etc.). But this
107 goes against the stronger typing I am trying to have with the new
108 lex interface which return a symbol_type. So in this case, feed
109 yytranslate_ with a token_type.
110
111 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
112 expect a token_type.
113
114 2008-11-13 Akim Demaille <demaille@gostai.com>
115
116 Honor lex-params in %define lex_symbol mode.
117 * data/lalr1.cc: Use b4_lex_param.
118
119 2008-11-13 Akim Demaille <demaille@gostai.com>
120
121 Simplify names.
122 * src/output.c (symbol_definitions_output): Rename symbol
123 attributes type_name and has_type_name as type and has_type.
124 * data/lalr1.cc: Adjust uses.
125
126 2008-11-13 Akim Demaille <demaille@gostai.com>
127
128 Use b4_type_names for the union type.
129 The union used to compute the size of the variant used to iterate over the
130 type of all the symbols, with a lot of redundancy. Now iterate over the
131 lists of symbols having the same type-name.
132
133 * data/lalr1.cc (b4_char_sizeof_): New.
134 (b4_char_sizeof): Use it.
135 Adjust to be called with a list of numbers instead of a single
136 number.
137 Adjust its caller for new-line issues.
138
139 2008-11-13 Akim Demaille <demaille@gostai.com>
140
141 Define the "identifier" of a symbol.
142 Symbols may have several string representations, for instance if they
143 have an alias. What I call its "id" is a string that can be used as
144 an identifier. May not exist.
145
146 Currently the symbols which have the "tag_is_id" flag set are those that
147 don't have an alias. Look harder for the id.
148
149 * src/output.c (is_identifier): Move to...
150 * src/symtab.c (is_identifier): here.
151 * src/symtab.h, src/symtab.c (symbol_id_get): New.
152 * src/output.c (symbol_definitions_output): Use it to define "id"
153 and "has_id".
154 Remove the definition of "tag_is_id".
155 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
156 "tag_is_id" were used to produce code.
157 We still use "tag" for documentation.
158
159 2008-11-11 Akim Demaille <demaille@gostai.com>
160
161 Locations are no longer required by lalr1.cc.
162 * data/lalr1.cc (_b4_args, b4_args): New.
163 Adjust all uses of locations to make them optional.
164 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
165 (AT_CHECK_NAMESPACE): Check the use of locations.
166 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
167 without locations with lalr1.cc.
168 Test these cases.
169 * tests/output.at: Check lalr1.cc with and without location
170 support.
171 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
172 Don't use locations.
173
174 2008-11-11 Akim Demaille <demaille@gostai.com>
175
176 AT_FULL_COMPILE.
177 * tests/local.at (AT_FULL_COMPILE): New.
178 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
179
180 2008-11-11 Akim Demaille <demaille@gostai.com>
181
182 Support parens in calc++.
183 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
184 * examples/calc++/test (run): Check the expected output.
185 Adjust callers.
186 Check parens too.
187
188 2008-11-11 Akim Demaille <demaille@gostai.com>
189
190 Simplify lalr1.cc since %defines is mandatory.
191 * data/lalr1.cc: Remove useless calls to b4_defines_if.
192
193 2008-11-11 Akim Demaille <demaille@gostai.com>
194
195 TODO: yyfmt.
196 * TODO (yysyntax_error): New item.
197
198 2008-11-11 Akim Demaille <demaille@gostai.com>
199
200 Prefer M4 to CPP.
201 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
202 YYERROR_VERBOSE.
203
204 2008-11-11 Akim Demaille <demaille@gostai.com>
205
206 Support i18n of the parse error messages.
207 * TODO (lalr1.cc/I18n): Remove.
208 * data/lalr1.cc (yysyntax_error_): Support the translation of the
209 error messages, as done in yacc.c.
210 Stay within the yy* pseudo namespace.
211
212 2008-11-11 Akim Demaille <demaille@gostai.com>
213
214 More TODO.
215 * TODO (single stack, yysyntax_error): New.
216
217 2008-11-11 Akim Demaille <demaille@gostai.com>
218
219 Make it possible to return a symbol_type from yylex.
220 * data/lalr1.cc (b4_lex_symbol_if): New.
221 (parse): When lex_symbol is defined, expected yylex to return the
222 complete lookahead.
223 * etc/bench.pl.in (generate_grammar_list): Extend to support this
224 yylex interface.
225 (bench_variant_parser): Exercise it.
226
227 2008-11-11 Akim Demaille <demaille@gostai.com>
228
229 Remove useless bench case.
230 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
231 no longer used.
232
233 2008-11-11 Akim Demaille <demaille@gostai.com>
234
235 Improve display of directives.
236 * etc/bench.pl.in (parse_term): Don't add useless eol.
237
238 2008-11-11 Akim Demaille <demaille@gostai.com>
239
240 Use string_cast in the bench.
241 * etc/bench.pl.in (generate_grammar_list): Define and use
242 string_cast.
243
244 2008-11-11 Akim Demaille <demaille@gostai.com>
245
246 Replace yychar with a Boolean.
247 * data/lalr1.cc (parse::yychar): Replace by...
248 (parse::yyempty): this.
249
250 2008-11-11 Akim Demaille <demaille@gostai.com>
251
252 Factor the tables.
253 * TODO: New item.
254
255 2008-11-11 Akim Demaille <demaille@gostai.com>
256
257 Let yytranslate handle the eof case.
258 * data/lalr1.cc (yytranslate_): Handle the EOF case.
259 Adjust callers.
260 No longer expect yychar to be equal to yyeof_, rather, test the
261 lookahead's (translated) kind.
262
263 2008-11-11 Akim Demaille <demaille@gostai.com>
264
265 yychar cannot be empty in yyerrlab.
266 * TODO (yychar == yyempty_): New.
267 * data/lalr1.cc: Remove the handling of this case.
268 This eases forthcoming changes related to yychar and yytranslate.
269
270 2008-11-11 Akim Demaille <demaille@gostai.com>
271
272 Bench: syntactic sugar for %define/#define.
273 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
274 (&bench_push_parser, bench_variant_parser): Use this feature.
275 (&eat): New.
276 Use it.
277
278 2008-11-11 Akim Demaille <demaille@gostai.com>
279
280 Less memory pressure on the "list" bench.
281 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
282 the values, to limit memory pressure.
283
284 2008-11-11 Akim Demaille <demaille@gostai.com>
285
286 Introduce make_symbol.
287 make_symbol provides a means to construct a full symbol (kind, value,
288 location) in a single shot. It is meant to be a Symbol constructor,
289 parameterized by the symbol kind so that overloading would prevent
290 incorrect kind/value pairs. Unfortunately parameterized constructors do
291 not work well in C++ (unless the parameter also appears as an argument,
292 which is not acceptable), hence the use of a function instead of a
293 constructor.
294
295 * data/lalr1.cc (b4_symbol_constructor_declaration_)
296 (b4_symbol_constructor_declarations)
297 (b4_symbol_constructor_specialization_)
298 (b4_symbol_constructor_specializations)
299 (b4_symbol_constructor_definition_)
300 (b4_symbol_constructor_definitions): New.
301 Use them where appropriate to generate declaration, declaration of
302 the specializations, and implementations of the templated
303 overloaded function "make_symbol".
304 (variant::variant): Always define a default ctor.
305 Also provide a copy ctor.
306 (symbol_base_type, symbol_type): New ctor overloads for value-less
307 symbols.
308 (symbol_type): Now public, so that functions such as yylex can use
309 it.
310
311 2008-11-11 Akim Demaille <demaille@gostai.com>
312
313 Inform m4 whether a tag is a valid id.
314 * src/output.c (is_identifier): New.
315 (symbol_definitions_output): Use it to define tag_is_id.
316 But maybe this should be done at m4 level?
317
318 2008-11-11 Akim Demaille <demaille@gostai.com>
319
320 Test 214 was failing: it greps with a pattern containing [ ]*
321 which obviously meant to catch spaces and tabs, but contained only
322 spaces. Tabulations in sources are a nuisance, so to simplify the
323 matter, get rid of all the tabulations in the Java sources. The
324 other skeletons will be treated equally later.
325
326 * data/java.m4, data/lalr1.java: Untabify.
327 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
328 tabulations are no longer generated.
329
330 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
331
332 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
333 * configure.ac: Adjust usage.
334 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
335 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
336 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
337
338 2008-11-10 Di-an Jan <dianj@freeshell.org>
339
340 Workaround Java's ``code too large'' problem for parser tables
341 in most cases, by using one function per initialization.
342 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
343 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
344 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
345 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
346 (yytname_): Use b4_typed_parser_table.
347 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
348 ``code too large'' error.
349
350 2008-11-10 Di-an Jan <dianj@freeshell.org>
351
352 * NEWS: Document them.
353
354 General Java skeleton improvements.
355 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
356 using gcj < 4.3 in the testsuite, according to comments in
357 gnulib/m4/javacomp.m4.
358 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
359 location_type, position_type): Remove extraneous brackets from
360 b4_percent_define_default.
361 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
362 m4_define and m4_define_default.
363 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
364 which marks the end of user code with appropriate syncline, like all
365 the other skeletons.
366 (b4_user_post_prologue): Add. Don't silently drop.
367 (yylex): Remove.
368 (parse): Inline yylex.
369 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
370 (%{...%}): Fix typo of %code imports.
371 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
372
373 Support annotations on parser class with %define annotations.
374 * data/lalr1.java (annotations): Add to parser class modifier.
375 * doc/bison.texinfo (Java Parser Interface): Document
376 %define annotations.
377 (Java Declarations Summary): Document %define annotations.
378 * tests/java.at (Java parser class modifiers): Test annotations.
379
380 Do not generate code for %error-verbose unless requested.
381 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
382 Make private. Make conditional on %error-verbose.
383 (getErrorVerbose, setErrorVerbose): New.
384 (yytnamerr_): Make conditional on %error-verbose.
385 (yysyntax_error): Make some code conditional on %error-verbose.
386 * doc/bison.texinfo (Java Bison Interface): Remove the parts
387 about %error-verbose having no effect.
388 (getErrorVerbose, setErrorVerbose): Document.
389
390 Move constants for token names to Lexer interface.
391 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
392 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
393 (parse): Qualify EOF to Lexer.EOF.
394 * doc/bison.texinfo (Java Parser Interface): Move documentation of
395 EOF and token names to Java Lexer Interface.
396 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
397
398 Make yyerror public.
399 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
400 (yyerror): Change to public. Add Javadoc comments. Use longer
401 parameter names. Make the body rather than the declarator
402 conditional on %locations.
403 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
404
405 Allow user to add code to the constructor with %code init.
406 * data/java.m4 (b4_init_throws): New, for %define init_throws.
407 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
408 Add %code init to the front of the constructor body.
409 * doc/bison.texinfo (YYParser.YYParser): Document %code init
410 and %define init_throws.
411 (Java Declarations Summary): Document %code init and
412 %define init_throws.
413 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
414 (Java constructor init and init_throws): Add tests.
415
416 2008-11-10 Akim Demaille <demaille@gostai.com>
417
418 Update TODO.
419 * TODO (-D): is implemented.
420 (associativity): Same precedence must have the same associativity.
421 For instance, how can a * b / c be parsed if * is %left and / is
422 %right?
423 (YYERRORCODE, YYFAIL, YYBACKUP): New.
424
425 2008-11-10 Akim Demaille <demaille@gostai.com>
426
427 Formatting changes.
428
429 2008-11-10 Akim Demaille <demaille@gostai.com>
430
431 More information about the symbols.
432 * src/output.c (type_names_output): Document all the symbols,
433 including those that don't have a type-name.
434 (symbol_definitions_output): Define "is_token" and
435 "has_type_name".
436 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
437 type-name, now that they are defined too in b4_type_names.
438
439 2008-11-10 Akim Demaille <demaille@gostai.com>
440
441 Regen.
442
443 2008-11-10 Akim Demaille <demaille@gostai.com>
444
445 Make parser::yytranslate static.
446 Small speedup (1%) on the list grammar. And makes yytranslate_ available
447 in non member functions.
448
449 * data/lalr1.cc (yytranslate_): Does not need to be a instance
450 function.
451
452 2008-11-10 Akim Demaille <demaille@gostai.com>
453
454 Avoid trailing spaces.
455 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
456 * data/lalr1.cc: Don't indent before rule and symbol actions, as
457 they can be empty, and anyway this incorrectly indents the first
458 action.
459
460 2008-11-10 Akim Demaille <demaille@gostai.com>
461
462 Comment changes.
463
464 2008-11-10 Akim Demaille <demaille@gostai.com>
465
466 Use "enum" for integral constants.
467 This is just nicer to read, I observed no speedup.
468
469 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
470 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
471 (yyuser_token_number_max_, yyundef_token_): Move into...
472 (yytranslate_): here.
473
474 2008-11-10 Akim Demaille <demaille@gostai.com>
475
476 Shortcuts in bench directives.
477 * etc/bench.pl.in (parse_dirs): New.
478 Use it.
479 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
480 Create the benches in "benches/".
481
482 2008-11-10 Akim Demaille <demaille@gostai.com>
483
484 Formatting changes.
485 * data/lalr1.cc: here.
486
487 2008-11-10 Akim Demaille <demaille@gostai.com>
488
489 Adjust verbose message to using emacs.
490 * etc/bench.pl.in: Inform compilation-mode when we change the
491 directory.
492 (generate_grammar_list): Recognize %define "variant" in addition
493 to %define variant.
494
495 2008-11-10 Akim Demaille <demaille@gostai.com>
496
497 Classify symbols by type-name.
498 * src/uniqstr.h (UNIQSTR_CMP): New.
499 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
500 (type_names_output): New.
501 (muscles_output): Use it.
502 * data/lalr1.cc (b4_symbol_action_): Remove.
503 (b4_symbol_case_, b4_type_action_): New.
504 Adjust uses of b4_symbol_action_ to use b4_type_action_.
505
506 2008-11-10 Akim Demaille <demaille@gostai.com>
507
508 Change the handling of the symbols in the skeletons.
509 Before we were using tables which lines were the symbols and which
510 columns were things like number, tag, type-name etc. It is was
511 difficult to extend: each time a column was added, all the numbers had
512 to be updated (you asked for colon $2, not for "tag"). Also, it was
513 hard to filter these tables when only a subset of the symbols (say the
514 tokens, or the nterms, or the tokens that have and external number
515 *and* a type-name) was of interest.
516
517 Now instead of monolithic tables, we define one macro per cell. For
518 instance "b4_symbol(0, tag)" is a macro name which contents is
519 self-decriptive. The macro "b4_symbol" provides easier access to
520 these cells.
521
522 * src/output.c (type_names_output): Remove.
523 (symbol_numbers_output, symbol_definitions_output): New.
524 (muscles_output): Call them.
525 (prepare_symbols): Define b4_symbols_number.
526
527 2008-11-10 Akim Demaille <demaille@gostai.com>
528
529 --trace=muscles
530 * src/getargs.h, src/getargs.c (trace_muscle): New.
531 (trace_types, trace_args): Support it.
532 * src/output.c (output_skeleton): Use it.
533
534 2008-11-10 Akim Demaille <demaille@gostai.com>
535
536 muscles_output.
537 * src/output.c (muscles_output): New, extracted from...
538 (output_skeleton): here.
539 Adjust.
540
541 2008-11-10 Akim Demaille <demaille@gostai.com>
542
543 Formatting changes.
544
545 2008-11-10 Akim Demaille <demaille@gostai.com>
546
547 Update the variant example.
548 * examples/variant.yy: Formatting changes.
549 One stage build.
550
551 2008-11-10 Akim Demaille <demaille@gostai.com>
552
553 Support constructor with an argument.
554 This improves the "list" bench by 2%.
555
556 * data/lalr1.cc (variant::build): Add an overloaded version with
557 an argument.
558 * tests/c++.at (AT_CHECK_VARIANT): Check it.
559
560 2008-11-10 Akim Demaille <demaille@gostai.com>
561
562 Test variants.
563 * tests/c++.at (AT_CHECK_VARIANTS): New.
564 Use it with and without %define assert.
565
566 2008-11-10 Akim Demaille <demaille@gostai.com>
567
568 Add %precedence support.
569 Unfortunately it is not possible to reuse the %prec directive. This
570 is because to please POSIX, we do not require to end the rules with a
571 semicolon. As a result,
572
573 foo: bar %prec baz
574
575 is ambiguous: either a rule which precedence is that of baz, or a rule,
576 and then a declaration of the precedence of the token baz.
577
578 * doc/bison.texinfo: Document %precedence.
579 (Precedence Only): New.
580 * src/assoc.h, src/assoc.c (precedence_assoc): New.
581 * src/conflicts.c (resolve_sr_conflict): Support it.
582 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
583 Parse it.
584 * tests/calc.at: Use %precedence for NEG.
585 * tests/conflicts.at (%precedence does not suffice)
586 (%precedence suffices): New tests.
587
588 2008-11-09 Akim Demaille <demaille@gostai.com>
589
590 Make benches in a sub dirs.
591 * etc/bench.pl.in ($dir): New.
592 Use it.
593 Check the use of constructors with an argument.
594 (bench_variant_parser): Fix.
595
596 2008-11-09 Akim Demaille <demaille@gostai.com>
597
598 fix eof condition
599
600 2008-11-09 Akim Demaille <demaille@gostai.com>
601
602 Fix --help.
603
604 2008-11-09 Akim Demaille <demaille@gostai.com>
605
606 Require the generation of parse-gram.output.
607 * src/Makefile.am (YACC): Pass --report=all.
608
609 2008-11-09 Akim Demaille <demaille@gostai.com>
610
611 Formatting changes.
612
613 2008-11-09 Akim Demaille <demaille@gostai.com>
614
615 Update TODO.
616 * TODO: Remove obsolete items.
617 Update others.
618
619 2008-11-09 Akim Demaille <demaille@gostai.com>
620
621 Enhance bench.pl.
622 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
623 (@token, $grammar, $bench): New.
624 (generate_grammar_variant): Rename as...
625 (generate_grammar_list): this.
626 (generate_grammar): Adjust.
627 (bench_grammar): Rename as...
628 (bench): this.
629 Use it in the various bench-marking routines.
630 (-b, -g): New options.
631
632 2008-11-09 Akim Demaille <demaille@gostai.com>
633
634 Use a static hierarchy for symbols in the C++ parser.
635 * data/lalr1.cc (symbol_base_type, symbol_type)
636 (stack_symbol_type): Make it a static hierarchy.
637 Adjust dependencies.
638
639 2008-11-09 Akim Demaille <demaille@gostai.com>
640
641 bench.pl -d, --directive.
642 * etc/bench.pl.in (@directive): New.
643 (&bench_grammar): Use it.
644 (&bench_list_grammar): New, to provide access to the "variant"
645 grammar.
646 Use it.
647 (getopts): Support -d, --directive.
648
649 2008-11-09 Akim Demaille <demaille@gostai.com>
650
651 Use inline for small operations.
652 * data/lalr1.cc (symbol_base_type, symbol_type)
653 (stack_symbol_type): Declare constructor and other operations as
654 inline.
655 (yy_destroy_): Inline.
656
657 2008-11-09 Akim Demaille <demaille@gostai.com>
658
659 Introduce a hierarchy for symbols.
660 * data/lalr1.cc (symbol_base_type, symbol_type): New.
661 (data_type): Rename as...
662 (stack_symbol_type): this.
663 Derive from symbol_base_type.
664 (yy_symbol_value_print_): Merge into...
665 (yy_symbol_print_): this.
666 Rename as...
667 (yy_print_): this.
668 (yydestruct_): Rename as...
669 (yy_destroy_): this.
670 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
671 (parser::parse): yyla is now of symbol_type.
672 Use its type member instead of yytoken.
673
674 2008-11-09 Akim Demaille <demaille@gostai.com>
675
676 Rename data_type and stack_symbol_type.
677 * data/lalr1.cc (data_type): Rename as...
678 (stack_symbol_type): this.
679
680 2008-11-09 Akim Demaille <demaille@gostai.com>
681
682 Handle semantic value and location together.
683 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
684 yydata.value and yydata.location.
685 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
686 (YY_SYMBOL_PRINT): Now take semantic value and location as a
687 single arg.
688 Adjust all callers.
689 (yydestruct_): New overload for a stack symbol.
690
691 2008-11-09 Akim Demaille <demaille@gostai.com>
692
693 Push a complete symbol, not connected parts.
694 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
695 state, value and location.
696 Adjust callers.
697
698 2008-11-09 Akim Demaille <demaille@gostai.com>
699
700 Agregate yylval and yylloc.
701 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
702 (parser::yyla): this.
703
704 2008-11-09 Akim Demaille <demaille@gostai.com>
705
706 Rely on the state stack to display reduction traces.
707 To display rhs symbols before a reduction, we used information about the rule
708 reduced, which required the tables yyrhs and yyprhs. Now use rely only on the
709 state stack to get the same information.
710
711 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
712 Use them.
713 (parser::yyrhs_, parser::yyprhs_): Remove.
714 (parser::yy_reduce_print_): Use the state stack.
715
716 2008-11-09 Akim Demaille <demaille@gostai.com>
717
718 Fuse yyval and yyloc into yylhs.
719 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
720 yylhs.
721 (parse): Replace yyval and yyloc with yylhs.value and
722 yylhs.location.
723 After a user action, compute yylhs.state earlier.
724 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
725 fresh error_token.
726
727 2008-11-09 Di-an Jan <dianj@freeshell.org>
728
729 Remove unused variable.
730 * src/output.c (type_names_output): Remove unused variable sep.
731
732 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
733
734 Change tests/output.at quoting.
735 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
736 expanding arguments.
737
738 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
739
740 Don't add a semicolon to actions for %skeleton or %language.
741 It breaks Java test cases as reported by Akim Demaille.
742 * src/scan-code.l: Implement.
743
744 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
745
746 Clean up %skeleton and %language priority implementation.
747 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
748 remove static qualifier because others will soon need to see it.
749 (language_prio): Likewise.
750 (getargs): Use command_line_prio rather than 0.
751 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
752 enum fields.
753 (skeleton_prio): Extern it.
754 (language_prio): Extern it.
755 * src/parse-gram.y: Use grammar_prio rather than 1.
756
757 2008-11-07 Akim Demaille <demaille@gostai.com>
758
759 Moving push traces into yypush_.
760 * data/lalr1.cc (yypush_): Now takes a optional trace message.
761 Adjust all uses.
762
763 2008-11-07 Akim Demaille <demaille@gostai.com>
764
765 The single-stack C++ parser is now the standard one.
766 * data/lalr1.cc: Rename as...
767 * data/lalr1-split.cc: this.
768 * data/lalr1-fusion.cc: Rename as...
769 * data/lalr1.cc: this.
770 * etc/bench.pl.in: Adjust.
771
772 2008-11-07 Akim Demaille <demaille@gostai.com>
773
774 Avoid empty-if warnings.
775 Reported by Quentin Hocquet.
776
777 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
778 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
779
780 2008-11-07 Akim Demaille <demaille@gostai.com>
781
782 Pass command line location to skeleton_arg and language_argmatch.
783 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
784 The location argument is now mandatory.
785 Adjust all dependencies.
786 (getargs): Use command_line_location.
787
788 2008-11-07 Akim Demaille <demaille@gostai.com>
789
790 -D, --define.
791 * src/getargs.c (usage): Document -D.
792 Fix help string for --locations.
793 (command_line_location): New.
794 (short_options, long_options, getargs): Support -D, --define.
795 (getargs): Move -d support at the right place.
796 * doc/bison.texinfo (Bison Options): Update.
797 * tests/input.at (%define, --define): New.
798
799 2008-11-07 Akim Demaille <demaille@gostai.com>
800
801 Initialize the muscle table before parsing the command line.
802 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
803 (getargs): Define file_name.
804 * src/main.c (main): Initialize muscle_tab before calling
805 getargs.
806 * src/muscle_tab.c (muscle_init): No longer define file_name, as
807 its value is not available yet.
808
809 2008-11-07 Akim Demaille <demaille@gostai.com>
810
811 Locations without columns for command line arguments.
812 * src/location.c (location_print): Don't display negative columns.
813 * src/location.h: Document this.
814
815 2008-11-07 Akim Demaille <demaille@gostai.com>
816
817 Fix --help.
818 * src/getargs.c (usage): Fix help string for -W.
819
820 2008-11-07 Akim Demaille <demaille@gostai.com>
821
822 Handle more general types of option arguments.
823 * build-aux/cross-options.pl: The argument ends at the first
824 space, not the first non-symbol character.
825 Use @var for each word appearing the argument description.
826
827 2008-11-07 Akim Demaille <demaille@gostai.com>
828
829 Destroy the variants that remain on the stack in case of error.
830 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
831 destructor.
832 Display the value only if yymsg is nonnull.
833 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
834
835 2008-11-07 Akim Demaille <demaille@gostai.com>
836
837 Add "%define assert" to variants.
838 This is used to help the user catch cases where some value gets
839 ovewritten by a new one. This should not happen, as this will
840 probably leak.
841
842 Unfortunately this uncovered a bug in the C++ parser itself: the
843 lookahead value was not destroyed between two calls to yylex. For
844 instance if the previous lookahead was a std::string, and then an int,
845 then the value of the std::string was correctly taken (i.e., the
846 lookahead was now an empty string), but std::string structure itself
847 was not reclaimed.
848
849 This is now done in variant::build(other&) (which is used to take the
850 value of the lookahead): other is not only stolen from its value, it
851 is also destroyed. This incurs a new performance penalty of a few
852 percent, and union becomes faster again.
853
854 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
855 (b4_variant_if): New.
856 (variant::built): New.
857 Use it whereever the status of the variant changes.
858 * etc/bench.pl.in: Check the penalty of %define assert.
859
860 2008-11-07 Akim Demaille <demaille@gostai.com>
861
862 Use "%define variant" in bench.pl.
863 * etc/bench.pl.in: No longer use the pseudo directive %variants,
864 just use %define variants.
865
866 2008-11-07 Akim Demaille <demaille@gostai.com>
867
868 Regen.
869 * src/parse-gram.h, src/parse-gram.c: Regen.
870
871 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
872
873 Fix user actions without a trailing semicolon.
874 Reported by Sergei Steshenko at
875 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
876 * THANKS (Sergei Steshenko): Add.
877 * src/scan-code.l (SC_RULE_ACTION): Fix it.
878 * tests/regression.at (Fix user actions without a trailing semicolon):
879 New test case.
880
881 2008-11-04 Akim Demaille <demaille@gostai.com>
882
883 Use b4_copyright_years.
884 * data/yacc.c (b4_copyright_years): New.
885 Fix its value according to the comments in the file.
886 Use it and undefine it.
887
888 2008-11-04 Akim Demaille <demaille@gostai.com>
889
890 Formatting changes.
891 * data/lalr1-fusion.cc, src/parse-gram.y: here.
892
893 2008-11-04 Akim Demaille <demaille@gostai.com>
894
895 Formatting changes.
896 * data/lalr1-fusion.cc: here.
897
898 2008-11-04 Akim Demaille <demaille@gostai.com>
899
900 Use strict on bench.pl.
901 * etc/bench.pl.in (&run, &generate_grammar): New.
902 Rename the grammar generating functions for consistency.
903 Change the interface so that the list of benches to run is passed
904 as (optionless) arguments.
905 (&compile): Use &run.
906
907 2008-11-04 Akim Demaille <demaille@gostai.com>
908
909 Remove spurious initial empty lines.
910 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
911 * data/yacc.c: End the @output lines with an @.
912
913 2008-11-04 Akim Demaille <demaille@gostai.com>
914
915 Improve the display of sizes.
916 * etc/bench.p.in: Higher precision.
917 Sort by decreasing size.
918
919 2008-11-04 Akim Demaille <demaille@gostai.com>
920
921 Don't memcpy C++ structures.
922 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
923 arguments.
924 (variant::build): New overload for
925 copy-construction-that-destroys.
926 (variant::swap): New.
927 (parser::yypush_): Use it in variant mode.
928
929 2008-11-04 Akim Demaille <demaille@gostai.com>
930
931 Better defaults for bench.pl.
932 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
933 default values.
934 Adjust &verbose uses.
935 (-q, --quiet): New.
936
937 2008-11-04 Akim Demaille <demaille@gostai.com>
938
939 Make variant.yy more complex.
940 std::list cannot be copied via memcpy, they are more demanding than
941 std::string. Use one std::list to strengthen the test.
942
943 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
944 Adjust.
945 Create a list of strings, instead of a single large string.
946
947 2008-11-04 Akim Demaille <demaille@gostai.com>
948
949 bench.pl --bench.
950 * etc/bench.pl.in (--bench, $bench): New.
951
952 2008-11-04 Akim Demaille <demaille@gostai.com>
953
954 Sort methods.
955 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
956 Define it after as().
957
958 2008-11-04 Akim Demaille <demaille@gostai.com>
959
960 Useless parens.
961 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
962
963 2008-11-04 Akim Demaille <demaille@gostai.com>
964
965 Issue missing synclines after user actions.
966 * data/c.m4 (b4_case): Issue synclines on the output file.
967
968 2008-11-04 Akim Demaille <demaille@gostai.com>
969
970 Remove trailing empty line.
971 * data/lalr1-fusion.cc: Don't add an empty line after the user's
972 epilogue.
973
974 2008-11-04 Akim Demaille <demaille@gostai.com>
975
976 Fix output of copyright years.
977 * data/bison.m4 (b4_copyright): Fix the indentation of the
978 copyright year paragraph.
979 Use b4_copyright_years when no years are given.
980 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
981 (b4_copyright_years): New.
982 Use it.
983
984 2008-11-04 Akim Demaille <demaille@gostai.com>
985
986 Avoid the spurious initial empty line.
987 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
988 the end of @output request to suppress the empty line that
989 results.
990
991 2008-11-04 Akim Demaille <demaille@gostai.com>
992
993 Remove parser::rhs_number_type.
994 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
995 (yyrhs_): Use b4_table_define.
996
997 2008-11-04 Akim Demaille <demaille@gostai.com>
998
999 Fix iteration type.
1000 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1001
1002 2008-11-04 Akim Demaille <demaille@gostai.com>
1003
1004 Factor the declaration of the integer tables.
1005 * data/lalr1-fusion.cc (b4_table_define): New.
1006 Use it.
1007
1008 2008-11-03 Akim Demaille <demaille@gostai.com>
1009
1010 Fix indentation of tables in lalr1.cc
1011 * data/lalr1-fusion.cc: Fix the indentation.
1012
1013 2008-11-03 Akim Demaille <demaille@gostai.com>
1014
1015 Destroy the lhs symbols after reduction.
1016 * data/lalr1-fusion.cc (parse): After the user action, when in
1017 variant mode, destroy the lhs symbols.
1018
1019 2008-11-03 Akim Demaille <demaille@gostai.com>
1020
1021 Simplify yysyntax_error_ use.
1022 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
1023 type, but make it unnamed in the declaration when it is not used.
1024
1025 2008-11-03 Akim Demaille <demaille@gostai.com>
1026
1027 Let yy::variant::build return an lvalue.
1028 * data/lalr1-fusion.cc (variant::build): Return a reference to the
1029 object.
1030
1031 2008-11-03 Akim Demaille <demaille@gostai.com>
1032
1033 Define yy::variant only when needed.
1034 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
1035 used.
1036
1037 2008-11-03 Akim Demaille <demaille@gostai.com>
1038
1039 Bench the three-stack lalr1.cc.
1040 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
1041 one-stack one.
1042
1043 2008-11-03 Akim Demaille <demaille@gostai.com>
1044
1045 Fail on parse error in calc++.
1046 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
1047 status.
1048 * examples/calc++/test ($me, $number, $exit, run): New.
1049 Use them to propagate errors to the exit status.
1050
1051 2008-11-03 Akim Demaille <demaille@gostai.com>
1052
1053 Don't specify the skeleton twice in the example.
1054 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
1055 file does what is needed.
1056
1057 2008-11-03 Akim Demaille <demaille@gostai.com>
1058
1059 bench: Improve output.
1060 * etc/bench.pl.in (bench_grammar): Tune the printf format.
1061
1062 2008-11-03 Akim Demaille <demaille@gostai.com>
1063
1064 bench: check impact of %debug on variants.
1065 * etc/bench.pl.in (variant_grammar): Fix the computation of
1066 $variant.
1067 Generate a grammar file that can work with or without %debug.
1068 Do use the @directive.
1069 (bench_variant_parser): Check impact of %debug.
1070 (@directives): Rename all the occurrences to...
1071 (@directive): this, for consistency.
1072
1073 2008-11-03 Akim Demaille <demaille@gostai.com>
1074
1075 bench: report the size too.
1076 * etc/bench.pl.in ($iterations): Defaults to -3.
1077 (&bench_grammar): Require hireswallclock.
1078 Compute and display the size of the result.
1079 More comments.
1080
1081 2008-11-03 Akim Demaille <demaille@gostai.com>
1082
1083 bench: More use of the verbosity level.
1084 * etc/bench.pl.in ($verbose, &verbose): New.
1085 Use them.
1086 More POD documentation.
1087
1088 2008-11-03 Akim Demaille <demaille@gostai.com>
1089
1090 bench.pl: a command line interface
1091 * etc/bench.pl.in: More doc.
1092 Some fixes in the documentation.
1093 ($cflags, $iterations, &help, &getopt): New.
1094 Use them.
1095 (&variant_grammar): Let the number of stages be 10 times what is
1096 specified.
1097
1098 2008-11-03 Akim Demaille <demaille@gostai.com>
1099
1100 Bench the use of Boost.Variants.
1101 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1102 New.
1103 (&compile): Be ready to compile C++ parsers.
1104 (&bench_push_parser): Move debug information to the outermost
1105 level.
1106 * THANKS: Add Michiel De Wilde.
1107
1108 2008-11-03 Akim Demaille <demaille@gostai.com>
1109
1110 bench.pl: Pass directives as a list instead of as a string.
1111 * etc/bench.pl.in (&directives): New.
1112 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1113 directives.
1114 (&triangular_grammar): Do use the directives (were ignored).
1115 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1116 directives.
1117
1118 2008-11-03 Akim Demaille <demaille@gostai.com>
1119
1120 Improve genericity of bench.pl.
1121 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1122 argument.
1123 (&bench_push_parser): New.
1124 Call it.
1125
1126 2008-11-03 Akim Demaille <demaille@gostai.com>
1127
1128 Add documentation to bench.pl.
1129 * etc/bench.pl.in: Comment changes.
1130
1131 2008-11-03 Akim Demaille <demaille@gostai.com>
1132
1133 Fuse the three stacks into a single one.
1134 In order to make it easy to perform benchmarks to ensure that there are no
1135 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
1136 lalr1-fusion.cc will replace lalr1.cc.
1137
1138 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
1139 test suite, the user must install a symbolic link from lalr1.cc to it.
1140
1141 Instead of having three stacks (state, value, location), use a stack
1142 of triples. This considerably simplifies the code (and it will be
1143 easier not to require locations as currently does the C++ parser),
1144 and also gives a 10% speedup according to etc/bench (probably mainly since
1145 memory allocation is done once instead of three times).
1146
1147 Another motivation is to make it easier to destruct properly
1148 semantic values: now that they are bound to their state (hence
1149 symbol type) it will be easier to call the appropriate destructor.
1150
1151 These changes should probably benefit the C parser too.
1152
1153 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
1154 file.
1155 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1156 from c++.m4.
1157 (state_stack_type, semantic_stack_type, location_stack_type)
1158 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1159 (data_type, stack_type, yystack_): New.
1160 (YYLLOC_DEFAULT, yypush_): Adjust.
1161 (yyerror_range): Now based on data_type, not location_type.
1162
1163 2008-11-03 Akim Demaille <demaille@gostai.com>
1164
1165 Push the state, value, and location at the same time.
1166 This is needed to prepare a forthcoming patch that fuses the three
1167 stacks into one.
1168
1169 * data/lalr1.cc (parser::yypush_): New.
1170 (parser::yynewstate): Change the semantics: instead of arriving to
1171 this label when value and location have been pushed, but yystate
1172 is to be pushed on the state stack, now the three of them must
1173 have been pushed before. yystate still must be the new state.
1174 This allows to use yypush_ everywhere instead of individual
1175 handling of the stacks.
1176
1177 2008-11-03 Akim Demaille <demaille@gostai.com>
1178
1179 Prefer references to pointers.
1180 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1181 definition to use references instead of pointers.
1182 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1183 Take the value and location as references.
1184 Adjust callers.
1185
1186 2008-11-03 Akim Demaille <demaille@gostai.com>
1187
1188 stack::size instead of stack::height.
1189 * data/lalr1.cc (stack::height): Rename as...
1190 (stack::size): this.
1191 Fix the output type.
1192 Comment changes.
1193
1194 2008-11-03 Akim Demaille <demaille@gostai.com>
1195
1196 Use variants to support objects as semantic values.
1197 This patch was inspired by work by Michiel De Wilde. But he used Boost
1198 variants which (i) requires Boost on the user side, (ii) is slow, and
1199 (iii) has useless overhead (the parser knows the type of the semantic value
1200 there is no reason to duplicate this information as Boost.Variants do).
1201
1202 This implementation reserves a buffer large enough to store the largest
1203 objects. yy::variant implements this buffer. It was implemented with
1204 Quentin Hocquet.
1205
1206 * src/output.c (type_names_output): New.
1207 (output_skeleton): Invoke it.
1208 * data/c++.m4 (b4_variant_if): New.
1209 (b4_symbol_value): If needed, provide a definition for variants.
1210 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1211 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1212 (b4_char_sizeof, yy::variant): New.
1213 (parser::parse): If variants are requested, define
1214 parser::union_type, parser::variant, change the definition of
1215 semantic_type, construct $$ before running the user action instead
1216 of performing a default $$ = $1.
1217 * examples/variant.yy: New.
1218 Based on an example by Michiel De Wilde.
1219
1220 2008-11-03 Akim Demaille <demaille@gostai.com>
1221
1222 Parameterize the extraction of semantic values.
1223 To make future changes easier, no longer rely on ".TYPE" being the
1224 way to get a semantic value.
1225
1226 * data/c.m4 (b4_symbol_value): New.
1227 Use it.
1228 * data/c++.m4, data/yacc.c: Use it.
1229 * data/glr.c: Use b4_symbol_value.
1230 (b4_rhs_data): New.
1231 Use it.
1232
1233 2008-11-03 Akim Demaille <demaille@gostai.com>
1234
1235 Prepare easier M4 changes.
1236 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1237 future changes.
1238
1239 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1240
1241 Initiate further development.
1242 * NEWS: Create an empty section for new entries.
1243 * gnulib: Update submodule to HEAD.
1244
1245 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1246
1247 * NEWS: Version 2.4.
1248
1249 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1250
1251 Prepare for next release.
1252 * NEWS: Briefly mention changes since 2.3b.
1253 * README: Say GNU m4 1.4.6, which we've been requiring in release
1254 announcements already, not 1.4.3, which breaks the build.
1255
1256 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1257
1258 Say %language is experimental.
1259 We're thinking of extending it's effect on output file naming. See the
1260 thread at
1261 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1262 * NEWS: Say it's experimental.
1263 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1264 recommend it over %skeleton for now.
1265 (Bison Options): Likewise.
1266 (C++ Bison Interface): Use %skeleton not %language.
1267 (Calc++ Parser): Use %skeleton not %language.
1268 * src/getargs.c (usage): Say it's experimental.
1269
1270 2008-11-01 Di-an Jan <dianj@freeshell.org>
1271 Paolo Bonzini <bonzini@gnu.org>
1272
1273 Support all Java parser class modifiers.
1274 * data/java.m4 (b4_percent_define_get3): New.
1275 (b4_final_if, b4_strictfp_if): New.
1276 * data/lalr1.java (final, strictfp, extends, implements): Support.
1277 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1278 documentation.
1279 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1280 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1281 (AT_CHECK_JAVA_GREP): New.
1282 (Java parser class modifiers): New test.
1283 (Java parser class extends and implements): New test.
1284
1285 Model exception propagation better with throws and lex_throws.
1286 * data/java.m4 (b4_list2): New.
1287 (throws): Change default.
1288 * data/lalr1.java (yyaction): Add throws.
1289 (parse): Add lex_throws in addition to throws.
1290 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1291 * tests/java.at (Java throws specifications): New test.
1292
1293 Improve documentation for Java parsers.
1294 * doc/bison.texinfo (Java Parsers): Add subsections.
1295 Don't quote first argument of %define.
1296 (Java Bison Interface): Document output files. Move documentation
1297 of parser class and merge into Java Parser Interface. Document
1298 features that error out. Document directives with no effect.
1299 Move note about Javadoc higher.
1300 (Java Semantic Values): Explicitly mention stype.
1301 Document that generic types cannot be used.
1302 (Java Location Values): Use @deftypeivar. Document constructors.
1303 Correct return value for toString.
1304 (Java Parser Interface): List undocumented constants/fields.
1305 Move documentation of fields added by %parse-param closer to list
1306 of members. Document that token names are added as fields.
1307 Document constructors accurately. Remove error method.
1308 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1309 Interface. Describe %code lexer and yylex accutately.
1310 Remove documentation that does not match the code.
1311 (Java Action Features): New.
1312 (Java Differences): Add reference. Add item on semantic values.
1313 Add note about @{ ... @}. Clarify %% epilogue placement.
1314 (Java Declarations Summary): New.
1315
1316 Fix Java skeleton.
1317 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1318 (b4_remove_comma): Quote test argument.
1319 (b4_identification): Remove "bison" field.
1320 * tests/java.at (Java parser class and package names): New test.
1321 (Java %parse-param and %lex-param): New test.
1322 (Java stype, position_class and location_class): New test.
1323
1324 2008-10-31 Di-an Jan <dianj@freeshell.org>
1325
1326 * data/lalr1.jave: Update copyright years.
1327 (YYParser): Correct name of "generated from" file in Javadoc:
1328 use b4_file_name instead of @ofile@.
1329 (Location constructor): Correct Javadoc parameter name.
1330 (yylloc): Add missing opening m4 quote after b4_location_if.
1331 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1332 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1333 (YYParser constructor): Correct Javadoc parameter name.
1334
1335 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1336
1337 Always put auxiliary code files in the same dir as other output files.
1338 * src/files.c (compute_file_name_parts): When the user specifies
1339 --output but not --file-prefix, extract the directory prefix from the
1340 file prefix not from the grammar file name. This affects the location
1341 of files like location.hh generated by the C++ skeleton. The includes
1342 in the other output files require this fix.
1343 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1344 for expected output files.
1345 (Output files): Add a test for the above.
1346
1347 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1348
1349 * gnulib: Update submodule to HEAD.
1350
1351 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1352
1353 Update copyright year.
1354 * src/files.c: Here.
1355
1356 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1357
1358 Don't overwrite the input file.
1359 * src/files.c (output_file_name_check): Fatal error if using input file
1360 for output.
1361 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1362 argument.
1363 (Conflicting output files): Add test.
1364
1365 2008-10-28 Akim Demaille <demaille@gostai.com>
1366
1367 Space changes.
1368 * data/lalr1.cc: Formatting changes.
1369
1370 2008-10-28 Akim Demaille <demaille@gostai.com>
1371
1372 Don't define debugging functions when !YYDEBUG.
1373 * data/lalr1.cc (debug_stream, set_debug_stream)
1374 (debug_level_type, debug_level, set_debug_level): Don't
1375 declare them when YYDEBUG is not defined.
1376 The implementation are already YYDEBUG-aware.
1377
1378 2008-10-28 Akim Demaille <demaille@gostai.com>
1379
1380 Prefer "continue" for empty loop bodies.
1381 * etc/bench.pl.in: Use "continue" instead of {}.
1382
1383 2008-10-28 Akim Demaille <demaille@gostai.com>
1384
1385 Space and comments changes.
1386 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1387 * data/c.m4, data/lalr1.cc: Space changes.
1388
1389 2008-10-28 Akim Demaille <demaille@gostai.com>
1390
1391 Make gnulib a submodule.
1392 * gnulib: New.
1393 * .gitmodules (gnulib): New.
1394
1395 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1396
1397 Fix yyerror_range for user-defined location type in C++. Reported by
1398 Georg Sauthoff at
1399 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1400 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1401 * THANKS (Georg Sauthoff): Add.
1402
1403 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1404
1405 Update several administrative files mainly to facilitate releasing.
1406 * HACKING (Administrivia): Make the git-merge-changelog notes more
1407 helpful.
1408 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1409 (Release Procedure): Update for git and add numerous details that were
1410 previously missing.
1411 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1412 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1413 that announcements don't claim we bootstrapped with whatever bison
1414 happened to be in PATH. Add flex as a bootstrap tool.
1415 * Makefile.maint: Remove, previously replaced by maint.mk.
1416 * Makefile.cfg: Remove, and migrate settings to...
1417 * cfg.mk: ... here for the sake of `make announcement'.
1418 * bootstrap.conf (gnulib_modules): Add announce-gen.
1419 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1420 Berry.
1421
1422 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1423
1424 Small but important bugfixes for the Java skeleton.
1425 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1426 (yy_symbol_print): Call toString on yyvaluep.
1427
1428 2008-08-29 Akim Demaille <demaille@gostai.com>
1429
1430 Clarify UPDATED use.
1431 * doc/bison.texinfo: It refers to the last edition of this file,
1432 not to the release date of Bison.
1433 Reported by Joel E. Denny.
1434
1435 2008-08-29 Akim Demaille <demaille@gostai.com>
1436
1437 * README: Update FAQ pointer.
1438 Reported by Joel E. Denny.
1439
1440 2008-08-27 Eric Blake <ebb9@byu.net>
1441
1442 Resync m4sugar from autoconf.
1443 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1444 (m4_init): Adjust to latest m4.git changes.
1445 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1446 effects.
1447 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1448 (_m4_list_cmp): Reduce side effects.
1449
1450 2008-08-27 Akim Demaille <demaille@gostai.com>
1451
1452 Check yyerrok in calc.at.
1453 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1454 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1455 expected.
1456
1457 2008-08-27 Akim Demaille <demaille@gostai.com>
1458
1459 Support yyerrok in lalr1.cc.
1460 YYBACKUP is still to import back into lalr1.cc.
1461 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1462
1463 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1464
1465 For maintainer-check*, don't recompile for a $(VERSION) update.
1466 * cfg.mk: New file.
1467 (_is-dist-target): Override the one in GNUmakefile.
1468 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1469
1470 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1471
1472 Update for recent change to gnulib.
1473 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1474 string.h now.
1475
1476 2008-08-15 Eric Blake <ebb9@byu.net>
1477
1478 Remaining m4sugar merge from autoconf.
1479 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1480 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1481 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1482 * src/output.c (output_skeleton): Tell m4 how to find it.
1483
1484 Partial m4sugar merge from autoconf: m4_map.
1485 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1486 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1487 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1488 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1489 for empty list.
1490 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1491 Likewise.
1492 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1493 declares it.
1494
1495 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1496
1497 Keep .version and PACKAGE_VERSION in sync.
1498 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1499 dependency, and add comments justifying this in more detail. Discussed
1500 starting at
1501 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1502
1503 2008-08-06 Eric Blake <ebb9@byu.net>
1504
1505 Partial m4sugar merge from autoconf: m4_shiftn.
1506 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1507 (m4_shift2, m4_shift3): New macros.
1508 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1509 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1510 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1511 * data/java.m4 (b4_remove_comma): Likewise.
1512
1513 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1514 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1515 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1516 (m4_init): Consolidate wrapped text into single m4_wrap.
1517 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1518 in wrapped text.
1519
1520 2008-08-05 Eric Blake <ebb9@byu.net>
1521
1522 Partial m4sugar merge from autoconf: builtins, version.m4.
1523 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1524 (m4_prepend): Remove, as it is unused and inherently quadratic,
1525 whereas m4_append is linear in newer m4.
1526 (m4_mkstemp): New builtin.
1527 (m4_symbols): Make rename conditional.
1528 (m4_version_prereq): Ensure fatal error if used in bison, which
1529 intentionally lacks version.m4.
1530
1531 Fix comments in m4sugar.
1532 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1533
1534 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1535
1536 Update for recent .gitignore fix in Gnulib.
1537 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1538 anchored .gitignore entries.
1539
1540 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1541
1542 Set gnu or gnits strictness.
1543 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1544 development and gnits strictness for releases. Based on Eric Blake's
1545 suggestion at
1546 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1547
1548 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1549
1550 * NEWS: Clarify documentation of %language.
1551
1552 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1553
1554 Support usage of git-merge-changelog.
1555 * .gitattributes: New.
1556 * HACKING: Document usage of git-merge-changelog.
1557 * bootstrap: Install git-merge-changelog entries in .git/config
1558 if appropriate.
1559
1560 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1561
1562 Remove remaining dependence on CVS Id keyword.
1563 * ChangeLog: For the sake of people still using CVS, don't use dollars
1564 when mentioning Id.
1565 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1566 unusual anyway.
1567 * data/xslt/xml2dot.xsl: Likewise.
1568 * data/xslt/xml2text.xsl: Likewise.
1569 * data/xslt/xml2xhtml.xsl: Likewise.
1570 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1571 * doc/Makefile.am (neutralize): Remove, no longer needed.
1572 (.x.1): Don't use neutralize.
1573 (edit): Don't substitute for ID.
1574 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1575
1576 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1577
1578 Fix dependence on computed configure variables.
1579 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1580 $(top_srcdir)/configure.ac so that changes to computed variables, such
1581 as PACKAGE_VERSION, are seen.
1582 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1583
1584 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1585
1586 Update copyright dates for recent changes.
1587 * Makefile.am: Here.
1588 * src/Makefile.am: Here.
1589 * src/reduce.c: Here.
1590 * tests/reduce.at: Here.
1591
1592 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1593
1594 Use git-version-gen for version names between releases.
1595 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1596 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1597 * .prev-version: New.
1598 * .version.in: Remove.
1599 * ChangeLog: Remove the Id previously used for capturing the CVS
1600 revision.
1601 * GNUmakefile: Remove, now copied from Gnulib.
1602 * Makefile.am: Add code suggested by comments in
1603 build-aux/git-version-gen.
1604 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1605 .prev-version, and .version.
1606 * NEWS (2.3b+): Rename to...
1607 (?.?): ... this because we're dropping the "+" version naming scheme,
1608 but, in general, we still can't be sure of our next release name.
1609 * bootstrap: Add a quick hack to remove from .gitignore the
1610 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1611 entry. This should really be fixed in gnulib instead.
1612 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1613 * configure.ac (AC_INIT): Set version name by invoking
1614 build-aux/git-version-gen.
1615 (AC_CONFIG_FILES): Remove .version, now generated by
1616 build-aux/git-version-gen.
1617 * maint.mk: New, copied from coreutils.
1618 * doc/.cvsignore (bison.1): Add.
1619 * doc/.gitignore (/bison.1): Add.
1620 * doc/bison.1: Remove, generated.
1621 * src/.cvsignore (revision.c): Remove.
1622 * src/.gitignore (/revision.c): Remove.
1623 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1624 (BUILT_SOURCES): Remove revision.c.
1625 (revision.c): Remove.
1626 * src/getargs.c (version): Don't print revision after the VERSION.
1627 * src/revision.h: Remove.
1628
1629 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1630
1631 Fix untranslatable composition of sentences. Reported by Goran
1632 Uddeborg at
1633 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1634 * THANKS (Goran Uddeborg): Add.
1635 * src/reduce.c (reduce_print): Report the number of nonterminals and
1636 rules useless in the grammar in separate sentences.
1637 * tests/reduce.at (Useless Rules): Update output.
1638 (Reduced Automaton): Likewise.
1639 (Underivable Rules): Likewise.
1640 (Empty Language): Likewise.
1641
1642 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1643
1644 Fix some .gitignore and .cvsignore problems.
1645 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1646 (insert_vc_ignore): ... this new function, which prepends `/' to all
1647 .gitignore entries before passing them to insert_sorted_if_absent.
1648 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1649 .cvsignore files are maintained even though Bison developers run
1650 bootstrap while using Git.
1651 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1652 unneeded by Bison.
1653 (gnulib): Add.
1654 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1655 unneeded. Reported by Eric Blake.
1656 * lib/.gitignore (/*~): Add.
1657 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1658 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1659 Blake.
1660 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1661
1662 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1663
1664 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1665 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1666 * bootstrap.conf (gnulib_modules): Add unsetenv.
1667 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1668 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1669 (/setenv.m4): Add.
1670 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1671 the first argument because it may become position-dependent, and unset
1672 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1673 Add comments explaining these issues in more detail.
1674
1675 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1676
1677 Add .gitignore everywhere based on .cvsignore.
1678 * .gitignore: New.
1679 * build-aux/.gitignore: New.
1680 * data/.gitignore: New.
1681 * doc/.gitignore: New.
1682 * etc/.gitignore: New.
1683 * examples/.gitignore: New.
1684 * examples/calc++/.gitignore: New.
1685 * lib/.gitignore: New.
1686 * m4/.gitignore: New.
1687 * po/.gitignore: New.
1688 * runtime-po/.gitignore: New.
1689 * src/.gitignore: New.
1690 * tests/.gitignore: New.
1691
1692 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1693
1694 * NEWS (2.3b+): New section, empty for now.
1695 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1696
1697 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1698
1699 * NEWS (2.3b): Update release date since there has been a delay in
1700 getting the announcements and tarballs out.
1701
1702 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1703
1704 * NEWS: Version 2.3b.
1705 * configure.ac (AC_INIT): Likewise.
1706 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1707
1708 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1709
1710 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1711 been doing it for years.
1712 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1713 (Release Procedure): Add FIXME about make alpha being unmaintained.
1714
1715 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1716
1717 * data/yacc.c: Reformat m4 a little for readability.
1718 * src/lalr.c (build_relations): Correct comment.
1719
1720 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1721
1722 DJGPP specific issue.
1723 * djgpp/config.sed: Fixes required to run configure scripts generated
1724 by autoconf 2.62.
1725
1726 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1727
1728 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1729 coordinator@translationproject.org.
1730
1731 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1732
1733 * THANKS: Add Eric Blake.
1734
1735 2008-04-23 Eric Blake <ebb9@byu.net>
1736
1737 Revert prior patch, by working around autoconf regression.
1738 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1739 ("Output file name: ("): Uncomment test.
1740 ("Output file name: )"): Likewise.
1741 Based on an idea from Noah Misch.
1742
1743 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1744
1745 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1746 2.61. Reported by Juan Manuel Guerrero at
1747 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1748 * tests/output.at ("Output file name: ("): Comment out test case for
1749 now.
1750 ("Output file name: )"): Likewise.
1751
1752 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1753
1754 * GNUmakefile: Update git-version-gen invocation so make dist
1755 succeeds.
1756
1757 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1758
1759 Update to the current gnulib CVS repository, and fix trigraph handling
1760 in Bison.
1761 * bootstrap: Update gnulib CVS repository URL.
1762 (symlink_to_dir): Encapsulate the code that guarantees the destination
1763 directory exists into...
1764 (check_dst_dir): ... this new function, and...
1765 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1766 fail when copying files into lib/uniwidth/.
1767 * src/output.c (prepare_symbols): When writing yytname muscles, where
1768 symbol names will be encoded in C-string literals, tell quotearg to
1769 escape trigraphs. This used to be the default in gnulib.
1770 * tests/regression.at (Token definitions): Because of the change in
1771 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1772 escapes trigraphs in symbol names. Thus, yytname no longer has
1773 trigraphs unnecessarily doubly escaped. Update test case output.
1774 Extend test case to be sure Bison's own error messages will no longer
1775 have trigraphs in symbol names unnecessarily escaped once.
1776
1777 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1778
1779 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1780 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1781 * .cvsignore: Add .version.
1782 * .version.in: New.
1783 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1784 * configure.ac (AC_CONFIG_FILES): Add .version.
1785 * build-aux/.cvsignore: Add git-version-gen.
1786
1787 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1788
1789 * NEWS (2.3a+): Mention that -g now takes an argument.
1790 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1791 consistency. Update the -g and -x entries now that they take
1792 arguments. Use brackets to indicate optional arguments.
1793 * src/getargs.c (usage): Explain the relationship between arguments of
1794 long and short options more completely. Document --defines and -d
1795 separately since the former takes an argument but, for POSIX Yacc, the
1796 latter does not.
1797 (short_options): Let -W take an optional argument like --warnings.
1798 (getargs): Sort cases.
1799
1800 2008-02-28 Akim Demaille <demaille@gostai.com>
1801
1802 * doc/bison.texinfo: Fix a few typos.
1803
1804 2008-02-28 Akim Demaille <akim@epita.fr>
1805
1806 * doc/bison.texinfo (Bison Options): Document -W.
1807 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1808
1809 2008-02-28 Akim Demaille <akim@epita.fr>
1810
1811 * src/getargs.c (short_options): Split and sort for readability.
1812 -g and -x take optional arguments, just like their long options.
1813 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1814 understand.
1815 Fix the handling of $opt which resulted in all the argument to be
1816 considered as optional.
1817
1818 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1819
1820 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1821 say its interface is experimental.
1822 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1823 Java.
1824 (Bison Options): In the -L and --language entry, mention Java.
1825 (Java Bison Interface): Say the interface is experimental.
1826 * src/getargs.c (usage): Mention -L and --language.
1827
1828 * NEWS (2.3a+): Say the push parsing interface is experimental.
1829 * doc/bison.texinfo (Push Decl): Likewise.
1830 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1831 (Push Parser Function): Likewise.
1832 (Pull Parser Function): Likewise.
1833 (Parser Create Function): Likewise.
1834 (Parser Delete Function): Likewise.
1835 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1836 yypull_parse, and yypush_parse entries.
1837
1838 * NEWS (2.3a+): Mention XML support, and say the schema is
1839 experimental.
1840 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1841 * src/getargs.c (usage): Say the XML schema is experimental.
1842
1843 * NEWS (2.3a+): Say option instead of flag.
1844
1845 2008-02-21 Wojciech Polak <polak@gnu.org>
1846
1847 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1848 text.
1849
1850 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1851
1852 Fix impure push parser compile error reported by Bob Rossi at
1853 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1854 * data/yacc.c: Clean up whitespace in the output a little.
1855 (yypstate_allocated): Define for impure push parsers regardless of
1856 whether the pull interface is also requested.
1857 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1858 check impure push parsers without the pull interface.
1859
1860 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1861 yyerror takes arguments specified by %parse-param while yypstate_new
1862 does not.
1863 * doc/bison.texinfo (Parser Create Function): Document that
1864 yypstate_new returns 0 for multiple impure parser instances.
1865 * tests/push.at (Push Parsing: Multiple impure instances): Update
1866 expected stderr output.
1867
1868 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1869
1870 * runtime-po/POTFILES.in (push.c): Remove.
1871
1872 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1873
1874 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1875 * data/push.c: Rename to...
1876 * data/yacc.c: ... this, overwriting it.
1877 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1878 `%push-pull-parser' -> `%define api.push_pull "both"'.
1879 Remove old yacc.c tests, and update push.c tests to yacc.c.
1880
1881 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1882
1883 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1884 `"%code top" blocks' instead of `%code "top" blocks'.
1885 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1886 Clean up whitespace in the output a little.
1887
1888 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1889
1890 Fix documentation problems reported by Tim Josling at
1891 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1892 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1893 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1894 integers. Explain the effect of literal string aliases on error
1895 messages. Copy token 0 documentation from the C++ skeleton
1896 documentation.
1897
1898 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1899
1900 Accept a token number in a %left, %right, or %nonassoc for POSIX
1901 conformance. Reported by Tim Josling at
1902 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1903 * NEWS (2.3a+): Mention.
1904 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1905 and code numbers are treated by precedence declarations.
1906 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1907 of symbols.1.
1908 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1909 of symbol.
1910 (symbol.prec): New, just like symbol but allows INT.
1911 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1912 longer holds.
1913 * tests/regression.at (Token number in precedence declaration): New
1914 test case.
1915
1916 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1917
1918 DJGPP specific issues.
1919 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1920 be changed. Copyright timestamp adjusted.
1921 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1922 be changed. Copyright timestamp adjusted.
1923 * djgpp/config.site: Copyright timestamp adjusted.
1924 * djgpp/config_h.sed: Copyright timestamp adjusted.
1925 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1926 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1927 filename translation list.
1928 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1929 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1930 files shall be created. Before trying to use the temp dir where the
1931 environment variable points to check that the dir really exists. If
1932 not default to the cwd as temp dir. Copyright timestamp adjusted.
1933 * djgpp/subpipe.h: Copyright timestamp adjusted.
1934 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1935
1936 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1937
1938 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1939
1940 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1941
1942 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1943 Problem reported by Claudio Saavedra in
1944 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1945
1946 2008-01-05 Wojciech Polak <polak@gnu.org>
1947
1948 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1949 document's title with the input grammar file name.
1950
1951 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1952
1953 Automate regression testing of the XML/XSLT implementation. Discussed
1954 starting at
1955 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1956 * configure.ac (XSLTPROC): New substitution.
1957 * Makefile.am (maintainer-xml-check): New phony target invoking...
1958 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1959 invoking make maintainer-check with BISON_TEST_XML=1.
1960 * tests/atlocal.in (XSLTPROC): New.
1961 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1962 not to report reachable memory when Bison is expected to have a
1963 non-zero exit status and (2) to compare XML/XSLT output with --graph
1964 and --report=all output for every working grammar when
1965 BISON_TEST_XML=1.
1966 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1967 (AT_BISON_CHECK_XML): New.
1968 (AT_QUELL_VALGRIND): New.
1969 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1970 (AT_CHECK): ... don't redefine this since this was the old way to
1971 quell Valgrind.
1972 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1973 AT_BISON_CHECK invocations.
1974 * tests/c++.at: Likewise.
1975 * tests/calc.at: Likewise.
1976 * tests/conflicts.at: Likewise.
1977 * tests/cxx-type.at: Likewise.
1978 * tests/existing.at: Likewise.
1979 * tests/glr-regression.at: Likewise.
1980 * tests/headers.at: Likewise.
1981 * tests/input.at: Likewise.
1982 * tests/java.at: Likewise.
1983 * tests/output.at: Likewise.
1984 * tests/push.at: Likewise.
1985 * tests/reduce.at: Likewise.
1986 * tests/regression.at: Likewise.
1987 * tests/sets.at: Likewise.
1988 * tests/skeletons.at: Likewise.
1989 * tests/synclines.at: Likewise.
1990 * tests/torture.at: Likewise.
1991 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1992 tends to hang xsltproc.
1993 (Big horizontal): Likewise.
1994
1995 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1996
1997 In XML output, remove redundant class attribute on symbol element.
1998 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1999 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2000 look up a symbol to determine whether it's a nonterminal or terminal.
2001 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2002 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2003
2004 Add prec/assoc information to XML output.
2005 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2006 %prec, add a percent_prec attribute.
2007 * src/print-xml.c (print_grammar): For each terminal that has a
2008 precedence or associativity, add a prec or assoc attribute.
2009 (xml_indent): New.
2010 (xml_puts): Use xml_indent.
2011 (xml_printf): Use xml_indent.
2012 * src/print-xml.h (xml_indent): Prototype.
2013
2014 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2015 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2016
2017 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2018
2019 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2020 (bison:ruleByNumber): ... this for clarity.
2021 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2022 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2023 (xsl:template match="reduction"): Update.
2024 (xsl:template match="item"): Update.
2025 (xsl:template match="reduction"): Update.
2026
2027 In the XML output, don't print the list of rules where symbols appear.
2028 Compute it in XSLT instead. Discussed at
2029 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2030 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2031 (bison:ruleByRhs): New.
2032 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2033 bison:ruleByRhs.
2034 (xsl:template match="terminal/rule"): Remove.
2035 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2036 bison:ruleByRhs.
2037 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2038 Remove.
2039 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2040 bison:ruleByRhs and mode="number-link" for rule template.
2041 (xsl:template match="terminal/rule"): Remove.
2042 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2043 bison:ruleByRhs and mode="number-link" for rule template.
2044 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2045 Rewrite as...
2046 (xsl:template match="rule" mode="number-link"): ... this.
2047 * src/print-xml.c (print_grammar): Don't print the list of rules.
2048
2049 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2050
2051 Don't let --report affect XML output; always print all information.
2052 Discussed at
2053 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2054 * src/conflicts.c (log_resolution): Implement.
2055 * src/print-xml.c (print_core): Implement.
2056 (print_state): Implement.
2057 (print_xml): Implement.
2058
2059 * NEWS (2.3a+): Fix quotes.
2060 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2061 don't let %verbose clear the list specified by --report.
2062
2063 2007-11-26 Akim Demaille <akim@epita.fr>
2064
2065 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2066
2067 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2068
2069 In the XML output, list useless and unused symbols and rules with the
2070 useful ones and add a "usefulness" attribute. Discussed starting at
2071 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2072 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2073 (grammar_rules_print_xml): Print all rules instead of just those
2074 useful in the grammar, and add a "usefulness" attribute.
2075 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2076 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2077 (print_grammar): Print all nonterminals instead of just useful ones,
2078 and add a "usefulness" attribute to nonterminals and terminals.
2079 (print_xml): Don't print a separate "reductions" or
2080 "rules-useless-in-parser" element.
2081 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2082 (reduce_xml): Remove.
2083 (reduce_token_unused_in_grammar): New.
2084 (reduce_nonterminal_useless_in_grammar): New.
2085 * src/reduce.h (reduce_xml): Remove prototype.
2086 (reduce_token_unused_in_grammar): Add prototype.
2087 (reduce_nonterminal_useless_in_grammar): Add prototype.
2088 * data/xslt/xml2text.xsl: Update for XML changes.
2089 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2090 * tests/reduce.at (Useless Terminals): Update output.
2091 (Useless Rules): Update output.
2092 (Reduced Automaton): Update output.
2093
2094 Say "Terminals unused in grammar" instead of "Unused terminals".
2095 * NEWS (2.3a+): Update.
2096 * doc/bison.texinfo (Understanding): Update example output.
2097 * src/reduce.c (reduce_output): Implement.
2098 * data/xslt/xml2text.xsl: Implement.
2099 * data/xslt/xml2xhtml.xsl: Implement.
2100
2101 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2102
2103 Accept --report-file=FILE to override the default `.output' filename.
2104 * NEWS (2.3a+): Mention.
2105 * doc/bison.texinfo (Bison Options): Add an entry.
2106 * src/files.c (compute_output_file_names): Don't override
2107 spec_verbose_file if already set.
2108 * src/getargs.c (usage): Document --report-file.
2109 (REPORT_FILE_OPTION): New anonymous enum member.
2110 (long_options): Add entry for it.
2111 (getargs): Add case for it setting spec_verbose_file.
2112
2113 * build-aux/cross-options.pl: Don't record a short option just because
2114 there's an arg.
2115 * doc/.cvsignore: Add yacc.1.
2116
2117 2007-11-14 Akim Demaille <akim@epita.fr>
2118
2119 * doc/yacc.1.in: New.
2120 * configure.ac, doc/Makefile.am: Adjust.
2121 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2122 config.h symbol.
2123 Use AC_SUBST for assignments too.
2124 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2125
2126 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2127
2128 * src/gram.c: Remove comments that duplicate comments in gram.h.
2129
2130 When reporting useless rules and nonterminals, say "useless in grammar"
2131 instead of "useless", and say "useless in parser" instead of "never
2132 reduced". Discussed starting at
2133 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2134 * NEWS (2.3a+): Mention this change.
2135 * data/xslt/xml2text.xsl: Update output text and expected input XML
2136 element names to match changes below.
2137 * data/xslt/xml2xhtml.xsl: Likewise.
2138 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2139 Contents: "Rules useless in parser due to conflicts".
2140 * doc/bison.texinfo (Decl Summary): Reword a little.
2141 (Understanding): Update example output for changes below.
2142 * src/gram.c: (rule_useful_p): Rename to...
2143 (rule_useful_in_grammar_p): ... this.
2144 (rule_useless_p): Rename to...
2145 (rule_useless_in_grammar_p): ... this.
2146 (rule_never_reduced_p): Rename to...
2147 (rule_useless_in_parser_p): ... this.
2148 (grammar_rules_print): Update for renames.
2149 (grammar_rules_print_xml): Update for renames.
2150 (grammar_rules_never_reduced_report): Rename to...
2151 (grammar_rules_useless_report): ... this since it is used for either
2152 kind of useless rule.
2153 * src/gram.h: Reword comments and update function names in prototypes.
2154 * src/main.c (main): Say "rule useless in parser due to conflicts".
2155 * src/print-xml.c (print_rules_never_reduced): Rename to...
2156 (print_rules_useless_in_parser): ... this, and rename output XML
2157 element "rules-never-reduced" to "rules-useless-in-parser".
2158 (print_xml): Update for rename.
2159 * src/print.c (print_results): Say "Rules useless in parser due to
2160 conflicts".
2161 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2162 (nonterminals_reduce): Say "nonterminal useless in grammar".
2163 (reduce_output): Say "Nonterminals useless in grammar".
2164 Say "Rules useless in grammar".
2165 (reduce_xml): Rename output XML element "useless" to
2166 "useless-in-grammar".
2167 (reduce_print): Don't report the count of grammatically useless rules
2168 as "rules never reduced" just because %yacc is specified.
2169 In the correct report of this count, say nonterminal(s) and rule(s)
2170 "useless in grammar".
2171 * tests/conflicts.at (S/R in initial): Update expected output.
2172 (Defaulted Conflicted Reduction): Likewise.
2173 (Unreachable States After Conflict Resolution): Likewise.
2174 * tests/existing.at (GNU pic Grammar): Likewise.
2175 * tests/reduce.at (Useless Nonterminals): Likewise.
2176 (Useless Rules): Likewise.
2177 (Reduced Automaton): Likewise.
2178 (Underivable Rules): Likewise.
2179 (Empty Language): Likewise.
2180
2181 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2182
2183 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2184 here document and before the EOF so that BSD's implementation of Bourne
2185 shell doesn't parse the delimiter as part of the here document.
2186 * doc/.cvsignore: Add cross-options.texi.
2187 * src/getargs.c (usage): Add a blank line after the warning categories.
2188
2189 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2190
2191 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2192
2193 2007-11-05 Akim Demaille <akim@epita.fr>
2194
2195 Remove Id: from bison.1.
2196 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2197 (perl -0777 -pi -e 's/\.PP\nId): New.
2198 (.x.1): Use it to ignore the version control revision.
2199
2200 2007-11-05 Akim Demaille <demaille@gostai.com>
2201
2202 * build-aux/Makefile.am: Ship cross-options.pl.
2203 * doc/Makefile.am: Always refer to cross-options.texi with
2204 $(srcdir).
2205 (MAINTAINERCLEANFILES): Add it.
2206
2207 2007-11-04 Akim Demaille <demaille@gostai.com>
2208
2209 Generate the long/short option cross-table.
2210 * build-aux/cross-options.pl: New.
2211 * doc/Makefile.am (cross-options.texi): New.
2212 * doc/bison.texinfo: Use it.
2213
2214 2007-11-04 Akim Demaille <demaille@gostai.com>
2215
2216 Generate bison.1 using help2man.
2217 * doc/common.x, doc/bison.x: New.
2218 * doc/Makefile.am (bison.1, .x.1): New.
2219 The code is taken from autoconf-2.61/man/Makefile.am.
2220 * configure.ac: Look for help2man.
2221
2222 2007-11-04 Akim Demaille <demaille@gostai.com>
2223
2224 Complete --help.
2225 * src/getargs.c (usage): Document -W, make it clear that -d,
2226 -g and -x have optional arguments.
2227
2228 2007-11-04 Akim Demaille <demaille@gostai.com>
2229
2230 Find sha1sum when named gsha1sum.
2231 * bootstrap (find_tool): New.
2232 ($SHA1SUM): New.
2233
2234 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2235
2236 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2237 at
2238 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2239 * NEWS (2.3a+): Mention.
2240 * data/bison.m4 (b4_pure_if): Don't define it here.
2241 * data/c.m4 (b4_identification): Depend on individual skeletons to
2242 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2243 values of the %define variables api.pure or api.push_pull. Define
2244 YYPURE, YYPUSH, and YYPULL accordingly.
2245 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2246 glr.cc has already defined b4_pure_flag.
2247 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2248 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2249 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2250 * doc/bison.texinfo (Pure Decl): Update.
2251 (Push Decl): Update.
2252 (Decl Summary): Add api.pure to %define entry.
2253 In %pure-parser entry, say it's deprecated and reference %define.
2254 (Pure Calling): Update.
2255 (Error Reporting): Update.
2256 (C++ Scanner Interface): Update.
2257 (How Can I Reset the Parser): Update.
2258 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2259 reference %define.
2260 * src/getargs.c (pure_parser): Remove global variable.
2261 * src/getargs.h (pure_parser): Remove extern.
2262 * src/output.c (prepare): Don't define pure_flag muscle.
2263 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2264 wrapper around `%define api.pure'.
2265 * tests/calc.at (Simple LALR Calculator): Update.
2266 (Simple GLR Calculator): Update.
2267 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2268 Update.
2269 (GLR: Resolve ambiguity, pure, locations): Update.
2270 (GLR: Merge conflicting parses, pure, no locations): Update.
2271 (GLR: Merge conflicting parses, pure, locations): Update.
2272 * tests/glr-regression.at (Uninitialized location when reporting
2273 ambiguity): Update
2274 * tests/input.at (Unused %define api.pure): New test case.
2275 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2276 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2277 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2278
2279 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2280
2281 %define push_pull -> %define api.push_pull. Discussed starting at
2282 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2283 * data/push.c: Expect the new name.
2284 * data/yacc.c: Likewise.
2285 * doc/bison.texinfo (Push Decl): Update.
2286 (Decl Summary): Update %define entry.
2287 (Push Parser Function): Update.
2288 (Pull Parser Function): Update.
2289 (Parser Create Function): Update.
2290 (Parser Delete Function): Update.
2291 * tests/calc.at (Simple LALR Calculator): Update.
2292 * tests/input.at (%define enum variables): Update.
2293 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2294 (Push Parsing: Multiple impure instances): Update.
2295 (Push Parsing: Unsupported Skeletons): Update.
2296 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2297 (Exploding the Stack Size with Malloc): Update.
2298
2299 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2300 other entries some.
2301
2302 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2303
2304 For the XML output's terminal element, rename @number to @token-number,
2305 and add @symbol-number. In the nonterminal element, rename @number to
2306 @symbol-number. Discussed starting at
2307 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2308 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2309 renames.
2310 (xsl:template match="nonterminal"): Likewise.
2311 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2312 (xsl:template match="nonterminal"): Likewise.
2313 * src/print-xml.c (print_grammar): Implement.
2314
2315 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2316
2317 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2318 2007-10-11 change, the child elements here are items not rules.
2319 (xsl:template match="item"): New.
2320 (xsl:template match="rule"): Update for new reduced itemset.
2321 (xsl:template match="point"): Remove.
2322 (xsl:template match="empty"): For consistency with --graph, don't
2323 output "/* empty */".
2324 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2325 line-wrap, don't pass a negative value as first-line-length since this
2326 won't work with the following changes.
2327 (xsl:template name="line-wrap"): Simplify slightly.
2328 (xsl:template name="ws-search"): Eliminate recursion.
2329 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2330 set next to an item whose dot is not at the end of the RHS even if it
2331 happens to be associated with the same rule.
2332
2333 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2334
2335 Add %define lr.keep_unreachable_states.
2336 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2337 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2338 * src/main.c (main): Implement it.
2339 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2340 Extend to test it, and fix a typo.
2341
2342 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2343
2344 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2345 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2346 the example .output text.
2347 * tests/regression.at (Extra lookahead sets in report): Improve wording
2348 of comments.
2349
2350 2007-10-17 Wojciech Polak <polak@gnu.org>
2351
2352 * src/print-xml.c (print_grammar): Renamed
2353 <terminal> and <nonterminal> attributes:
2354 "type" to "number" and "symbol" to "name".
2355 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2356 Use new attribute names.
2357 (xsl:template match="nonterminal"): Likewise.
2358 * data/xslt/xml2xhtml.xsl: Likewise.
2359
2360 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2361
2362 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2363 (Option Cross Key): Likewise.
2364
2365 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2366 next to an item whose dot is not at the end of the RHS even if it
2367 happens to be associated with the same rule.
2368 * src/print.c (print_core): Likewise.
2369 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2370 (Resolved SR Conflicts): Update output.
2371 * tests/regression.at (Extra lookahead sets in report): New test case.
2372
2373 2007-10-11 Wojciech Polak <polak@gnu.org>
2374
2375 * src/print-xml.c (print_core): Remove item set
2376 redundancy.
2377 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2378 Improve processing time. Suggested by Joel E. Denny.
2379 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2380 Write xsl:param "required" attribute as comment.
2381 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2382 (xsl:template match="rule"): Support new reduced itemset.
2383 (xsl:template match="point"): Remove.
2384 * data/xslt/xml2xhtml.xsl: Likewise.
2385
2386 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2387
2388 * src/getargs.c (version): Update copyright year.
2389
2390 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2391
2392 Make xml2dot.xsl and --graph produce the same output.
2393 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2394 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2395 escaped later.
2396 (xsl:template name="output-node"): Use the new escape template instead
2397 of the string-replace template directly.
2398 (xsl:template name="output-edge"): Likewise.
2399 (xsl:template name="escape"): New, escapes backslashes and newlines in
2400 addition to quotation marks.
2401 * src/graphviz.c (start_graph, output_node, output_edge): Add
2402 whitespace to output for legibility.
2403
2404 Make xml2text.xsl and --report produce the same output, and remove the
2405 XML "conflicts" element since a conflict summary is easily extracted
2406 from the automaton.
2407 * data/xslt/bison.xsl: New.
2408 (xsl:template match="state" mode="bison:count-conflicts): New.
2409 * data/xslt/xml2text.xsl: Import bison.xsl.
2410 (xsl:template match="bison-xml-report"): Instead of styling the
2411 "conflicts" element, style the "automaton" element with mode
2412 "conflicts". Unlike the former, the latter lists S/R and R/R
2413 conflicts for a state on the same line.
2414 (xsl:template match="conflicts"): Remove.
2415 (xsl:template match="conflict"): Remove.
2416 (xsl:template match="terminal"): Line-wrap the list of rules in which
2417 the terminal is used.
2418 (xsl:template match="nonterminal"): Likewise for nonterminals.
2419 (xsl:template match="automaton" mode="conflicts"): New.
2420 (xsl:template match="state" mode="conflicts"): New.
2421 (xsl:template name="line-wrap"): New.
2422 (xsl:template name="ws-search"): New.
2423 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2424 (xsl:template match="bison-xml-report"): Instead of styling the
2425 "conflicts" element, style the "automaton" element with mode
2426 "conflicts."
2427 (xsl:template match="conflicts"): Remove.
2428 (xsl:template match="conflict"): Remove.
2429 (xsl:template match="automaton" mode="conflicts"): New.
2430 (xsl:template match="state" mode="conflicts): New.
2431 * src/conflicts.c (conflicts_output_xml): Remove.
2432 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2433 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2434 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2435 the corresponding XSLT is easier. Also, never wrap between a word and
2436 the comma that follows it.
2437
2438 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2439
2440 Improve C++ namespace support. Discussed starting at
2441 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2442 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2443 b4_namespace_close): New macros that interpret the %define variable
2444 "namespace" so its value can contain "::" to indicate nested
2445 namespaces.
2446 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2447 the above macros.
2448 * data/lalr1.cc (b4_namespace): Likewise.
2449 * data/location.cc (b4_namespace): Likewise.
2450 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2451 inside a new table in the general %define entry. Document `%define
2452 namespace' there as well. Point the %name-prefix entry to it since it
2453 explains it more completely in the case of C++.
2454 (C++ Bison Interface): Mention `%define namespace' instead of
2455 %name-prefix.
2456 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2457 entry suffices.
2458 * tests/c++.at (Relative namespace references): New test case.
2459 (Absolute namespace references): New test case.
2460 (Syntactically invalid namespace references): New test case.
2461 * tests/input.at (C++ namespace reference errors): New test case.
2462
2463 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2464
2465 Add syncline support and location accessor to internal %define
2466 interfaces.
2467 * data/bison.m4 (b4_percent_define_get_loc): New.
2468 (b4_percent_define_get_syncline): New.
2469 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2470 (b4_percent_define_default): Record defining location as line 1 rather
2471 than 0 for the sake of synchronizing #line's, and define
2472 b4_percent_define_syncline(VARIABLE).
2473 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2474 * src/muscle_tab.c (muscle_syncline_grow): New.
2475 (muscle_code_grow): Use muscle_syncline_grow.
2476 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2477 define b4_percent_define_syncline(VARIABLE).
2478 (muscle_percent_define_get_loc): New.
2479 (muscle_percent_define_get_syncline): New.
2480 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2481 remove some unused variables.
2482 (muscle_percent_define_default): Record defining location as line 1
2483 rather than 0 for the sake of synchronizing #line's, and define
2484 b4_percent_define_syncline(VARIABLE).
2485 (muscle_percent_define_check_values): Use
2486 muscle_percent_define_get_loc.
2487 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2488 (muscle_percent_define_get_syncline): Prototype.
2489 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2490 defaults): Update output for location change.
2491 (Complaining during macro argument expansion): Extend to test
2492 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2493
2494 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2495
2496 Fix some error-reporting macro bugs.
2497 * data/bison.m4 (b4_cat): New.
2498 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2499 to stdout so they don't become arguments to other macros. Update
2500 comments and add examples.
2501 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2502 add examples.
2503 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2504 after printing the error directive so that M4 doesn't report subsequent
2505 problems that are induced by this problem.
2506 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2507 instead of just in them. Recognize @\n in both places. Both expand to
2508 the empty string. Needed by b4_cat.
2509 * tests/skeletons.at (Complaining during macro argument expansion):
2510 New test case.
2511 (Fatal errors make M4 exit immediately): New test case.
2512
2513 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2514
2515 Implement --print-datadir.
2516 * src/getargs.c (usage): Mention.
2517 (PRINT_DATADIR_OPTION): New anonymous enum member.
2518 (long_options): Add entry for it.
2519 (getargs): Add case for it calling compute_pkgdatadir.
2520 * src/output.c (output_skeleton): Encapsulate data directory
2521 computation from here...
2522 (prepare): ... and from here...
2523 (compute_pkgdatadir): ... into this new function.
2524 * src/output.h (compute_pkgdatadir): Prototype.
2525
2526 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2527
2528 * src/print-xml.c (escape_bufs): New static global variable
2529 replacing...
2530 (xml_escape_n): ... the static local variable buf here.
2531 (print_xml): Free memory for escape_bufs.
2532 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2533
2534 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2535
2536 Replace `%push-parser' and `%push-pull-parser' with
2537 `%define push_pull "push"' and `%define push_pull "both"'.
2538 `%define push_pull "pull"' is the default.
2539 * doc/bison.texinfo (Push Decl, Push Parser Function,
2540 Pull Parser Function, Parser Create Function, Parser Delete Function):
2541 Update declarations.
2542 (Decl Summary, Table of Symbols): Replace %push-parser and
2543 %push-pull-parser entries with a %define push_pull entry.
2544 * data/bison.m4 (b4_percent_define_check_values): New macro.
2545 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2546 definitions...
2547 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2548 definitions...
2549 * data/push.c: ... to here and compute them from the value of the
2550 %define variable push_pull.
2551 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2552 parsing requests here...
2553 * data/yacc.c: ... hack this to switch to push.c any time
2554 b4_use_push_pull_flag or the %define variable push_pull is set. This
2555 will go away when we mv push.c yacc.c.
2556 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2557 push parsing is not supported since unused %define variables are
2558 reported anyway.
2559 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2560 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2561 comments for consistency with b4_percent_define_check_values.
2562 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2563 muscles.
2564 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2565 Remove.
2566 (prologue_declaration): Remove %push-parser and %push-pull-parser
2567 rules.
2568 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2569 * tests/calc.at: Update declarations.
2570 * tests/input.at (%define enum variables): New test case.
2571 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2572 declaration.
2573 (Push Parsing: Multiple impure instances): Update declaration.
2574 (Push Parsing: Unsupported Skeletons): New test case.
2575 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2576 declaration.
2577 (Exploding the Stack Size with Malloc): Update declaration.
2578
2579 2007-09-24 Wojciech Polak <polak@gnu.org>
2580
2581 Add XSLT transformations.
2582
2583 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2584 * data/xslt/xml2text.xsl: Transform XML into plain text.
2585 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2586 * data/Makefile.am (xsltdir): New variable.
2587 (dist_xslt_DATA): Add xslt/*.xsl files.
2588
2589 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2590
2591 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2592 Problem reported by Wojciech Polak.
2593 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2594 (xml_printf): Undo change I made on 21 September; that is,
2595 indent 2 spaces, not 1.
2596
2597 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2598
2599 Pacify ./configure --enable-gcc-warnings.
2600 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2601 `char const *' instead of `char *'.
2602 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2603 local variable `sep'.
2604
2605 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2606
2607 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2608 elsewhere.
2609 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2610 (xml_printf): Indent just 1 space for level.
2611 (e_char, xlate_char): Remove.
2612 (xml_escape_string): Rewrite to avoid undefined behavior (used
2613 storage that was freed from the stack).
2614 (xml_escape_n): Don't bother checking for subscript error.
2615
2616 2007-09-21 Wojciech Polak <polak@gnu.org>
2617
2618 Add Bison XML Automaton Report.
2619
2620 Add support for an -x option to generate an XML report.
2621 It is not documented yet.
2622 * src/print-xml.c: New file.
2623 * src/print-xml.h: Likewise.
2624 * lib/timevar.def (TV_XML): New var.
2625 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2626 * src/conflicts.c: Include print-xml.h.
2627 (solved_conflicts_xml_obstack): New var.
2628 (log_resolution, conflicts_solve, conflicts_free):
2629 Add support for XML report.
2630 (conflicts_output_val): New function.
2631 * src/conflicts.h (conflicts_output_val): New decl.
2632 * src/files.c (spec_xml_file): New var.
2633 (compute_output_file_names, output_file_names_free): Add XML support.
2634 * src/files.h (spec_xml_file): New decl.
2635 * src/getargs.c (xml_flag): New var.
2636 (usage, short_options, long_options, getargs): Add XML support.
2637 * src/getargs.h (xml_flag): New decl.
2638 * src/gram.c: Include print-xml.h.
2639 (rule_lhs_print_xml, rule_rhs_print_xml):
2640 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2641 New functions.
2642 * src/gram.h: Declare external ones.
2643 * src/main.c: Include print-xml.h.
2644 (main): Add XML support.
2645 * src/reduce.c: Include print-xml.h.
2646 (reduce_xml): New function.
2647 * src/reduce.h: Declare it.
2648 * src/state.c: Include print-xml.h.
2649 (state_new): Add XML support.
2650 (state_rule_lookahead_tokens_print_xml): New function.
2651 * src/state.h: Declare it.
2652 (struct state): New member solved_conflicts_xml.
2653 * src/symtab.c (symbol_class_get_string): New function.
2654 * src/symtab.h: Declare it.
2655
2656 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2657
2658 * GNUmakefile: Switch to coreutils's version.
2659 * bootstrap: Likewise.
2660 * Makefile.cfg: Adjust to new GNUmakefile.
2661 * README-hacking: Likewise.
2662
2663 Import from gnulib:
2664
2665 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2666 Bruno Haible <bruno@clisp.org>
2667
2668 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2669 and is a script that invokes bison. Tighten the code. Add comments.
2670
2671 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2672
2673 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2674 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2675 * doc/bison.texinfo (Decl Summary): Fix.
2676 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2677 * tests/input.at (Boolean %define variables): Update output.
2678 * tests/skeletons.at (%define boolean variables: invalid skeleton
2679 defaults): Rename to...
2680 (%define Boolean variables: invalid skeleton defaults): ... this and
2681 update output.
2682
2683 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2684
2685 In impure push mode, don't allow more than one yypstate to be allocated
2686 since multiple impure parsers would corrupt yynerrs.
2687 * data/push.c (yypstate_allocated): New static global variable
2688 initialized to 0.
2689 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2690 exhaustion if yypstate_allocated is 1, but still return 2.
2691 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2692 already 1. Otherwise, set it to 1.
2693 (yypstate_delete): Set it to 0.
2694 * tests/push.at (Push Parsing: Multiple impure instances): New test
2695 case.
2696
2697 2007-08-17 Bob Rossi <bob@brasko.net>
2698
2699 * doc/bison.texinfo (Push Decl): Document the push parser.
2700 (Table of Symbols): Ditto.
2701 (Pure Decl): Ditto.
2702 (Decl Summary): Ditto.
2703 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2704 Parser Create Function, Parser Delete Function):
2705 Add new push parser symbols.
2706 (Table of Symbols): Document push-parser, push-pull-parser,
2707 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2708
2709 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2710
2711 Update to GPLv3.
2712 * doc/gpl-3.0.texi: New file.
2713 * doc/gpl.texi: Remove.
2714 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2715 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2716 * README-hacking, TODO, bootstrap, bootstrap.conf:
2717 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2718 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2719 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2720 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2721 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2722 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2723 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2724 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2725 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2726 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2727 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2728 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2729 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2730 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2731 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2732 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2733 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2734 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2735 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2736 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2737 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2738 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2739 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2740 * src/complain.c, src/complain.h, src/conflicts.c:
2741 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2742 * src/files.h, src/flex-scanner.h, src/getargs.c:
2743 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2744 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2745 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2746 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2747 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2748 * src/print.c, src/print.h, src/print_graph.c:
2749 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2750 * src/reduce.h, src/relation.c, src/relation.h:
2751 * src/revision.h, src/scan-code.h, src/scan-code.l:
2752 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2753 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2754 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2755 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2756 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2757 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2758 * tests/existing.at, tests/glr-regression.at:
2759 * tests/headers.at, tests/input.at, tests/java.at:
2760 * tests/local.at, tests/output.at, tests/push.at:
2761 * tests/reduce.at, tests/regression.at, tests/sets.at:
2762 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2763 * tests/torture.at:
2764 Update to GPLv3.
2765
2766 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2767
2768 Get rid of broken %no-parser, -n, and --no-parser implementation and
2769 documentation.
2770 * TODO: Don't mention them.
2771 * doc/bison.1: Likewise.
2772 * doc/bison.texinfo (Decl Summary): Likewise.
2773 (Bison Options): Likewise.
2774 (Option Cross Key): Likewise.
2775 * src/getargs.c (no_parser_flag): Remove global variable.
2776 (usage): Don't print description of -n and --no-parser.
2777 (long_options): Remove --no-parser entry here.
2778 (getargs): Remove -n case in the switch here.
2779 * src/getargs.h (no_parser_flag): Remove extern.
2780 * tests/regression.at (Web2c Actions): Remove comment that mentions
2781 --no-parser.
2782
2783 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2784
2785 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2786 name user variables starting with `yy'. Just pass NULL instead of a
2787 dummy local &yylval to yypush_parse.
2788 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2789 starting with `yy'.
2790
2791 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2792
2793 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2794 true since it's then always used regardless of whether yyoverflow is
2795 defined. Reported by Christian Burger at
2796 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2797 * THANKS: Add Christian Burger.
2798
2799 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2800 node names: say "Decl Summary" not "Bison Declaration Summary".
2801
2802 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2803
2804 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2805 determine whether this function has already complained about an invalid
2806 value for a %define boolean variable, don't check whether Bison has
2807 ever examined the value. As written, the check was a tautology.
2808 Instead, record and check for this complaint using a separate muscle.
2809
2810 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2811
2812 Fix push parsing memory leak reported by Brandon Lucia at
2813 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2814 * THANKS: Add Brandon Lucia.
2815 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2816 but the parse never completed and thus freed it.
2817 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2818 * tests/testsuite.at: Include push.at.
2819 * test/push.at: New.
2820 (Push Parsing: Memory Leak for Early Deletion): New test case.
2821
2822 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2823
2824 Improve handling of multiple S/R conflicts in the same state and of S/R
2825 conflicts involving multiple reductions.
2826 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2827 set for a state here or Bison will abort if it is reassigned on a
2828 later conflicted reduction in the same state.
2829 Similarly, don't finalize and assign the solved conflicts report here
2830 or it will be lost if it is reassigned on a later conflicted reduction
2831 in the same state.
2832 (set_conflicts): Instead, assign them both here after all S/R conflicts
2833 in the state have been fully examined.
2834 * src/print.c (shift_set): Rename to...
2835 (no_reduce_set): ... this.
2836 (print_reductions): Update for rename, and add %nonassoc error action
2837 tokens to no_reduce_set so that, when printing the first remaining
2838 reduction on an error action token, the reduction is enclosed in
2839 brackets.
2840 (print_results): Update for rename.
2841 * tests/conflicts.at (Solved conflicts report for multiple reductions
2842 in a state): New test case.
2843 (%nonassoc error actions for multiple reductions in a state): New test
2844 case.
2845
2846 * src/main.c (main): Don't depend on C99 features.
2847
2848 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2849
2850 * build-aux/.cvsignore: Add compile.
2851 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2852 uniwidth.
2853
2854 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2855
2856 * bootstrap (slurp): Create target directories that don't exist.
2857 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2858
2859 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2860
2861 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2862 than item number.
2863 * closure.c (closure): Likewise.
2864 * state.h (reductions): Comment sorting of rules.
2865 (state): Comment sorting of items.
2866
2867 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2868
2869 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2870 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2871 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2872 definition in order to avoid Gnulib headers since we don't use config.h
2873 here.
2874 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2875 rather than AT_DATA so that config.h is included.
2876
2877 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2878
2879 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2880 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2881 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2882 and so that YYFPRINTF is guaranteed to be defined here.
2883
2884 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2885
2886 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2887 with...
2888 (muscle_percent_define_check_values): ... this more helpful function.
2889 Again, it's not used yet, but it will be.
2890 * src/muscle_tab.h: Likewise.
2891
2892 Improve some comments in parser table construction.
2893 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2894 (generate_states): Don't mention ruleset, which is internal to closure.
2895 * src/closure.c (closure): Explain sorting of core and itemset, which
2896 is required for this function to behave correctly.
2897 * src/closure.h (closure): Mention sorting.
2898
2899 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2900
2901 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2902 move the check for disabled transitions to an aver since conflict
2903 resolution hasn't happened yet.
2904
2905 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2906 labels a state as inconsistent just because it has error transitions.
2907 The original form of this check appeared in revision 1.1 of lalr.c,
2908 which was committed on 1991-12-21. Now (at least), changing the
2909 consistency label on such a state appears to have no useful effect in
2910 any of the places it is examined, which I enumerate below. The key
2911 point to understanding each item in this enumeration is that a state
2912 with an error transition is labelled consistent in the first place only
2913 if it has no rules, so the check cannot matter for states that have
2914 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2915 to try to identify its conflicts, and a state must have *rules* to have
2916 conflicts. (2) Labelling a state as inconsistent will affect how
2917 action_row sets the default *rule* for the state. (3) Labelling a
2918 state as inconsistent will cause build_relations to add lookback edges
2919 to *rules* in that state.
2920 * src/state.h (struct state): Word the comment for member consistent
2921 more carefully.
2922
2923 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2924
2925 Don't depend on C99 features.
2926 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2927 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2928 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2929 * src/state.c (state_mark_reachable_states): Fix for-loop.
2930 (state_remove_unreachable_states): Fix for-loop.
2931
2932 Don't widen struct state with member reachable just to temporarily
2933 record reachability. Instead, use a local bitset.
2934 * src/state.h (struct state): Remove member.
2935 * src/state.c (state_new): Don't initialize it.
2936 (state_mark_reachable_states): Rename to...
2937 (state_record_reachable_states): ... this, and use bitset.
2938 (state_remove_unreachable_states): Use bitset.
2939
2940 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2941
2942 * src/Makefile.am (yacc): Quote target action commands properly so
2943 that the yacc script isn't corrupt. Reported by Hans Aberg at
2944 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2945
2946 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2947 the case of pure parsers. Reported by Frans Englich at
2948 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2949 * THANKS: Add Frans Englich.
2950
2951 * NEWS (2.3a+): In the %code entry, reference section `Bison
2952 Declaration Summary' from the manual now since the %code summary has
2953 moved there.
2954 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2955 in the rules section must be terminated by semicolons.
2956
2957 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2958
2959 Extend the front-end API for %define variables to more completely
2960 mirror the back-end. This will be useful in the future.
2961 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2962 Update comments to mention the new front-end counterparts of these
2963 macros.
2964 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2965 for muscle_string_decode and muscle_location_decode.
2966 (muscle_string_decode): New static function.
2967 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2968 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2969 functions.
2970 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2971 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2972 implementation more closely.
2973 (muscle_percent_define_invalid_value): New function.
2974 * src/muscle_tab.h (muscle_percent_define_get,
2975 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2976 Prototype.
2977
2978 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2979
2980 * NEWS (2.3a+): Mention yesterday's state-removal change.
2981 (2.3a): Remove the %language entry, which was added after 2.3a.
2982 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2983 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2984 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2985 tests/existing.at: Update copyright date.
2986
2987 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2988
2989 If conflict resolution makes states unreachable, remove those states,
2990 report rules that are then unused, and don't report conflicts in those
2991 states.
2992 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2993 New global function.
2994 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2995 function.
2996 * src/main.c (main): After conflict resolution, remove the unreachable
2997 states and update all data structures that reference states by number.
2998 * src/state.c (state_new): Initialize each state's reachable member to
2999 false.
3000 (state_mark_reachable_states): New static function.
3001 (state_remove_unreachable_states): New global function.
3002 * src/state.h (struct state): Add member bool reachable.
3003 (state_remove_unreachable_states): Prototype.
3004 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3005 New test case.
3006 * tests/existing.at (GNU pic Grammar): Update test case output now that
3007 an unused rule is discovered.
3008
3009 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3010
3011 Minor code cleanup in parser table construction.
3012 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3013 (new_itemsets, save_reductions): Update for rename to nitemset.
3014 * src/closure.c (nritemset): Rename to...
3015 (nitemset): ... this since the "r" appears to meaningless and isn't
3016 used in the comments.
3017 (closure): Update for rename.
3018 * src/closure.h (nritemset): Update extern to...
3019 (nitemset): ... this.
3020 * src/lalr.c (LA): Fix a typo in comments.
3021 * src/print.c (print_core): Update for rename to nitemset.
3022 * src/print_graph.c (print_graph): Likewise.
3023 * src/state.h: Fix some typos in header comments.
3024
3025 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3026
3027 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3028 still sticks to ASCII. Sorry!
3029
3030 * README-hacking: New file, taken mostly from coreutils, with changes
3031 for Bison. Contains much of the contents of:
3032 * README-cvs: Remove.
3033 * bootstrap: Sync from gnulib.
3034 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3035 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3036
3037 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3038
3039 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3040 Setzer.
3041 (Java Differences): Fix some typos.
3042 * THANKS: Add Sebastian Setzer.
3043
3044 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3045
3046 * data/java.m4 (b4_single_class_if): Remove.
3047 (b4_abstract_if): Look at "%define abstract".
3048 (b4_lexer_if): New.
3049 (b4_union_name): Rename...
3050 (b4_yystype): ... to this. Map to "%define stype".
3051 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3052 b4_maybe_throws): Fix quoting.
3053 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3054 * data/lalr1.java (Lexer interface): Always define.
3055 (Lexer interface within parser class): Remove.
3056 (YYLexer class): New, used when "%code lexer" is present.
3057 (constructor): When "%code lexer" is used, pass %lex-param
3058 to the lexer constructor.
3059 (yylex, yyparse): Remove %lex-param from method invocations
3060 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3061
3062 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3063 abstract". Rename "%define union_name" to "%define stype".
3064 Rename method names according to previous patch.
3065 (Java Scanner Interface): Describe "%code lexer" instead of
3066 "%pure-parser" and "%define single_class".
3067 (Java Differences): Mention "%code lexer".
3068
3069 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3070 Include scanner here, using macros from tests/local.at.
3071 (AT_DATA_CALC_Y): Remove final argument.
3072 (_AT_CHECK_JAVA_CALC): Likewise.
3073 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3074 of %locations and %error-verbose.
3075 (main): Test with and without %lex-param.
3076 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3077 (AT_BISON_OPTION_POPDEFS): Pop it.
3078
3079 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3080
3081 DJGPP spefic issue. Inhibit the use of disallowed characters for
3082 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3083 and concern testsuite case 46.
3084 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3085 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3086 * djgpp/config.bat: Inhibit the use of disallowed characters.
3087
3088 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3089
3090 Miscellaneous %define and %code cleanup.
3091 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3092 values are interpreted.
3093 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3094 documentation a little more.
3095 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3096 muscle_percent_define_insert, muscle_percent_code_grow): New
3097 functions/macros.
3098 * src/muscle_tab.h (muscle_percent_define_insert,
3099 muscle_percent_code_grow): Prototype.
3100 * src/parse-gram.y (prologue_declaration): Use
3101 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3102 %define and %code directives.
3103
3104 Make it easy to share %define boolean variables between the front-end
3105 and back-end. Though not used yet, this will be useful in the future.
3106 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3107 Bison uses of names rather than just skeleton uses of names.
3108 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3109 b4_percent_define_skeleton_variables(VARIABLE) to
3110 b4_percent_define_bison_variables(VARIABLE).
3111 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3112 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3113 b4_percent_code_bison_qualifiers(QUALIFIER).
3114 (b4_check_user_names_wrap): Update for renames.
3115 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3116 muscle_percent_define_default): New functions mimicking
3117 b4_percent_define_flag_if and b4_percent_define_default.
3118
3119 For %define variables, report locations for invalid values and
3120 redefinitions.
3121 * data/bison.m4 (b4_percent_define_flag_if): Read
3122 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3123 value for VARIABLE.
3124 (b4_percent_define_default): Save a special location in
3125 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3126 must later be reported as invalid.
3127 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3128 functions.
3129 (muscle_percent_define_insert): Record the location of VARIABLE in
3130 muscle percent_define_loc(VARIABLE), and use it to report the previous
3131 location for a redefinition.
3132 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3133 (muscle_percent_define_default): Update like b4_percent_define_default.
3134 (muscle_grow_user_name_list): Rename to...
3135 (muscle_user_name_list_grow): ... this for consistency and use
3136 muscle_location_grow.
3137 * src/muscle_tab.h (muscle_location_grow): Prototype.
3138 * tests/input.at (%define errors): Update expected output.
3139 * tests/skeletons.at (%define boolean variables: invalid skeleton
3140 defaults): New test case.
3141
3142 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3143
3144 * src/print.c (lookahead_set, state_default_rule): Remove.
3145 (print_reductions): Replace state_default_rule invocation with
3146 equivalent use of yydefact, which was computed in token_actions in
3147 tables.c.
3148 (print_results): Don't allocate lookahead_set.
3149
3150 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3151
3152 * data/lalr1.java: Prefix all private members with yy.
3153
3154 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3155
3156 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3157 Sebastien Fricker at
3158 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3159 * THANKS: Add Sebastien Fricker.
3160 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3161 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3162 accept a variable number of arguments.
3163
3164 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3165
3166 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3167
3168 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3169
3170 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3171 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3172 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3173
3174 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3175
3176 Undo my 2007-02-07 change, switching back to the c-strcase module
3177 introduced in the 2007-02-03 change. Bruno Haible reported that
3178 the 2007-02-07 change would be dangerous in Turkish if we add a
3179 language whose name contains "i", since "i" is not lowercase "I"
3180 in Turkish.
3181 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3182 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3183 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3184 * m4/.cvsignore: Remove strcase.m4.
3185 * src/getargs.c: Revert 2007-02-07 change, as follows.
3186 Include c-strcase.h.
3187 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3188
3189 2007-02-11 Bruno Haible <bruno@clisp.org>
3190
3191 Enable the Java related testsuite tests when the only Java compiler
3192 found is a gcj < 4.3. Discussed at
3193 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3194 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3195
3196 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3197
3198 * data/Makefile.am: Update copyright date.
3199 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3200 yypstate_new returns NULL.
3201 (yypstate_new): Return NULL if malloc does.
3202 * src/reader.c (packgram): Move translation of rule actions from the
3203 beginning of packgram to...
3204 (check_and_convert_grammar): ... here right before packgram is invoked
3205 so it's easier to write more complete comments, and remove redundant
3206 code.
3207
3208 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3209
3210 As in semantic actions, make @$ in %initial-action, %destructor, and
3211 %printer imply %locations.
3212 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3213 scanning @$.
3214 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3215 (@$ in %initial-action implies %locations,
3216 @$ in %destructor implies %locations,
3217 @$ in %printer implies %locations): ... these new test cases.
3218
3219 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3220
3221 Undo most of the 2007-02-03 change, switching to the strcase module
3222 now that gnulib strcase has been fixed.
3223 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3224 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3225 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3226 * m4/.cvsignore: Add strcase.m4.
3227 * src/getargs.c: Revert 2007-02-03 change, as follows.
3228 Don't include c-strcase.h.
3229 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3230 strcasecmp has "unspecified behavior" outside the POSIX locale,
3231 but it works fine in practice if at least one argument is ASCII,
3232 as is the case in Bison.
3233
3234 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3235
3236 * tests/java.at: Skip tests if only one of javac/java is present.
3237 Reported by Joel E. Denny.
3238 * tests/atlocal.in: Adjust copyright years.
3239
3240 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3241
3242 * data/lalr1.java (Stack): Work around old verifiers that disallow
3243 access to the private fields of an inner class, from the outer class.
3244 We can make Stack's fields public because user code doesn't have access
3245 to the instance of Stack used by parse(). Reported by Paul Eggert.
3246
3247 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3248
3249 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3250 the right spot for these files?
3251 * bootstrap.conf (gnulib_modules): Add c-strcase.
3252 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3253 c-strncasecmp.c.
3254 * src/getargs.c: Include c-strcase.h.
3255 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3256 to avoid unspecified behavior.
3257
3258 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3259
3260 * doc/bison.texinfo (Decl Summary): Correct typo.
3261
3262 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3263
3264 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3265 Complain if the value does not match empty, "true" or "false".
3266 * data/c++.m4: Adjust default definitions of %define variables.
3267 * data/java.m4: Adjust default definitions of %define variables.
3268 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3269 to above behavior.
3270 * tests/input.at (Boolean %define variables): Test new behavior.
3271
3272 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3273
3274 * NEWS: Mention java.
3275 * TODO: Remove things that are done.
3276 * bootstrap.conf: Add javacomp-script and javaexec-script.
3277 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3278
3279 * data/Makefile.am: Add new files.
3280 * data/java-skel.m4: New.
3281 * data/java.m4: New.
3282 * data/lalr1.java: New.
3283
3284 * doc/bison.texinfo: Put "A Complete C++ Example" under
3285 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3286 under Other Languages.
3287
3288 * src/getargs.c (valid_languages): Add Java.
3289 * src/getargs.h (struct bison_language): Update size of string fields.
3290
3291 * tests/Makefile.am: Add java.at.
3292 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3293 * tests/java.at: New.
3294 * tests/testsuite.at: Include it.
3295
3296 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3297
3298 Clean up.
3299 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3300 at_directive_argv arguments so these no longer have to be global
3301 variables. Also, update the implementation for the following changes.
3302 (fail_for_at_directive_too_many_args,
3303 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3304 (at_directive_name): Remove as at_directive_argv[0] will be used for
3305 this now.
3306 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3307 for the directive name.
3308 (at_directive_argc, at_directive_argv): Make these local within
3309 skel_lex instead of global.
3310 (INITIAL): Update directive start action for above changes.
3311 (SC_AT_DIRECTIVE_ARG): Rename to...
3312 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3313 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3314 (scan_skel): Move yylex_destroy to...
3315 (skel_scanner_free): ... here.
3316 * tests/skeletons.at (installed skeleton file name): Rename to...
3317 (installed skeleton file names): ... this.
3318
3319 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3320
3321 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3322 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3323 Summary" not "Directives".
3324 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3325 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3326 since the former is now the more complete one.
3327 (Prologue Alternatives): Likewise and do the same for %defines.
3328 (Table of Symbols): Add summary of %code, add summary of %define, and
3329 move full %code documentation to...
3330 (Decl Summary): ... here for consistency with other entries in these
3331 sections.
3332 Move %define entry in order to keep this list alphabetized.
3333 Reword %define entry a little to put less emphasis on the skeleton
3334 concept, which most users shouldn't have to think about.
3335
3336 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3337
3338 Adjust to recent gnulib changes.
3339 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3340 Add string.h, string_.h, unistd_.h, wchar_.h.
3341 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3342 * src/system.h: Don't include <stpcpy.h>; this is now done by
3343 <string.h>.
3344
3345 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3346
3347 Simplify implementation of unqualified %code, implement macros for
3348 uniform treatment of boolean %define flags. Document %define.
3349 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3350 b4_percent_code_ifdef): New.
3351 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3352 * data/c++.m4: Define default value for global_tokens_and_yystype.
3353 * data/glr.cc: Likewise.
3354 * data/location.cc: Use b4_percent_define_flag_if.
3355
3356 * doc/bison.texinfo (Decl Summary): Document %define.
3357
3358 * src/parse-gram.y (Unqualified %code): Change muscle name to
3359 b4_percent_code().
3360 (content.opt): Default to empty.
3361
3362 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3363
3364 Implement support for relative and absolute skeleton file names.
3365 Discussed starting at
3366 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3367 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3368 (Bison Options): Document in --skeleton entry.
3369 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3370 full_skeleton can't necessarily hold all of pkgdatadir.
3371 If the specified skeleton file name contains a `/', don't prepend
3372 pkgdatadir.
3373 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3374 file name contains a `/', prepend the grammar file directory.
3375 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3376 * skeletons.at: New file.
3377 (relative skeleton file names): New test case.
3378 (installed skeleton file names): New test case.
3379 * tests/testsuite.at: Include skeletons.at.
3380
3381 * bootstrap: Update copyright to 2007.
3382
3383 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3384
3385 * bootstrap: Remove occurrences of .#bootmp from the files.
3386
3387 2007-01-17 Akim Demaille <akim@epita.fr>
3388
3389 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3390 nonterminals.
3391 Use per-type %printer.
3392
3393 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3394
3395 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3396 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3397 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3398 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3399 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3400 tests/glr-regression.at, tests/input.at, tests/local.at,
3401 tests/output.at, tests/torture.at: Update copyright to 2007.
3402
3403 2007-01-16 Akim Demaille <akim@epita.fr>
3404
3405 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3406 error code.
3407 (Calc++ Scanner): Exit with failure if we can't open the input
3408 file.
3409 Accept "-" standing for stdin.
3410 (Calc++ Top Level): Print the result only if the parsing was
3411 successful.
3412
3413 2007-01-16 Akim Demaille <akim@epita.fr>
3414
3415 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3416
3417 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3418 and Joel E. Denny <jdenny@ces.clemson.edu>
3419
3420 Clean up %define and %code implementation in M4 some. Most
3421 importantly, rename all related macros to be in the b4_percent_define
3422 and b4_percent_code namespaces. Also, complete support for `.' in
3423 %define variable names and %code qualifiers.
3424 * data/bison.m4 (b4_check_user_names): Check for special
3425 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3426 m4_foreach loops.
3427 (b4_get_percent_define, b4_get_percent_code): Rename to...
3428 (b4_percent_define_get, b4_percent_code_get): ... these.
3429 Extend documentation with examples.
3430 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3431 b4_percent_define_skeleton_variables and
3432 b4_percent_code_skeleton_qualifiers.
3433 Expect any value for the %define variable `foo' to be stored in the
3434 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3435 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3436 expect any unqualified %code blocks to be stored in a macro named
3437 `b4_percent_code_unqualified'.
3438 Use m4_indir so that %define variable names and %code qualifiers can
3439 contain `.', which is allowed by the grammar parser.
3440 (b4_percent_define_default): New macro to set a default value for a
3441 %define variable.
3442 (m4_wrap): Update wrapped code, and fix some underquoting.
3443 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3444 Expect grammar uses of %define variables and %code qualifiers to be
3445 defined in b4_percent_define_user_variables and
3446 b4_percent_code_user_qualifiers.
3447 * data/c++.m4: Use b4_percent_define_default rather than
3448 m4_define_default. Fix some underquoting. Skeleton usage of %define
3449 variable define_location_comparison now implies skeleton usage of
3450 %define variable filename_type.
3451 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3452 data/push.c, data/yacc.c: Update macro names.
3453 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3454 muscle names.
3455
3456 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3457
3458 DJGPP specific issues.
3459
3460 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3461 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3462
3463 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3464
3465 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3466 run parsers in all tests so that Valgrind is invoked during
3467 maintainer-check-valgrind.
3468 (Duplicate representation of merged trees): Free all semantic values.
3469 (Duplicated user destructor for lookahead): Likewise.
3470
3471 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3472
3473 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3474 command-line prefix.
3475 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3476 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3477 miss Valgrind messages.
3478 (Exploding the Stack Size with Malloc): Likewise.
3479
3480 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3481
3482 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3483 locals. Reported by Juan Manuel Guerrero at
3484 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3485 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3486 Fix some indentation also.
3487 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3488 explaining this issue.
3489
3490 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3491 and Joel E. Denny <jdenny@ces.clemson.edu>
3492
3493 Simplify union and prologue handling, and escape union and lex/parse
3494 params with digraphs.
3495 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3496 values to the empty string since these are no longer guaranteed
3497 initialized by the front-end.
3498 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3499 braces around b4_user_stype since this is no longer done by the
3500 front-end.
3501 * src/files.c, src/files.h (pre_prologue_obstack,
3502 post_prologue_obstack): Remove.
3503 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3504 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3505 with digraphs. This fixes lex params and parse params.
3506 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3507 * src/output.c (prepare): Remove muscle insertion of the prologues.
3508 (output): Remove freeing of pre_prologue_obstack and
3509 post_prologue_obstack.
3510 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3511 than prologue_augment for prologue parsing so you don't need prologue
3512 obstacks.
3513 (grammar_declaration): For %union RHS, use `braceless' instead of
3514 "{...}" so that braces are already stripped and code is escaped with
3515 digraphs.
3516 * src/reader.c (prologue_augment): Remove.
3517 (reader): Remove initialization of pre_prologue_obstack and
3518 post_prologue_obstack.
3519 * src/reader.h (prologue_augment): Remove.
3520
3521 * data/c.m4: Remove stray parenthesis.
3522
3523 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3524
3525 Remove quotes from variables names in %define directives and from
3526 qualifiers in %code directives, and restrict the characters that are
3527 allowed in them to M4-friendly ones. For %define, continue to support
3528 the quoted form as a deprecated feature. Discussed starting at
3529 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3530 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3531 %code.
3532 * doc/bison.texinfo (Prologue Alternatives): Update.
3533 (Decl Summary): In %defines entry, update mention of `%code requires'
3534 and `%code provides'.
3535 (C++ Location Values): Update %define uses.
3536 (Calc++ Parser Interface): Likewise.
3537 (Calc++ Parser): Likewise, and update `%code requires' uses.
3538 (Table of Symbols): Update %code documentation.
3539 * src/parse-gram.y (prologue_declaration): For %define variables, use
3540 `variable' instead of `STRING'.
3541 (grammar_declaration): For %code qualifiers, use `ID' instead of
3542 `STRING'.
3543 (variable): New nonterminal that takes an `ID' or a `STRING'.
3544 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3545 and %define uses.
3546 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3547 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3548 (%define errors): Update %define uses.
3549
3550 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3551
3552 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3553 instead of muscle_insert for %define values so that M4-special
3554 characters are replaced with digraphs.
3555 * tests/input.at (%define errors): Extend to check weird values.
3556
3557 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3558
3559 Instead of having skeletons declare all valid %define variables and
3560 %code qualifiers, provide macros that retrieve the associated values
3561 and build these lists automatically. Thus Bison will now warn when a
3562 variable or qualifier is not used by the skeleton in the current
3563 invocation regardless of whether it might sometimes be used by that
3564 skeleton in other invocations. Also, move all %define value macros to
3565 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3566 form, which is replaced by %code.
3567 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3568 (b4_check_user_names): ... this, and change the series of valid name
3569 arguments to a single list argument for names used in the skeleton
3570 similar to the existing list argument for names used in the grammar.
3571 Warn instead of complaining.
3572 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3573 values and %code code, to format %code code properly, and to build
3574 lists of all %define variables and %code qualifiers used in the
3575 skeleton: b4_skeleton_percent_define_variables and
3576 b4_skeleton_percent_code_qualifiers.
3577 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3578 Remove, and...
3579 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3580 the skeleton names lists can finish building first. In place of
3581 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3582 expect the lists b4_user_percent_define_variables and
3583 b4_user_percent_code_qualifiers.
3584 * data/c++.m4: Where setting default values for b4_parser_class_name,
3585 b4_location_type, b4_filename_type, b4_namespace, and
3586 b4_define_location_comparison, update their names to the
3587 b4_percent_define_ namespace.
3588 * data/glr.c: Don't use b4_check_percent_define_variables and
3589 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3590 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3591 (b4_parser_class_name, b4_namespace): Define these using
3592 b4_get_percent_define for parser_class_name and namespace.
3593 * data/location.cc: Use b4_get_percent_define.
3594 * data/push.c: Don't use b4_check_percent_define_variables and
3595 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3596 * data/yacc.c: Likewise, and don't call m4_exit in
3597 b4_use_push_for_pull_if or m4_wrap code will never execute.
3598 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3599 Rename to...
3600 (muscle_grow_user_name_list): ... this for consistency with the
3601 terminology used in bison.m4.
3602 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3603 %define variable names, and rename muscle used_percent_define_variables
3604 to user_percent_define_variables.
3605 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3606 user_percent_code_qualifiers.
3607 (content): Remove.
3608 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3609 {CODE} form is no longer accepted.
3610 * tests/input.at (Reject bad %code qualifiers): Rename to...
3611 (Reject unused %code qualifiers): ... this, and update test output.
3612 (%define error): Update test output.
3613
3614 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3615
3616 Check for unrecognized %define variables similar to checking for
3617 unrecognized %code qualifiers. Check for redefined %define variables.
3618 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3619 generalizes...
3620 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3621 (b4_check_percent_define_variables): New, also wraps it.
3622 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3623 variables using b4_check_percent_define_variables.
3624 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3625 all those exercised in the test suite and all those listed in the
3626 `Default values' section of c++.m4. Are there others?
3627 * data/push.c, data/yacc.c: Declare no valid %define variables.
3628 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3629 similar to muscle_find, but it works even when the muscle stores a
3630 const value.
3631 (muscle_grow_used_name_list): New function for constructing the used
3632 name list muscles that b4_check_for_unrecognized_names requires.
3633 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3634 %define'd more than once. Define the b4_used_percent_define_variables
3635 muscle with muscle_grow_used_name_list.
3636 (grammar_declaration): Abbreviate %code code with
3637 muscle_grow_used_name_list.
3638 * tests/input.at (%define errors): New.
3639
3640 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3641
3642 Provide warn_at, complain_at, and fatal_at function callbacks to the
3643 skeletons, and use this for %code qualifier complaints.
3644 * data/bison.m4 (b4_error_at): New, invoked by...
3645 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3646 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3647 @fatal_at(...@) directives.
3648 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3649 qualifiers in b4_used_percent_code_qualifiers and to use
3650 b4_complain_at.
3651 * src/location.c, src/location.h (boundary_set_from_string): New global
3652 function.
3653 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3654 function.
3655 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3656 to b4_used_percent_code_qualifiers.
3657 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3658 function.
3659 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3660 (lineno): Rename to...
3661 (out_lineno): ... this so I don't misunderstand it again.
3662 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3663 here; these newlines are in the input but not the output file.
3664 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3665 (at_directive_perform): ... this new static function, and add handling
3666 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3667 directives.
3668 * tests/input.at (Reject bad %code qualifiers): Update test output with
3669 locations and extend.
3670
3671 * tests/output.at (Output file name: [, Output file name: ]): Remove
3672 bogus comment about these tests failing.
3673
3674 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3675
3676 Clean up b4_check_percent_code_qualifiers a little.
3677 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3678 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3679 documentation and add examples.
3680 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3681 qualifiers here.
3682
3683 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3684
3685 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3686 unreliable -- especially when they're hidden inside another macro.
3687 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3688 data/c.m4: Remove m4_divert(-1).
3689 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3690 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3691 m4_divert_push(0) and m4_divert_pop(0).
3692 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3693 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3694 pushed and popped by m4sugar, should be first on the stack.
3695
3696 Provide warn, complain, and fatal function callbacks to the skeletons.
3697 This provides more flexibility than m4_fatal, improves the error
3698 message format, and captures messages for translation. Discussed
3699 starting at
3700 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3701 * data/bison.m4 (b4_error): New, invoked by...
3702 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3703 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3704 directives. Because these M4 macros might be called when the current
3705 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3706 the previous removal of uses of m4_divert, which caused trouble.
3707 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3708 m4_fatal to report unrecognized %code qualifiers.
3709 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3710 push parser requests.
3711 * data/glr.c: Use b4_complain instead of m4_fatal to report
3712 non-deterministic push parser requests.
3713 Update @output usage to @output(...@) form.
3714 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3715 report missing %defines. Update @output usage to @output(...@) form.
3716 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3717 @output(...@) form.
3718 * src/main.c (main): Invoke skel_scanner_free.
3719 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3720 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3721 obstack_for_string from flex-scanner.h.
3722 (YY_DECL): Use to declare skel_lex static.
3723 (decode_at_digraphs): Remove; now handled in the new
3724 SC_AT_DIRECTIVE_ARG start condition.
3725 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3726 functions.
3727 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3728 at_directive_argv): New static globals.
3729 (INITIAL): Use fail_for_invalid_at.
3730 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3731 recognize the start of a generalized `@directive(...@)' form and
3732 start...
3733 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3734 directive args (using the new obstack_for_string), to decode the
3735 contained @ diagraphs, and to perform the directive. It recognizes
3736 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3737 @output(...@).
3738 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3739 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3740 `@,'.
3741 (scan_skel): Initialize obstack_for_string on the first call.
3742 (skel_scanner_free): New function to free obstack_for_string.
3743 * tests/input.at (Reject bad %code qualifiers): Update test output.
3744
3745 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3746
3747 Consolidate the 4 prologue alternative directives (%code, %requires,
3748 %provides, and %code-top) into a single %code directive with an
3749 optional qualifier field. Discussed at
3750 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3751 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3752 alternatives.
3753 * doc/bison.texinfo (Prologue Alternatives): Update.
3754 (Decl Summary): Update to %code "requires" and %code "provides".
3755 (Calc++ Parser): Update to %code "requires".
3756 (Table of Symbols): Remove entries for %requires, %provides, and
3757 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3758 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3759 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3760 which are skeleton-specific.
3761 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3762 declare what %code qualifiers it supports and to complain if any other
3763 qualifiers were used in the grammar.
3764 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3765 and b4_user_code([b4_percent_code_provides]) in place of
3766 b4_user_requires and b4_user_provides.
3767 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3768 Add b4_user_code([b4_percent_code_top]) and
3769 b4_user_code([b4_percent_code]).
3770 Invoke b4_check_percent_code_qualifiers.
3771 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3772 PERCENT_REQUIRES): Remove.
3773 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3774 %requires. Rewrite the %code RHS as the unqualified form defining the
3775 muscle b4_percent_code. Add another RHS for the qualified %code form,
3776 which defines muscles of the form b4_percent_code_QUALIFIER and the
3777 b4_used_percent_code_qualifiers muscle.
3778 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3779 PERCENT_REQUIRES): Remove.
3780 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3781 %code "requires" and %code "provides".
3782 * tests/input.at (Reject bad %code qualifiers): New.
3783
3784 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3785
3786 Use the new code_props interface for destructors and printers.
3787 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3788 printer_location members, and change the type of the destructor and
3789 printer members to code_props.
3790 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3791 symbol_printer_get, semantic_type_destructor_set,
3792 semantic_type_printer_set, default_tagged_destructor_set,
3793 default_tagless_destructor_set, default_tagged_printer_set,
3794 default_tagless_printer_set): Use code_props in arguments and return
3795 types in place of char const * and location.
3796 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3797 since the locations are now contained in the return of
3798 symbol_destructor_get and symbol_printer_get.
3799 * src/output.c (symbol_destructors_output, symbol_printers_output):
3800 Replace with...
3801 (symbol_code_props_output): ... this to eliminate duplicate code.
3802 (output_skeleton): Update to use symbol_code_props_output.
3803 * src/reader.c (symbol_should_be_used): Update use of
3804 symbol_destructor_get.
3805 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3806 Update uses of the various _destructor_set and _printer_set functions.
3807 * src/symtab.c: (default_tagged_destructor_location,
3808 default_tagless_destructor_location, default_tagged_printer_location,
3809 default_tagless_printer_location): Remove since we...
3810 (default_tagged_destructor, default_tagless_destructor,
3811 default_tagged_printer, default_tagless_printer): ... change the type
3812 of these to code_props.
3813 (symbol_new, semantic_type_new, symbol_destructor_set,
3814 semantic_type_destructor_set, symbol_destructor_get,
3815 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3816 symbol_check_alias_consistency, default_tagged_destructor_set,
3817 default_tagless_destructor_set, default_tagged_printer_set,
3818 default_tagless_printer_set): Update.
3819 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3820 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3821 code_props members.
3822 (symbol_print): Use SYMBOL_CODE_PRINT.
3823
3824 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3825
3826 Use the new code_props interface for rule actions.
3827 * src/symlist.h (symbol_list): Replace action, action_location, and
3828 used members with a code_props action_props member.
3829 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3830 grammar_midrule_action, grammar_current_rule_merge_set,
3831 grammar_current_rule_symbol_append, packgram): Update.
3832 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3833 * src/scan-code.l (handle_action_dollar): Update.
3834 (translate_rule_action): Remove, no longer used.
3835 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3836
3837 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3838
3839 Use the new code_props interface in parse-gram.y.
3840 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3841 Update all uses of translate_* functions to use the new code_props
3842 interface and to use gram_scanner_last_string_free and
3843 code_scanner_last_string_free where possible.
3844 (grammar_declaration): symbol_list_destructor_set and
3845 symbol_list_printer_set now perform the translation, so don't do it
3846 here. Use gram_scanner_last_string_free where possible.
3847 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3848 translate_code): Remove, no longer used.
3849 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3850 symbol_list_printer_set): Perform code translation here rather than
3851 depending on the caller to do so.
3852
3853 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3854 * src/scan-gram.h (gram_last_string): Remove declaration.
3855 * src/scan-gram.l (last_string): Declare it static.
3856
3857 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3858
3859 Encapsulate code properties and related functionality for the various
3860 destructors, printers, and actions into a code_props structure and
3861 interface. This patch merely implements code_props in scan-code.h and
3862 scan-code.l. Future patches will rewrite other modules to use it.
3863 Discussed starting at
3864 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3865 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3866 consistently initialize const structs that have an empty location
3867 field.
3868 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3869 to ensure consistency.
3870 * src/scan-code.h (code_props): New structure.
3871 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3872 function, macro, and const global variable for initializing a
3873 code_props with no code.
3874 (code_props_plain_init, code_props_symbol_action_init,
3875 code_props_rule_action_init, code_props_translate_code): The rest of
3876 the new code_props functional interface. Among other things, the init
3877 functions set the code_props kind field so that
3878 code_props_translate_code will know whether to behave like
3879 translate_symbol_action, translate_rule_action, or translate_code.
3880 These old translate functions must remain until all other modules are
3881 updated to use the new code_props interface.
3882 (code_scanner_last_string_free): New function similar to
3883 gram_scanner_last_string_free.
3884 (code_scanner_free): Add documentation.
3885 * src/scan-code.l: Implement the new interface.
3886 (code_lex): Make it static, add a code_props* argument, and remove the
3887 rule argument.
3888 (last_string): New static global similar to the one in scan-gram.l.
3889 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3890 instead of rule.
3891 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3892 code_props since Bison may one day use this information for destructors
3893 and printers.
3894 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3895 (handle_action_dollar): Use symbol_list_n_get and set used flag
3896 directly since symbol_list_n_used_set is removed.
3897 (translate_action): Add a code_props* argument and remove the rule,
3898 action, and location arguments. Pass the code_props* on to code_lex.
3899 (translate_rule_action, translate_symbol_action, translate_code):
3900 Rewrite as wrappers around the new code_props interface.
3901 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3902 it would eventually need to break the encapsulation of code_props.
3903
3904 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3905
3906 * etc/.cvsignore: New.
3907
3908 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3909
3910 Add maintainer-push-check to run maintainer-check using push parsing in
3911 place of pull parsing where available.
3912 * Makefile.am (maintainer-push-check): New.
3913 * data/bison.m4 (b4_use_push_for_pull_if): New.
3914 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3915 appropriately based on their existing values.
3916 (yypush_parse): Don't print push-parser-specific diagnostics if push
3917 parsing is being used in place of pull parsing.
3918 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3919 push.c.
3920 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3921 variable, and insert b4_use_push_for_pull_flag into muscles.
3922 * tests/Makefile.am (maintainer-push-check): New.
3923
3924 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3925
3926 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3927 (whether successful or failed) so that yypush_parse can be invoked
3928 again to start a new parse using the same yypstate.
3929 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3930 check multiple yypull_parse invocations on the same yypstate. For pull
3931 mode, extend to check multiple yyparse invocations.
3932 (Exploding the Stack Size with Alloca): Extend to try with
3933 %push-pull-parser.
3934 (Exploding the Stack Size with Malloc): Likewise.
3935
3936 * tests/calc.at (Simple LALR Calculator): Don't specify
3937 %skeleton "push.c" since %push-pull-parser implies that now.
3938 * tests/headers.at (export YYLTYPE): Don't check for the push
3939 declarations. Otherwise, this test case can't be used to see if push
3940 mode can truly emulate pull mode.
3941 * tests/input.at (Torturing the Scanner): Likewise.
3942 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3943 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3944 AT_YACC_IF, which now includes the case of push mode since %skeleton
3945 need not be used for push mode. This will be more intuitive once
3946 push.c is renamed to yacc.c.
3947
3948 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3949
3950 For push mode, convert yyparse from a macro to a function, invoke yylex
3951 instead of passing a yylexp argument to yypull_parse, and don't
3952 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3953 Discussed starting at
3954 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3955 * data/bison.m4 (b4_pull_if): New.
3956 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3957 * data/push.c: Improve M4 quoting a little.
3958 (b4_generate_macro_args, b4_parenthesize): Remove.
3959 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3960 any time a pull parser is requested.
3961 Don't #define this as a wrapper around yypull_parse. Instead, when
3962 both push and pull are requested, make it a function that does that
3963 same thing.
3964 (yypull_parse): If there's a b4_prefix, #define this to
3965 b4_prefix[pull_parse] when both push and pull are requested.
3966 Don't define this as a function unless both push and pull are
3967 requested.
3968 Remove the yylexp argument and hard-code yylex invocation instead.
3969 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3970 %push-parser.
3971 * src/getargs.c (pull_parser): New global initialized to true.
3972 * getargs.h (pull_parser): extern it.
3973 * src/output.c (prepare): Insert pull_flag muscle.
3974 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3975 (prologue_declaration): Set both push_parser and pull_parser = true for
3976 %push-pull-parser. Set push_parser = true and pull_parser = false for
3977 %push-parser.
3978 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3979 %push-parser since there's no backward-compatibility concern here.
3980 Scan %push-pull-parser.
3981 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3982 instead of %push-parser.
3983 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3984 prototype it in the module that calls yyparse.
3985 * tests/input.at (Torturing the Scanner): Likewise.
3986 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3987
3988 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3989
3990 Update etc/bench.pl. Optimize push mode a little (the yyn change
3991 deserves most of the credit).
3992 * Makefile.am (SUBDIRS): Add etc subdirectory.
3993 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3994 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3995 yytoken, yyval, and yyloc declarations to...
3996 (yyparse or yypush_parse): ... here to improve performance. For
3997 yypush_parse invocations after the first, be sure to assign yyn its old
3998 value again.
3999 (yypstate_new): Don't bother initializing the yyresult field since the
4000 initial value isn't used.
4001 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4002 remove the #define that, in push mode, set it to yyps->NAME.
4003 * etc/Makefile.am: New.
4004 * etc/bench.pl: Remove and build it instead from...
4005 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4006 "tests/bison" from the build directory by default rather than just
4007 invoking "bison" from $PATH.
4008 (calc_grammar): Update push parser code: don't declare yylval globally,
4009 don't define yyparse_wrapper, and don't #define yyparse.
4010 (bench_grammar): Update to check all working combinations of yacc.c,
4011 push.c, impure, pure, pull, and push.
4012
4013 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4014
4015 For push mode, add pull wrappers around yypush_parse.
4016 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4017 (yypull_parse): New function wrapping yypush_parse.
4018 (yyparse): New #define wrapping yypull_parse.
4019 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4020 is declared.
4021 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4022 prototype yylex in the module that calls yyparse, and don't prototype
4023 yyparse there. Otherwise, the yyparse expansion won't compile.
4024 * tests/input.at (Torturing the Scanner): Likewise.
4025
4026 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4027
4028 Enable push parsers to operate in impure mode. Thus, %push-parser no
4029 longer implies %pure-parser. The point of this change is to move
4030 towards being able to test the push parser code by running the entire
4031 test suite as if %push-parser had been declared.
4032 * data/push.c (yypush_parse): For impure mode, remove the
4033 yypushed_char, yypushed_val, and yypushed_loc arguments.
4034 Instead, declare these as local variables initialized to the global
4035 yychar, yylval, and yylloc.
4036 For the first yypush_parse invocation only, restore the initial values
4037 of these global variables when it's time to read a token since they
4038 have been overwritten.
4039 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4040 %push-parser.
4041 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4042 %pure-parser along with %push-parser since this test case was designed
4043 for pure push parsers.
4044 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4045 (AT_YACC_OR_PUSH_IF): New.
4046 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4047 add a note that it's still wrong for some cases (as it has been for a
4048 while).
4049 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4050 %push-parser no longer implies %pure-parser.
4051
4052 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4053
4054 Remove some unnecessary differences between the pull parser code and
4055 the push parser code. This patch enables yynerrs in push mode.
4056 * data/push.c: Reformat M4 a little.
4057 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4058 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4059 because push mode is on. Instead, if pure mode is on, move yynerrs
4060 to...
4061 (b4_declare_parser_state_variables): ... here.
4062 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4063 to yyps->NAME so it can be used in yypush_parse.
4064 (yypush_parse): Don't omit uses of yynerrs in push mode.
4065
4066 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4067
4068 Fix bug such that the first pushed token's value and location are
4069 sometimes overwritten (sometimes by %initial-action) before being used.
4070 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4071 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4072 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4073 more closely mimic the pull parser logic.
4074 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4075 time to read a token, which is after any initialization of yylval and
4076 yylloc.
4077 (gottoken): Rename label to...
4078 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4079 user namespace.
4080
4081 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4082
4083 Rearrange initialization of the parser state variables so that the
4084 skeleton doesn't have to have a copy for pull mode and another for push
4085 mode. This patch also fixes at least a bug such that yylloc was not
4086 initialized (with b4_location_initial_line and
4087 b4_location_initial_column) upon calling yypush_parse. However, that
4088 initialization now overwrites the first token's location;
4089 %initial-action assigning @$ already did the same thing, and both bugs
4090 will be fixed in a later patch.
4091 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4092 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4093 yyss, yyvs, yyls, and yystacksize.
4094 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4095 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4096 yylsp.
4097 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4098 yyps->NAME so it can be used in yypush_parse.
4099 (yyparse or yypush_parse): For yypush_parse, don't print the
4100 "Starting parse" diagnostic for invocations after the first.
4101 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4102 yypush_parse, only do it for the first invocation.
4103 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4104 initialization to occur in yypush_parse but only on the first
4105 invocation.
4106
4107 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4108
4109 * data/push.c: Add CPP guards around push parser declarations in both
4110 the header and the code file.
4111 In the code file, move the push parser declarations to the same place
4112 they appear in the header file.
4113 Clean up the M4 some, especially the inconsistent underquoting in
4114 some b4_c_function_def and b4_c_function_decl uses.
4115
4116 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4117
4118 Encapsulate the push parser state variables into an M4 macro so the
4119 push skeleton doesn't have to list them again for pull mode's yyparse.
4120 For push mode, remove yypush_parse's local equivalents of these
4121 variables to eliminate unnecessary copying between the two sets at
4122 run-time. This patch also fixes at least a bug related to multiple
4123 %initial-action invocations in push mode.
4124 * data/push.c (b4_declare_parser_variables): Rename to...
4125 (b4_declare_scanner_communication_variables): ... this for clarity and
4126 update both uses.
4127 (b4_declare_yyparse_variables): Remove and move its contents to the one
4128 spot where it was invoked.
4129 (b4_declare_parser_state_variables): New macro containing the parser
4130 state variables required by push mode.
4131 (struct yypstate): Replace all fields but yynew with
4132 b4_declare_parser_state_variables.
4133 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4134 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4135 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4136 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4137 parser state variable declarations with
4138 b4_declare_parser_state_variables.
4139 Don't initialize parser state variables when calling yypush_parse since
4140 yypstate_new already does that.
4141 Invoke the user's initial action only upon the first yypush_parse
4142 invocation.
4143 Remove all code that copies between the local parser state variables
4144 and the yypstate.
4145
4146 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4147
4148 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4149 prevent a name collision in a future patch where these names will
4150 sometimes be #define'd.
4151 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4152 since it no longer has the same name as the existing argument.
4153 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4154
4155 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4156 and Joel E. Denny <jdenny@ces.clemson.edu>
4157
4158 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4159 that the argument is case-insensitive, and there's no `=' here.
4160 For the %skeleton entry, mention that %language is better.
4161 (Bison Options): Likewise for --language and --skeleton. Move the
4162 --skeleton entry so that the `Tuning the parser' section is sorted
4163 alphabetically on long options.
4164 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4165 %language directive in detail here; cross-reference the %language
4166 documentation instead.
4167 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4168 `%require "2.3b"' so that the example is always up-to-date.
4169 (Table of Symbols): Add entries for %language and %skeleton.
4170 * examples/extexi (normalize): Instead of replacing every %require
4171 argument with the current Bison version, just substitute for
4172 `@value{VERSION}'. This guarantees that we're testing what actually
4173 appears in the documentation.
4174 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4175 rather than `@VERSION@'.
4176
4177 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4178
4179 * NEWS: Reword the %language news a bit, and put it earlier.
4180
4181 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4182 Rewrite to simplify the logic.
4183 (language_argmatch): Likewise.
4184 (program_name): We now own this var.
4185 * src/getargs.h (struct bison_language): Use char[] rather than
4186 const char *.
4187
4188 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4189 Java is supported.
4190 * src/complain.c (program_name): Remove decl; no longer needed.
4191 * src/main.c (program_name): Remove; now belongs to getargs.
4192
4193 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4194
4195 * NEWS: Document %language.
4196
4197 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4198
4199 * data/c-skel.m4, data/c++-skel.m4: New files.
4200 * data/glr.c: Complain on push parsers.
4201
4202 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4203 over %skeleton.
4204 (Decl Summary): Document %language and %skeleton.
4205 (Command line): Document -L.
4206
4207 * examples/extexi: Rewrite %require directive.
4208 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4209
4210 * src/files.c (compute_exts_from_gc): Look in language structure
4211 for .y extension.
4212 (compute_file_name_parts): Check whether .tab should be added.
4213 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4214 (language, skeleton_arg, language_argmatch): New.
4215 (long_options): Add --language.
4216 (getargs): Use skeleton_arg, add -L/--language.
4217 * src/getargs.h: Include location.h.
4218 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4219 * src/output.c (prepare): Pick default skeleton from struct language.
4220 Don't dispatch C skeletons here.
4221 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4222 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4223 * src/scan-gram.l ("%language"): New rule.
4224
4225 * tests/calc.at: Test %skeleton and %language.
4226 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4227 (AT_GLR_IF): Look for %skeleton "glr.cc".
4228 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4229 (AT_YACC_IF): Reject %language.
4230
4231 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4232
4233 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4234 since it wasn't used; only the typedef name 'semantic_type' is needed.
4235 Also, omit trailing white space.
4236
4237 * bootstrap: Sync from coreutils.
4238 (gnulib_extra_files): Add build-aux/announce.gen.
4239 (slurp): Adjust .gitignore files like .cvsignore files.
4240 * build-aux/announce-gen: Remove from CVS, since bootstrap
4241 now creates this.
4242
4243 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4244
4245 Make %push-parser imply %pure-parser. This fixes several bugs; see
4246 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4247 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4248 pure_parser = true.
4249 * data/push.c: Don't bother testing b4_push_if when deciding whether
4250 to expand b4_declare_parser_variables globally.
4251 (yypush_parse): Likewise in here.
4252
4253 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4254 (yy_reduce_print): Reformat M4 for readability.
4255
4256 2006-12-15 Bob Rossi <bob@brasko.net>
4257 and Joel Denny <jdenny@ces.clemson.edu>
4258
4259 * data/push.c (yypstate): Add typedef, and update all uses of
4260 struct yypstate to just yypstate.
4261 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4262
4263 2006-12-14 Bob Rossi <bob@brasko.net>
4264
4265 * data/push.c (yypush_parse): Declare prototype regardless of
4266 %locations option.
4267
4268 2006-12-14 Bob Rossi <bob@brasko.net>
4269
4270 * data/push.c (yyparse): Remove the prototype and the #define when in
4271 push-parser mode.
4272
4273 2006-12-13 Bob Rossi <bob@brasko.net>
4274
4275 * data/push.c (yypstate_init): Rename to...
4276 (yypstate_new): ... this and use b4_c_function_def.
4277 (yypstate_delete): New.
4278 (yypush_parse): Change parameters yynval and yynlloc to be const.
4279 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4280 yypstate_delete functions.
4281
4282 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4283
4284 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4285 strange test case titles. Reported by Bob Rossi.
4286
4287 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4288
4289 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4290 of potential ambiguities in GLR grammers.
4291
4292 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4293
4294 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4295 `bison ', use m4_index instead of m4_substr since chopping up a string
4296 containing M4-special characters causes problems here.
4297
4298 Fix a couple of bugs related to special characters in user-specified
4299 file names, and make it easier for skeletons to compute output file
4300 names with the same file name prefix as Bison-computed output file
4301 names.
4302 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4303 b4_parser_file_name and b4_spec_defines_file instead of
4304 @output_parser_name@ and @output_header_name@, which are now redundant.
4305 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4306 b4_parser_file_name, b4_spec_defines_file, and the new
4307 @basename(FILENAME@) instead of @output_parser_name@ and
4308 @output_header_name@, which inappropriately escaped the file names as
4309 C string literals.
4310 * src/files.c (all_but_ext): Remove static qualifier.
4311 (compute_output_file_names): Move `free (all_but_ext)' to...
4312 (output_file_names_free): ... here since all_but_ext is needed later.
4313 * src/files.h (all_but_ext): Extern.
4314 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4315 exactly what MUSCLE_INSERT_STRING used to do.
4316 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4317 characters are escaped properly.
4318 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4319 all_but_ext.
4320 For pkgdatadir muscle, maintain previous functionality by using
4321 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4322 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4323 digraphs would never be expanded. Hopefully no one has M4-special
4324 characters in his Bison installation path.
4325 * src/scan-skel.l: Don't parse @output_header_name@ and
4326 @output_parser_name@ anymore since they're now redundant.
4327 In @output, use decode_at_digraphs.
4328 Parse a new @basename command that invokes last_component.
4329 (decode_at_digraphs): New.
4330 (BASE_QPUTS): Remove unused.
4331 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4332 (Output file name): New tests.
4333
4334 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4335
4336 Warn about output files that are generated by the skeletons and that
4337 conflict with other output files.
4338 * data/glr.c: Don't generate the header file here when glr.cc does.
4339 * src/files.c (file_names, file_names_count): New static globals.
4340 (compute_output_file_names): Invoke output_file_name_check for files
4341 not generated by the skeletons and remove existing checks.
4342 (output_file_name_check): New function that warns about conflicting
4343 output file names.
4344 (output_file_names_free): Free file_names.
4345 * src/files.h (output_file_name_check): Declare.
4346 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4347 the skeletons.
4348 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4349 (Conflicting output files): New tests.
4350
4351 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4352
4353 * doc/bison.texinfo: Fix a couple of typos.
4354
4355 2006-12-08 Bob Rossi <bob@brasko.net>
4356
4357 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4358 Rename to...
4359 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4360 update all uses.
4361 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4362 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4363 local pv.
4364 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4365 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4366
4367 2006-12-07 Bob Rossi <bob@brasko.net>
4368 and Joel Denny <jdenny@ces.clemson.edu>
4369
4370 * data/push.c (yypvarsinit): Change return type from void* to struct
4371 yypvars*. No longer cast to void* on return.
4372 (struct yypvars): Remove yylen since it need not be remembered between
4373 yypushparse invocations.
4374 (yypushparse): Don't copy between yylen and pv->yylen.
4375
4376 2006-12-05 Bob Rossi <bob@brasko.net>
4377
4378 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4379 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4380 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4381 (struct yypvars): Remove b4_declare_parser_variables.
4382 (yypvarsinit): Remove init code for removed variables.
4383 (global scope): Do not declare b4_declare_parser_variables if
4384 push or pure mode.
4385 (yypushparse): Add b4_declare_parser_variables.
4386 Init new local variables, and remove init code for removed
4387 yypvars variables.
4388 (yyparse): Delete.
4389 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4390 and yyparse for other modes.
4391 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4392 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4393 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4394 (AT_PURE_LEX_IF): True if pure or push parser.
4395
4396 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4397
4398 Document Yacc prologue alternatives and default %destructor's and
4399 %printer's as experimental. Don't mention Java yet. Discussed at
4400 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4401 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4402 (2.3a): Annotate this entry to say the old forms of these features were
4403 also experimental.
4404 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4405 Table of Symbols): Say they're experimental. Comment out any mention
4406 of Java (we'll want this back eventually).
4407
4408 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4409
4410 Support a file name argument to %defines. Deprecate `=' in
4411 %file-prefix, %name-prefix, and %output. Discussed at
4412 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4413 * NEWS (2.3a+): Mention.
4414 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4415 form of %defines, and remove `=' from entries for %file-prefix,
4416 %name-prefix, and %output.
4417 * src/parse-gram.y (prologue_declaration): Implement.
4418 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4419 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4420 all but one occurrence of %name-prefix.
4421 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4422 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4423 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4424 occurrence of each of %file-prefix and %output. Add check for %defines
4425 with argument.
4426 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4427 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4428 Remove the `=' from %output.
4429
4430 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4431
4432 Don't escape $ in test case titles since Autoconf 2.61 now does that
4433 correctly.
4434 * tests/actions.at (Default %printer and %destructor are not for error
4435 or $undefined): Here.
4436 (Default %printer and %destructor are not for $accept): Here.
4437 * tests/input.at (Invalid $n and @n): Here.
4438
4439 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4440
4441 Rename <!> to <>. Discussed starting at
4442 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4443 * NEWS (2.3a+): Update.
4444 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4445 Update.
4446 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4447 * src/scan-gram.l (INITIAL): Implement.
4448 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4449 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4450 comment.
4451 * tests/actions.at (Default tagless %printer and %destructor,
4452 Default tagged and per-type %printer and %destructor,
4453 Default %printer and %destructor are not for error or $undefined,
4454 Default %printer and %destructor are not for $accept,
4455 Default %printer and %destructor for mid-rule values): Update.
4456 * tests/input.at (Default %printer and %destructor redeclared,
4457 Unused values with default %destructor): Update.
4458
4459 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4460
4461 Don't let %prec take a nonterminal.
4462 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4463 token.
4464 * tests/input.at (%prec takes a token): New test checking that %prec
4465 won't take a nonterminal.
4466
4467 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4468
4469 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4470 it was double-quoted.
4471 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4472 grammar is maintained with Bison's highest standards.
4473 * src/getargs.c: Fix some typos in Doxygen comments.
4474
4475 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4476
4477 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4478 later. Reported by Paul Eggert in
4479 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4480 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4481 * src/scan-code.l (translate_action): Don't bother invoking
4482 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4483 (code_scanner_free): Instead of invoking
4484 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4485 which frees more.
4486 * src/scan-gram.l (gram_scanner_free): Likewise.
4487 * src/scan-skel.l (scan_skel): Likewise.
4488
4489 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4490
4491 * src/files.c (tr): Change return type to void.
4492 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4493 has been called previously for the same key.
4494 (muscle_find): Return storage instead of value so that
4495 --enable-gcc-warnings doesn't produce warnings that the return discards
4496 const. aver that the value and storage are the same since storage
4497 could potentially be NULL when value is not.
4498 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4499 same as 0.
4500
4501 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4502
4503 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4504 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4505 us a slightly cleaner distribution, and also works.
4506 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4507 gnulib changes.
4508
4509 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4510 and Paul Eggert <eggert@cs.ucla.edu>
4511
4512 Don't let Bison leak memory except when it complains.
4513 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4514 (spec_defines_file, dir_prefix): Now char *, not const char *,
4515 since they are freed.
4516 * src/files.c: Likewise.
4517 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4518 Likewise.
4519 (tr): Now operates in-place. All uses changed.
4520 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4521 values.
4522 (compute_file_name_parts, compute_output_file_names): Don't store
4523 read-only data in variables that will be freed.
4524 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4525 src_extension, and header_extension.
4526 (output_file_names_free): New public function to free
4527 spec_verbose_file, spec_graph_file, spec_defines_file,
4528 parser_file_name, and dir_prefix.
4529 * src/getargs.c (getargs): Don't store read-only data in variables that
4530 will be freed.
4531 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4532 (which previously existed but was unused), and quotearg_free.
4533 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4534 * src/muscle_tab.c: Likewise.
4535 (muscle_entry): Make the value char const *,
4536 and add a new storage member that is char * and can be freed.
4537 (muscle_entry_free): New private function.
4538 (muscle_init): Use it instead of free.
4539 (muscle_insert, muscle_grow): Update and use new storage member.
4540 (muscle_code_grow): Free the string passed to muscle_grow
4541 since it's not needed anymore.
4542 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4543 add a new `char *code' member.
4544 ("{...}"): Declare semantic type as code.
4545 * src/scan-code.h (translate_rule_action):
4546 (translate_symbol_action, translate_code, translate_action): Return
4547 `char const *' rather than `char *' since external code should not free
4548 these strings.
4549 * src/scan-code.l: Likewise.
4550 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4551 which is "{...}" in the parser.
4552 * tests/Makefile.am (maintainer-check-valgrind): Set
4553 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4554 Valgrind.
4555 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4556 complain.
4557 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4558 expecting a non-zero exit status sets --leak-check=summary and
4559 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4560 this case, and we don't want to hear about it.
4561
4562 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4563
4564 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4565 instead of from the template, to simplify configuration a bit.
4566 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4567 and m4/wint_t.m4, as they are needed with the latest gnulib.
4568
4569 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4570
4571 Disable unset/unused mid-rule value warnings by default, and recognize
4572 --warnings=midrule-values to enable them. Discussed starting at
4573 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4574 * NEWS (2.3a+): Mention.
4575 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4576 warnings): Add entry for midrule-values subargument.
4577 * src/reader.c (symbol_should_be_used): Don't return true just because
4578 the value is a set/used mid-rule value unless
4579 --warnings=midrule-values was specified.
4580 * tests/input.at (Unused values, Unused values before symbol
4581 declarations): Run tests with and without --warnings=midrule-values.
4582
4583 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4584 than LIST_FREE directly.
4585
4586 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4587
4588 Finish implementing --warnings=error, which should not be implied by
4589 --warnings=all (or by its synonyms -W and --warnings without
4590 subarguments).
4591 * src/complain.c (set_warning_issued): New function to report that
4592 warnings are being treated as errors and to record an error if so.
4593 Invoke...
4594 (warn_at, warn): ... here.
4595 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4596 "error - warnings are errors" does not appear above "all - all of the
4597 above".
4598 (getargs): For -W and --warnings without subarguments, don't let
4599 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4600 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4601
4602 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4603
4604 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4605 empty subargument list. For example: `bison --warnings= parser.y'.
4606
4607 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4608
4609 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4610 the parser header file so that gcc doesn't warn.
4611
4612 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4613
4614 Split the default %destructor/%printer into two kinds: <*> and <!>.
4615 Discussed starting at
4616 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4617 * NEWS (2.3a+): Mention.
4618 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4619 previous change today related to mid-rules.
4620 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4621 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4622 (TYPE_TAG_ANY): Add as <*>.
4623 (TYPE_TAG_NONE): Add as <!>.
4624 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4625 for <*> and <!>.
4626 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4627 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4628 * src/symlist.c (symbol_list_default_new): Split into tagged and
4629 tagless versions.
4630 (symbol_list_destructor_set, symbol_list_printer_set): Split
4631 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4632 SYMLIST_DEFAULT_TAGLESS.
4633 * src/symlist.h: Update symbol_list_default*_new prototypes.
4634 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4635 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4636 * src/symtab.c (default_destructor, default_destructor_location,
4637 default_printer, default_printer_location): Split each into tagged and
4638 tagless versions.
4639 (symbol_destructor_get, symbol_destructor_location_get,
4640 symbol_printer_get, symbol_printer_location_get): Implement tagged
4641 default and tagless default cases.
4642 (default_destructor_set, default_printer_set): Split each into tagged
4643 and tagless versions.
4644 * src/symtab.h: Update prototypes.
4645 * tests/actions.at (Default %printer and %destructor): Rename to...
4646 (Default tagless %printer and %destructor): ... this, and extend.
4647 (Per-type %printer and %destructor): Rename to...
4648 (Default tagged and per-type %printer and %destructor): ... this, and
4649 extend.
4650 (Default %printer and %destructor for user-defined end token): Extend.
4651 (Default %printer and %destructor are not for error or $undefined):
4652 Update.
4653 (Default %printer and %destructor are not for $accept): Update.
4654 (Default %printer and %destructor for mid-rule values): Extend.
4655 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4656 (Unused values with default %destructor): Extend.
4657
4658 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4659
4660 Don't apply the default %destructor/%printer to an unreferenced midrule
4661 value. Mentioned at
4662 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4663 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4664 like $@n instead of just @n so that the default %destructor/%printer
4665 logic doesn't see them as user-defined symbols.
4666 (symbol_is_dummy): Check for both forms of the name.
4667 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4668 name for which the midrule value is referenced in any action.
4669 * tests/actions.at (Default %printer and %destructor for mid-rule
4670 values): New test.
4671 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4672 for change to dummy symbol names.
4673
4674 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4675
4676 Warn about unset midrule $$ if the corresponding $n is used.
4677 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4678 $n usage.
4679 (packgram): Before invoking grammar_rule_check on any rule, make sure
4680 all actions have already been scanned in order to set `used' flags.
4681 Otherwise, checking that a midrule's $$ is set will not always work
4682 properly because the midrule check must forward-reference the midrule's
4683 parent rule.
4684 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4685 warning.
4686
4687 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4688
4689 More improvements to the documentation of the prologue alternatives:
4690 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4691 Bison manual.
4692 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4693 some text to clarify the relative importance of the new directives and
4694 to show how these directives may be viewed as code labels.
4695
4696 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4697
4698 Similar to the recently removed %before-header, add %code-top as the
4699 alternative to the pre-prologue. Mentioned at
4700 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4701 Also, let the prologue alternatives appear in the grammar section.
4702 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4703 (prologue_declaration): Move the existing prologue alternatives to...
4704 (grammar_declaration): ... here and add %code-top.
4705 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4706
4707 Clean up and extend documentation for the prologue alternatives.
4708 * NEWS (2.3a+): Describe prologue alternatives.
4709 * doc/bison.texinfo (Prologue): Move discussion of prologue
4710 alternatives to...
4711 (Prologue Alternatives): ... this new section, and extend it to discuss
4712 all 4 directives in detail.
4713 (Table of Symbols): Clean up discussion of prologue alternatives and
4714 add %code-top.
4715
4716 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4717
4718 DJGPP specific issues.
4719
4720 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4721 config.bat accordingly.
4722 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4723 * djgpp/config.site: Likewise.
4724
4725 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4726
4727 Replace %*-header with %provides, %requires, %code. See discussion at
4728 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4729
4730 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4731 (b4_user_start_header): Remove.
4732 * data/glr.c: Use new macros instead of b4_*start_header
4733 and b4_*end_header.
4734 * data/glr.cc: Likewise.
4735 * data/lalr1.cc: Likewise.
4736 * data/push.c: Likewise.
4737 * data/yacc.c: Likewise.
4738
4739 * doc/bison.texinfo: Remove %before-header, rename
4740 %{start,end,after}-header to %requires, %provides, %code.
4741
4742 * src/parse-gram.y: Likewise (also rename token names accordingly).
4743 * src/scan-gram.l: Likewise.
4744 * tests/actions.at: Likewise.
4745
4746 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4747
4748 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4749 Problem reported by Joel E. Denny.
4750
4751 2006-10-14 Jim Meyering <jim@meyering.net>
4752
4753 (Sync from coreutils.)
4754 Work also when the working directory (with e.g. coreutils sources)
4755 is version controlled with git, rather than CVS.
4756 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4757 rather than CVS.
4758 In messages and comments, say e.g., "checked-out sources",
4759 rather than "CVS sources".
4760 (version_controlled_file): New function. Work for git as well as
4761 for CVS. Don't use grep's -q option.
4762 (slurp): Call it here, in place of CVS-specific code.
4763
4764 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4765
4766 Fix testsuite for ./configure --enable-gcc-warnings:
4767 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4768 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4769 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4770 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4771 * test/regression.at (Diagnostic that expects two alternatives):
4772 Likewise.
4773
4774 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4775
4776 * bootstrap.conf (gnulib_modules): Add config-h.
4777 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4778 worry about HAVE_CONFIG_H.
4779 * lib/abitset.c: Likewise.
4780 * lib/bitset.c: Likewise.
4781 * lib/bitset_stats.c: Likewise.
4782 * lib/bitsetv-print.c: Likewise.
4783 * lib/bitsetv.c: Likewise.
4784 * lib/ebitset.c: Likewise.
4785 * lib/get-errno.c: Likewise.
4786 * lib/lbitset.c: Likewise.
4787 * lib/subpipe.c: Likewise.
4788 * lib/timevar.c: Likewise.
4789 * lib/vbitset.c: Likewise.
4790 * lib/bitset.c: Include "bitset.h" first, to test interface.
4791 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4792 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4793 * lib/bitsetv.c: Include "bitsetv.h" first.
4794 * lib/get-errno.c: Include "get-errno.h" first.
4795 * m4/.cvsignore: Add config-h.m4.
4796 * tests/actions.at (Default %printer and %destructor for ...):
4797 Adjust expected line numbers in output to reflect removal of #if
4798 HAVE_CONFIG_H lines.
4799 * tests/glr-regression.at (Missed %merge type warnings when ...):
4800 Likewise.
4801 * tests/regression.at (Braced code in declaration in rules section):
4802 Likewise.
4803 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4804 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4805 Include <config.h> unconditionally.
4806
4807 * bootstrap: Sync from coreutils, as follows:
4808
4809 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4810
4811 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4812 variable was sometimes used without being initialized. This
4813 messed up the installation of the INSTALL file in some cases.
4814
4815 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4816
4817 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4818 --copy. Inspired by a suggestion from Bruno Haible.
4819
4820 2006-10-03 Jim Meyering <jim@meyering.net>
4821
4822 * bootstrap: Undo last change to this file, since now gnulib-tool
4823 sticks with the automake default in generating dependencies.
4824
4825 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4826
4827 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4828 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4829
4830 * doc/bison.1: Add copyright notice.
4831
4832 * data/glr.c: Don't include <stdarg.h>; not used.
4833
4834 * NEWS: The -g and --graph options now output graphs in Graphviz
4835 DOT format, not VCG format.
4836 * doc/bison.1: Likewise.
4837 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4838 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4839 of this change in
4840 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4841 * TODO: Remove Graphviz entry.
4842 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4843 remove vcg.c, vcg.h, vcg_defaults.h.
4844 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4845 * src/graphviz.c, src/graphviz.h: New files.
4846 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4847 * src/files.h: Make comment more generic.
4848 * src/main.c (main): Likewise.
4849 * src/print_graph.h: Likewise.
4850 * src/getargs.c (usage): Make usage description more generic.
4851 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4852 (static_graph, fgraph): Remove. All uses changed to pass
4853 arguments instead of sharing a static var.
4854 (print_core, print_actions, print_state, print_graph):
4855 Output graphviz format rather than VCG format.
4856 * tests/.cvsignore: Remove *.vcg; add *.dot.
4857 * tests/output.at: Expect *.dot files, not *.vcg files.
4858
4859 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4860 accommodates the 2006-10-08 change.
4861
4862 2006-10-11 Bob Rossi <bob@brasko.net>
4863
4864 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4865 (b4_yyssa, b4_yyerror_range): New macros.
4866 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4867 (yypvarsinit): Remove init of removed fields.
4868 (yypushparse): Remove use of removed fields; use new macros instead.
4869
4870 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4871
4872 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4873 in a push parser. Reindent slightly to match yacc.c better.
4874
4875 2006-10-11 Bob Rossi <bob@brasko.net>
4876
4877 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4878 yymsg_alloc fields.
4879 (yypvarsinit, yypushparse): Remove init of removed fields.
4880 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4881
4882 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4883
4884 * THANKS: Add Paolo Bonzini and Bob Rossi.
4885
4886 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4887
4888 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4889 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4890 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4891 b4_define_user_cde and uses): Remove.
4892 (b4_comment, b4_prefix, b4_sync_start): New.
4893 * data/bison.m4: New file, with most of the content removed from c.m4.
4894 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4895 * src/output.c (output_skeleton): Pass bison.m4.
4896 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4897 only if specified.
4898
4899 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4900
4901 Fix test failure reported by Tom Lane in
4902 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4903 and try to make such failures easier to catch in the future.
4904 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4905 that's now the caller's responsibility.
4906 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4907 Set yychar = YYEOF if it's negative.
4908 * tests/actions.at (yylex): Abort if asked to read past EOF.
4909 * tests/conflicts.at (yylex): Likewise.
4910 * tests/cxx-type.at (yylex): Likewise.
4911 * tests/glr-regression.at (yylex): Likewise.
4912 * tests/input.at (yylex): Likewise.
4913 * tests/regression.at (yylex): Likewise.
4914 * tests/torture.at (yylex): Likewise.
4915
4916 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4917
4918 Fix problems with translating English-language diagnostics.
4919 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4920 respect to bison-runtime pot generation. The YY_ stuff
4921 wasn't being captured.
4922 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4923 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4924 * runtime-po/POTFILES.in: Add data/push.c.
4925
4926 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4927
4928 Merge bootstrap changes from coreutils.
4929
4930 2006-09-28 Jim Meyering <jim@meyering.net>
4931
4932 Automatically generated dependencies are important even
4933 when all of the sources in a directory come from gnulib.
4934 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4935 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4936
4937 2006-09-23 Jim Meyering <jim@meyering.net>
4938
4939 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4940
4941 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4942
4943 * bootstrap: Add support for --force.
4944 (usage): New function. Describe usage less tersely.
4945 (CVS_only_file): New var.
4946
4947 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4948
4949 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4950 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4951 Adjust white space and comments to match GNU style better.
4952
4953 2006-09-20 Bob Rossi <bob@brasko.net>
4954
4955 * data/push.c (yyresult_get): Remove function.
4956 (YYPUSH_MORE): Add #define.
4957 (yypushparse): Modify return value.
4958
4959 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4960
4961 * stamp-h.in: Remove; no longer needed.
4962 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4963 Remove config.h, config.hin, intl (no longer created).
4964 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4965 stamp-h1.
4966
4967 Sync bootstrap from coreutils, as follows:
4968
4969 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4970
4971 * bootstrap (symlink_to_gnulib): New function.
4972 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4973 to copies-of-gnulib.
4974 (cp_mark_as_generated, slurp, gnulib_files):
4975 Avoid making a copy if it's the same as the old version.
4976 (gnulib_files): Add support for this variable (used by Bison).
4977
4978 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4979
4980 * src/getargs.c (usage): Rework to use conventions similar to
4981 coreutils, to make translation a bit easier and the code a bit
4982 smaller. Problem reported by Tim Van Holder.
4983
4984 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4985
4986 Use some of gnulib's new modules, taken from coreutils.
4987
4988 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4989 * bootstrap.conf: New file.
4990 (gnulib_modules): Add configmake, inttypes, unistd.
4991 (XGETTEXT_OPTIONS): Add complain, complain_at,
4992 fatal, fatal_at, warn, warn_at, unexpected_end.
4993 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4994 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4995 (gl_EARLY): Add.
4996 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4997 (gl_INIT): Add
4998 (GNULIB_AUTOCONF_SNIPPET): Remove.
4999 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5000 the pickiest.
5001 * lib/.cvsignore: Add inttypes_.h.
5002 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5003 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5004 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5005 no-longer-necessary initializations.
5006 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5007 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5008 use the unistd module.
5009 * src/system.h: Likewise.
5010 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5011 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5012 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5013 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5014 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5015 * src/system.h: Include inttypes.h unconditionally, now that we
5016 use the inttypes module. Don't bother to include stdint.h, since
5017 inttypes.h now does that for us.
5018 (LOCALEDIR): Remove, now that we use the configmake module.
5019 * src/getargs.c: Include configmake.h.
5020 * src/main.c: Likewise.
5021 * src/output.c: Likewise.
5022 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5023 not from $abs_top_builddir, since config.h moved.
5024
5025
5026 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5027 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5028
5029 * src/parse-gram.y (symbol_declaration): Don't put statements
5030 before declarations; it's not portable to C89.
5031 * src/scan-code.l (handle_action_at): Likewise.
5032
5033 * src/scan-code.l: Always initialize braces_level; the old code
5034 left it uninitialized and therefore had undefined behavior.
5035
5036 Don't attempt to redefine 'assert', since it runs afoul of
5037 systems where standard headers (mistakenly) include <assert.h>.
5038 Instead, define and use our own alternative, called 'aver'.
5039 * src/reader.c: Don't include assert.h, since we no longer
5040 use assert.
5041 * src/scan-code.l: Likewise.
5042 * src/system.h (assert): Remove, replacing with....
5043 (aver): New function, taking a bool arg. All uses changed.
5044 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5045 not merely an integer.
5046
5047 2006-09-15 Bob Rossi <bob@brasko.net>
5048
5049 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5050 * data/c.m4 (YYPUSH): New.
5051 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5052 * src/getargs.c (push_parser): New var.
5053 * src/getargs.h (push_parser): New declaration.
5054 * src/output.c (prepare): Add macro insertion of `push_flag'.
5055 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5056 (prologue_declaration): Parse %push-parser.
5057 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5058 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5059 list of removed lines from the traces observed.
5060 (AT_CHECK_CALC_LALR): Added push parser tests.
5061
5062 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5063
5064 * NEWS: Version 2.3a.
5065 * configure.ac (AC_INIT): Likewise.
5066
5067 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5068 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5069 due to header ordering dependencies. I don't know why the #define
5070 was there.
5071
5072 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5073 runtime cost when YYDEBUG is not defined, and so that some tests
5074 that used to fail now work. Problem and initial suggestion by
5075 Paolo Bonzini.
5076 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5077 * data/glr.cc (b4_parser_class_name):
5078 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5079 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5080 (yydebug_) [YYDEBUG]: New member.
5081 (yycdebug_): Now defined only if YYDEBUG.
5082 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5083 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5084 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5085 if YYYDEBUG.
5086 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5087 Define only if YYDEBUG.
5088 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5089 set_debug_level.
5090 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5091 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5092 AT_CHECK_CALC_GLR_CC that are working now.
5093
5094 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5095
5096 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5097 We don't need them in glr.cc, and glr.c defines them.
5098 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5099 assumes that defining it to anything is the same as defining
5100 it to 1. Problem reported by Paolo Bonzini.
5101
5102 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5103
5104 * data/c.m4 (b4_null, b4_case): Define.
5105 * src/output.c (prepare_symbols): Use b4_null.
5106 (user_actions_output): Use b4_case.
5107
5108 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5109
5110 * data/glr.c (b4_shared_declarations): Put start-header first,
5111 before any #includes that we generate, so that feature-test
5112 macros work. Problem reported by Michael Deutschmann in
5113 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5114 * data/lalr1.cc: Likewise.
5115 * doc/bison.texinfo (Prologue): Document that feature-test macros
5116 should be defined before any Bison declarations.
5117 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5118 that depend on location.hh after, not before, Bison decls, since
5119 we now include location.hh after the first user prologue.
5120
5121 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5122 Sander Brandenburg in
5123 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5124 Also, fix minor white space and comment issues.
5125 (Prologue): Mention that it's better to define feature-test macros
5126 before Bison declarations. Problem reported by Michael Deutschmann.
5127
5128 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5129 by Jim Meyering.
5130 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5131 This adjusts to recent gnulib changes.
5132
5133 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5134
5135 Finish implementation of per-type %destructor/%printer. Discussed
5136 starting at
5137 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5138 and
5139 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5140 * NEWS (2.3+): Add a description of this feature to the default
5141 %destructor/%printer description.
5142 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5143 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5144 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5145 list node contains a semantic type.
5146 * src/symtab.c, src/symtab.h: Extend with a table that associates
5147 semantic types with their %destructor's and %printer's.
5148 (semantic_type_from_uniqstr, semantic_type_get,
5149 semantic_type_destructor_set, semantic_type_printer_set): New functions
5150 composing the public interface of that table.
5151 (symbol_destructor_get, symbol_destructor_location_get,
5152 symbol_printer_get, symbol_printer_location_get): If there's no
5153 per-symbol %destructor/%printer, look up the per-type before trying
5154 the default.
5155 * tests/actions.at (Per-type %printer and %destructor): New test case.
5156 * tests/input.at (Default %printer and %destructor redeclared):
5157 Extend to check that multiple occurrences of %symbol-default in a
5158 single %destructor/%printer declaration is an error.
5159 (Per-type %printer and %destructor redeclared, Unused values with
5160 per-type %destructor): New test cases.
5161
5162 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5163
5164 Require default %destructor/%printer to be declared using
5165 %symbol-default instead of an empty symbol list, and start working on
5166 new per-type %destructor/%printer. Discussed at
5167 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5168 * NEWS (2.3+): Add %symbol-default to example.
5169 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5170 (Table of Symbols): Add entry for %symbol-default.
5171 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5172 (generic_symlist, generic_symlist_item): New nonterminals for creating
5173 a list in which each item is a symbol, semantic type, or
5174 %symbol-default.
5175 (grammar_declaration): Use generic_symlist in %destructor and %printer
5176 declarations instead of symbols.1 or an empty list.
5177 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5178 for changes to symbol_list.
5179 * src/reader.c: Update for changes to symbol_list.
5180 * src/scan-code.l: Likewise.
5181 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5182 * src/symlist.c, src/symlist.h: Extend such that a list node may
5183 represent a semantic type or a %symbol-default in addition to just an
5184 ordinary symbol. Add switched functions for setting %destructor's and
5185 %printer's.
5186 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5187 %destructor/%printer declarations.
5188
5189 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5190
5191 Whether the default %destructor/%printer applies to a particular symbol
5192 isn't a question of whether the user *declares* that symbol (in %token,
5193 for example). It's a question of whether the user by any means
5194 *defines* the symbol at all (by simply using a char token, for
5195 example). $end is defined by Bison whereas any other token with token
5196 number 0 is defined by the user. The error token is always defined by
5197 Bison regardless of whether the user declares it with %token, but we
5198 may one day let the user define error as a nonterminal instead.
5199 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5200 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5201 the meaning of "user-defined".
5202 * tests/actions.at (Default %printer and %destructor for user-declared
5203 end token): Rename to...
5204 (Default %printer and %destructor for user-defined end token): ...
5205 this.
5206
5207 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5208 computation of whether to apply the default, don't maintain a list of
5209 every Bison-defined symbol. Instead, just check for a first character
5210 of '$', which a user symbol cannot have, and check for the error token.
5211
5212 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5213
5214 Don't apply the default %destructor or %printer to the error token,
5215 $undefined, or $accept. This change fits the general rule that the
5216 default %destructor and %printer are only for user-declared symbols,
5217 and it solves several difficulties that are described in the new test
5218 cases listed below.
5219 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5220 * tests/actions.at (Default %printer and %destructor are not for error
5221 or $undefined, Default %printer and %destructor are not for $accept):
5222 New test cases.
5223
5224 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5225
5226 Allow %start after the first rule.
5227 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5228 when parsing the first rule.
5229 (check_and_convert_grammar): Search for it here after all grammar
5230 declarations have been parsed. Skip midrules, which have dummy LHS
5231 nonterminals.
5232 * src/symtab.c (symbol_is_dummy): New function.
5233 * src/symtab.h (symbol_is_dummy): Declare it.
5234 * tests/input.at (%start after first rule): New test.
5235
5236 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5237
5238 Redo some of the previous commit: add back the ability to use
5239 non-aliased/undeclared string literals since it might be useful to
5240 those declaring %token-table.
5241 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5242 commit: don't worry about complaints from symbols_pack.
5243 * src/symtab.c (symbol_new, symbol_class_set,
5244 symbol_check_alias_consistency): Undo changes in previous commit: count
5245 each string literal as a new symbol and token, assign it a symbol
5246 number, and don't complain about non-aliased string literals.
5247 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5248 and token counts but does still set aliased tokens to the same number,
5249 symbol_pack_processor now leaves empty slots in the symbols array.
5250 Remove those slots.
5251 * tests/regression.at (Undeclared string literal): Remove test case
5252 added in previous commit since non-aliased string literals are allowed
5253 again.
5254 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5255 remove unnecessary string literal declarations.
5256 * tests/sets.at (Firsts): Likewise.
5257
5258 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5259
5260 Don't allow an undeclared string literal, but allow a string literal to
5261 be used before its declaration.
5262 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5263 symbols_pack complained.
5264 * src/symtab.c (symbol_new): Don't count a string literal as a new
5265 symbol.
5266 (symbol_class_set): Don't count a string literal as a new token, and
5267 don't assign it a symbol number since symbol_make_alias does that.
5268 (symbol_make_alias): It's not necessary to decrement the symbol and
5269 token counts anymore. Don't assume that an alias declaration occurs
5270 before any uses of the identifier or string, and thus don't assert that
5271 one of them has the highest symbol number so far.
5272 (symbol_check_alias_consistency): Complain if there's a string literal
5273 that wasn't declared as an alias.
5274 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5275 symbol_pack asserts that every token has been assigned a symbol number
5276 although undeclared string literals have not.
5277 * tests/regression.at (String alias declared after use, Undeclared
5278 string literal): New test cases.
5279 (Characters Escapes, Web2c Actions): Declare string literals as
5280 aliases.
5281 * tests/sets.at (Firsts): Likewise.
5282
5283 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5284
5285 In the grammar scanner, STRING_FINISH unclosed constructs and return
5286 them to the parser in order to improve error messages.
5287 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5288 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5289 * tests/input.at (Unclosed constructs): New test case.
5290 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5291 seen.
5292
5293 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5294 unused global.
5295
5296 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5297
5298 Handle string aliases for character tokens correctly.
5299 * src/symtab.c (symbol_user_token_number_set): If the token has an
5300 alias, check and set its alias's user token number instead of its own,
5301 which is set to indicate the alias. Previously, every occurrence of
5302 the character token in the grammar overwrote that alias indicator with
5303 the character code.
5304 * tests/input.at (String aliases for character tokens): New test.
5305
5306 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5307
5308 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5309
5310 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5311
5312 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5313 to prevent failures when building on older platforms.
5314 Check for autopoint failure.
5315 Set XGETTEXT_OPTIONS to values that check for C format strings,
5316 so that translators are warned about them (this also helps
5317 prevent core dumps).
5318
5319 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5320 function, since it simplifies our code a bit.
5321
5322 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5323 rather than -W, so we don't get bogus warnings about sign comparisons.
5324 Add -Wpointer-arith, since that warning is useful (it reports code
5325 that does not conform to C89 and that some compilers reject).
5326 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5327 since it's no longer needed.
5328
5329 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5330
5331 Clean up scanners a bit.
5332 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5333 definitions so gcc won't warn when obstack_for_string is unused.
5334 * src/scan-code.l: config.h and system.h are already #include'd by
5335 scan-code-c.c, so get rid of them here.
5336 * src/scan-gram.l: Likewise.
5337 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5338 definitions rather than duplicating the rest of it.
5339 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5340
5341 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5342
5343 Suppress signed/unsigned comparison warnings for yycheck.
5344 * data/c.m4 (b4_safest_int_type): New macro.
5345 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5346 a signed int type, cast it to b4_safest_int_type first.
5347 * data/yacc.c: Likewise.
5348 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5349 also overwritten.
5350
5351 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5352
5353 * doc/bison.texinfo: Fix some typos.
5354
5355 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5356
5357 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5358 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5359
5360 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5361 the latest gnulib does this a different way.
5362 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5363 translation was patched, so stop omitting it.
5364
5365 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5366
5367 Enable declaration of default %printer/%destructor. Make the parser
5368 use these for all user-declared grammar symbols for which the user does
5369 not declare a specific %printer/%destructor. Thus, the parser uses it
5370 for token 0 if the user declares it but not if Bison generates it as
5371 $end. Discussed starting at
5372 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5373 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5374 and
5375 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5376 * NEWS (2.3+): Mention.
5377 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5378 declare a %destructor for a mid-rule's semantic value. It's just
5379 impossible to declare one specific to it.
5380 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5381 code. Describe default %destructor form.
5382 * src/parse-gram.y (grammar_declaration): Parse default
5383 %printer/%destructor declarations.
5384 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5385 and symbol_destructor_location_get rather than accessing the destructor
5386 and destructor_location members of struct symbol.
5387 (symbol_printers_output): Likewise but for %printer's.
5388 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5389 again.
5390 * src/symtab.c (default_destructor, default_destructor_location,
5391 default_printer, default_printer_location): New static global
5392 variables to record the default %destructor and %printer.
5393 (symbol_destructor_get, symbol_destructor_location_get,
5394 symbol_printer_get, symbol_printer_location_get): New functions to
5395 compute the appropriate %destructor and %printer for a symbol.
5396 (default_destructor_set, default_printer_set): New functions to set the
5397 default %destructor and %printer.
5398 * src/symtab.h: Prototype all those new functions.
5399 * tests/actions.at (Default %printer and %destructor): New test to
5400 check that the right %printer and %destructor are called, that they're
5401 not called for $end, and that $$ and @$ work correctly.
5402 (Default %printer and %destructor for user-declared end token): New
5403 test to check that the default %printer and %destructor are called for
5404 a user-declared end token.
5405 * tests/input.at (Default %printer and %destructor redeclared, Unused
5406 values with default %destructor): New tests to check related grammar
5407 warnings and errors.
5408
5409 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5410
5411 Clean up handling of %destructor for the end token (token 0).
5412 Discussed starting at
5413 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5414 and
5415 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5416
5417 Make the skeletons consistent in how they pop the end token and invoke
5418 its %destructor.
5419 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5420 state, which has token number 0, since this would invoke the
5421 %destructor for the end token.
5422 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5423 until after shifting the end token, or else it won't be popped.
5424 * data/yacc.c (yyparse): Likewise.
5425
5426 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5427 it's the end token. Upon termination, destroy an unshifted lookahead
5428 even when it's the end token.
5429 * data/lalr1.cc (yy::parser::parse): Likewise.
5430 * data/yacc.c (yyparse): Likewise.
5431
5432 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5433 value warnings for the end token when the user gives the end token a
5434 %destructor.
5435
5436 * tests/actions.at (Printers and Destructors): Test all the above.
5437
5438 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5439
5440 Update to latest gnulib and gettext versions.
5441 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5442 Add fopen-safer.
5443 (gnulib_files): Add m4/warning.m4. Don't worry about files
5444 overwritten by autopoint.
5445 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5446 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5447 rejects them.
5448 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5449 so that we can remove the intl files at a better time.
5450 (intl_files_to_remove): Remove aclocal.m4, since it gets
5451 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5452 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5453 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5454 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5455 Remove datarootdir hack; no longer needed.
5456 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5457 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5458 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5459 strdup.h.
5460 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5461 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5462
5463 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5464
5465 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5466 it with --assume-autoconf='latest-stable'.
5467
5468 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5469
5470 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5471 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5472 YYSTYPE' and `{'.
5473 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5474 those from muscle_tab.c since the old ones are misleading.
5475
5476 2006-07-13 Akim Demaille <akim@epita.fr>
5477
5478 Support %define "KEY" {VALUE}.
5479 * src/scan-code.h, src/scan-code.l (translate_action)
5480 (translate_rule_action, translate_symbol_action, translate_code):
5481 Return char *, not const char *.
5482 * src/parse-gram.y (declaration): Rename as...
5483 (prologue_declaration): this.
5484 (string_content): Remove this nonterminal, use STRING.
5485 (braceless, content, content.opt): New nonterminal.
5486 Use them.
5487 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5488 as value.
5489 * src/scan-gram.l (getargs.h): Don't include it.
5490
5491 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5492
5493 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5494 rather than a for-loop that declares a local bool variable. This
5495 should work around a compatibility problem with a Cray x1e C++
5496 compiler reported by Hung Nguyen in
5497 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5498 The for-loop was introduced in the 2004-11-17 change but I don't
5499 know why it was needed.
5500
5501 2006-07-12 Akim Demaille <akim@epita.fr>
5502
5503 * data/c.m4: Comment changes.
5504
5505 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5506
5507 * src/complain.c (error_message, ERROR_MESSAGE): New.
5508 To factor...
5509 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5510 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5511
5512 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5513
5514 * NEWS: Instead of %union, you can define and use your own union type
5515 YYSTYPE if your grammar contains at least one <type> tag.
5516 Your YYSTYPE need not be a macro; it can be a typedef.
5517 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5518 (Union Decl, Decl Summary): Document this.
5519 * data/glr.c (YYSTYPE): Implement this.
5520 * data/glr.cc (YYSTYPE): Likewise.
5521 * data/lalr1.cc (YYSTYPE): Likewise.
5522 * data/yacc.c (YYSTYPE): Likewise.
5523 * src/output.c (prepare): Output tag_seen_flag.
5524 * src/parse-gram.y (declaration, grammar_declaration):
5525 Use 'union_seen' rather than 'typed' to determine whether
5526 %union has been seen, since grammars can now be typed without
5527 %union.
5528 (symbol_declaration, type.opt, symbol_def):
5529 Keep track of whether a tag has been seen.
5530 * src/reader.c (union_seen, tag_seen): New vars.
5531 (typed): remove.
5532 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5533 * src/scan-code.l (untyped_var_seen): New variable.
5534 (handle_action_dollar): Adjust to above changes.
5535 (handle_action_dollar, handle_action_at):
5536 Improve overflow checking for outlandish numbers.
5537 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5538 avoid new diagnostics generated by above changes.
5539 * tests/regression.at (YYSTYPE typedef): Add test to check
5540 for type tags without %union.
5541
5542 * src/symlist.c (symbol_list_length): Return int, not unsigned
5543 int, since callers expect int. This may need to get revisited
5544 once we have proper integer overflow checking.
5545
5546 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5547 object is now static.
5548
5549 * src/getargs.c (flags_argmatch): Return void, not int,
5550 to pacify ./configure --enable-gcc-warnings.
5551
5552 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5553 since last_string is already defined to FLEX_PREFIX (last_string).
5554
5555 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5556
5557 Implement --warnings/-W.
5558 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5559 replaced by...
5560 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5561 Adjust callers.
5562 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5563 (warnings_args, warnings_types): New.
5564 (getargs, short_options, long_options): Accept -W/--warnings.
5565 Sort the options by alphabetical order, upper case letter right
5566 before its lower case.
5567
5568 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5569
5570 Change %merge result type clash warnings to errors. Discussed at
5571 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5572 * src/reader.c (record_merge_function_type): Use complain_at.
5573 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5574 declared later): Update test case results.
5575
5576 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5577
5578 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5579 to be in alphabetical order.
5580 (trace_args): Spelling fixes.
5581
5582 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5583
5584 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5585 so they don't collide with user-defined macros.
5586 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5587 this was never guaranteed, and now that we're using gnulib stdint,
5588 which defines int_fast16_t to long int, the problem is exposed.
5589
5590 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5591
5592 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5593 need the full POSIX semantics (and weren't implementing them
5594 anyway).
5595
5596 Adjust to Autoconf 2.60 and today's gnulib.
5597 * bootstrap (gnulib_modules): Add stdint.
5598 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5599 no longer copies it.
5600 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5601 since stdint needs the former and wcwidth (which is now required
5602 by mbswidth) needs the latter.
5603 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5604 work around a compatibility glitch between gettext 0.14.6 and
5605 Autoconf 2.60.
5606 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5607 Do not check for uintptr_t, since new stdint module does the right
5608 thing.
5609 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5610 Add stdint.h, stdint_.h, wcwidth.h.
5611 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5612 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5613 stdint.m4, wchar_t.m4, wcwidth.m4.
5614 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5615 usual order for ../lib/*.h files.
5616 (file_name_split): Use last_component, not base_name, to adjust
5617 to gnulib changes.
5618 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5619 for ../lib/*.h files.
5620 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5621 Define unconditionally, since we now assume the stdint module.
5622 * src/scan-skel.l: Include <dirname.h>.
5623 (BASE_QPUTS): Use last_component, not base_name.
5624 * src/system.h: Include <unlocked-io.h> in the usual order
5625 for ../lib/*.h files. Include <stdint.h> unconditionally,
5626 since we now use the stdint module.
5627 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5628 HAVE_UINTPTR_T, since we now use the stdint module.
5629 (base_name): Remove decl, since files now include <dirname.h>
5630 to get the decl.
5631
5632 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5633
5634 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5635 New, default to 1.
5636 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5637 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5638 default.
5639 * tests/calc.at: Adjust.
5640
5641 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5642
5643 * data/c.m4 (b4_basename): New.
5644 (b4_syncline): Also output the location of its invocation (from
5645 the skeleton).
5646 (b4_user_action, b4_define_user_action, b4_user_actions)
5647 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5648 (b4_user_stype): New.
5649 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5650
5651 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5652
5653 In the grammar file, the first column is 1 not 0 on the first line as
5654 on every other line.
5655 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5656 * tests/input.at (Torturing the Scanner): Update output.
5657
5658 * src/scan-gram.l (scanner_cursor): Declare it static.
5659
5660 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5661
5662 In warnings, say "previous declaration" rather than "first
5663 declaration".
5664 * src/symtab.c (redeclaration): Do that here.
5665 * src/reader.c (record_merge_function_type): In the case of a result
5666 type clash, report the previous declaration rather than the very first
5667 one in the grammar file.
5668 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5669 declared later): Add a third declaration to check this behavior.
5670 * tests/input.at (Incompatible Aliases): Update output.
5671
5672 2006-06-27 Akim Demaille <akim@epita.fr>
5673
5674 * doc/Doxyfile.in: New.
5675 * doc/Makefile.am: Use it.
5676 * src/lalr.h, src/symtab.h: Initial doxygenation.
5677
5678 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5679
5680 Don't miss %merge result type warnings just because the LHS types are
5681 declared after the %merge. This continues the effort of the previous
5682 patch.
5683 * src/reader.c (get_merge_function): Don't set the merger type yet.
5684 (record_merge_function_type): New function for setting the merger type
5685 and checking for clashes.
5686 (grammar_current_rule_merge_set): Set the location of the %merge for
5687 the current rule.
5688 (packgram): Invoke record_merge_function_type for each rule now that
5689 all symbol type declarations have been parsed.
5690 * src/reader.h (merger_list.type_declaration_location): New member
5691 storing the location of the first %merge from which the type for this
5692 merging function was derived.
5693 * src/symlist.h (symbol_list.merger_declaration_location): New member
5694 storing the location of a rule's %merge, if any.
5695 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5696 declared later): New test to catch the error fixed by the above patch.
5697
5698 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5699
5700 Get action warnings (grammar_rule_check) right even when symbol
5701 declarations appear after the rules. Discussed at
5702 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5703 and
5704 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5705 Don't mistake the type of $$ in a midrule to be that of its parent
5706 rule's $$.
5707 * src/reader.c (grammar_current_rule_end): Don't invoke
5708 grammar_rule_check yet since not all symbol declarations may have been
5709 parsed yet.
5710 (grammar_midrule_action): Likewise.
5711 Don't record whether the midrule's $$ has been used yet since actions
5712 haven't been translated yet.
5713 Record the midrule's parent rule and its RHS index within the parent
5714 rule.
5715 (grammar_current_rule_action_append): Don't translate the action yet
5716 since not all symbol declarations may have been parsed yet and, thus,
5717 warnings about types for $$, $n, @$, and @n can't be reported yet.
5718 (packgram): Translate the action and invoke grammar_rule_check now that
5719 all symbol declarations have been parsed.
5720 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5721 after parsing the entire grammar file, the symbol list here in the case
5722 of a midrule is actually the midrule's empty RHS, so reference its
5723 parent rule's RHS where necessary.
5724 On the other hand, now that you can already know it's a midrule, you
5725 aren't forced to think $$ has the same type as its parent rule's $$.
5726 (handle_action_at): In the case of a midrule, reference the parent rule
5727 where necessary.
5728 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5729 members.
5730 (symbol_list_length): Now that this is invoked after all rules have
5731 been parsed, a NULL symbol (rather than a NULL symbol list node)
5732 terminates a rule. symbol_list_print already does this correctly.
5733 * src/symlist.h (symbol_list.midrule_parent_rule,
5734 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5735 remember their relationships with their parents.
5736 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5737 fixed by the above patch.
5738 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5739 implementing...
5740 (Unused values): ... this old test case and...
5741 (Unused values before symbol declarations): ... this new test case.
5742 This one is the same as `Unused values' except that all symbol
5743 declarations appear after the rules in order to catch the rest of the
5744 errors fixed by the above patch.
5745
5746 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5747
5748 More cleanup.
5749 * src/reader.c (current_rule): Declare it static since it's no longer
5750 used outside this file.
5751 (grammar_current_rule_action_append): Remove redundant arguments from
5752 translate_rule_action invocation.
5753 * src/reader.h (current_rule): Remove this unused extern.
5754 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5755 * src/scan-code.l (translate_rule_action): Likewise.
5756
5757 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5758
5759 Clean up yesterday's patch.
5760 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5761 to...
5762 * src/reader.c (grammar_current_rule_action_append): ... here for
5763 consistency with grammar_current_rule_symbol_append.
5764 * tests/regression.at (Braced code in declaration in rules section):
5765 Make yyerror and yylex static as usual.
5766
5767 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5768
5769 Fix bug that mistakes braced code in a declaration in the rules section
5770 to be a rule action. Mentioned at
5771 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5772 * src/scan-gram.l: Move midrule action detection from the start of the
5773 scanning of any braced code to...
5774 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5775 action. For readability, use $2 and @2 rather than the equivalent
5776 global variables.
5777 * tests/regression.at (Braced code in declaration in rules section):
5778 New test to catch the error fixed by the above patch.
5779
5780 Work on code readability some.
5781 * src/scan-code.l (current_rule): Get rid of this misleading and
5782 redundant declaration: it's actually extern'ed in reader.h.
5783 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5784 translate_action): Add a rule argument and use it instead of the global
5785 current_rule.
5786 (translate_rule_action): This already receives current_rule through an
5787 argument, so pass it on to translate_action instead of assigning
5788 current_rule to current_rule.
5789 (translate_symbol_action, translate_code): Pass rule = NULL to
5790 translate_action.
5791
5792 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5793
5794 Rename %before-definitions to %start-header and %after-definitions to
5795 %end-header. Don't use these declarations to separate pre-prologue
5796 blocks from post-prologue blocks. Add new order-independent
5797 declarations %before-header and %after-header as alternatives to the
5798 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5799 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5800 * NEWS (2.3+): Update for these changes.
5801 * data/glr.c (b4_before_definitions): Update to...
5802 (b4_start_header): ... this.
5803 (b4_after_definitions): Update to...
5804 (b4_end_header): ... this.
5805 * data/glr.cc: Likewise.
5806 * data/lalr1.cc: Likewise.
5807 * data/yacc.c: Likewise.
5808 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5809 prologue blocks with %*-header declarations.
5810 (Calc++ Parser): Likewise.
5811 (Decl Summary): Update names.
5812 (Table of Symbols): Update description.
5813 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5814 (PERCENT_END_HEADER): ... this.
5815 (PERCENT_BEFORE_DEFINITIONS): Update to...
5816 (PERCENT_START_HEADER): ... this.
5817 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5818 (declaration): Update token names and m4 macro names.
5819 When parsing %end-header and %start-header, invoke translate_code
5820 before muscle_code_grow, and no longer set global booleans to remember
5821 whether these declarations have been seen.
5822 Parse new %after-header and %before-header.
5823 * src/reader.c (before_definitions, after_definitions): Remove.
5824 (prologue_augment): Accept a new bool argument to specify whether to
5825 augment the pre-prologue or post-prologue.
5826 * src/reader.h (before_definitions, after_definitions): Remove these
5827 extern's.
5828 (prologue_augment): Add new bool argument.
5829 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5830 (PERCENT_END_HEADER): ... this.
5831 (PERCENT_BEFORE_DEFINITIONS): Update to...
5832 (PERCENT_START_HEADER): ... this.
5833 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5834 * tests/actions.at (Printers and Destructors): Update names.
5835
5836 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5837
5838 Add comparison operators for C++ location classes. Discussed at
5839 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5840 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5841 declaration indicating whether filename_type has an operator==. If
5842 filename_type is `std::string', it defaults to `1', `0' otherwise.
5843 * data/location.cc: Iff b4_define_location_comparison is `1', add
5844 operator== and operator!= for class position and for class location.
5845
5846 Some minor fixes.
5847 * src/scan-action.l: Remove unused file.
5848 * src/symtab.c (symbol_printer_set): Use printer_location not
5849 destructor_location.
5850 * src/symtab.h (struct symbol): Replace incorrect source comment for
5851 printer members.
5852 * tests/input.at (Incompatible Aliases): Update output with correct
5853 printer location.
5854
5855 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5856
5857 Don't put the pre-prologue in the header file. For the yacc.c code
5858 file and the glr.c header and code files, move the pre-prologue before
5859 the token definitions. Add new %before-definitions and
5860 %after-definitions to declare code that will go in both the header file
5861 and code file. Discussed at
5862 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5863 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5864 and
5865 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5866 * NEWS (2.3+): Describe these changes.
5867 * data/glr.c (b4_pre_prologue): Move from within to before...
5868 (b4_shared_declarations): ... this.
5869 Add new b4_before_definitions before b4_token_enums.
5870 Add new b4_after_definitions at the end.
5871 * data/glr.cc (b4_pre_prologue): Replace with...
5872 (b4_before_definitions): ... this in the header file.
5873 (b4_after_definitions): New near the end of the header file.
5874 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5875 code file right before including the header file.
5876 (b4_before_definitions): New in the previous position of
5877 b4_pre_prologue in the header file.
5878 (b4_after_definitions): New near the end of the header file.
5879 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5880 (b4_token_enums_defines): In the code file, move to right before
5881 YYSTYPE for consistency with the header file.
5882 (b4_before_definitions): New right before b4_token_enums_defines in
5883 both the header and code file.
5884 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5885 header and code file.
5886 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5887 of prologues for %union dependencies.
5888 (Decl Summary): In %defines description, mention the effect of
5889 %before-definitions and %after-definitions on the header file.
5890 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5891 than in the pre-prologue so that make check succeeds.
5892 (Table of Symbols): Add entries for %before-definitions and
5893 %after-definitions.
5894 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5895 %before-definitions.
5896 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5897 (declaration): Parse those declarations and append to
5898 b4_before_definitions and b4_after_definitions, respectively.
5899 * src/reader.c (before_definitions, after_definitions): New bools to
5900 track whether those declarations have been seen.
5901 (prologue_augment): Add to the post-prologue if %union,
5902 %before-definitions, or %after-definitions has been seen.
5903 * src/reader.h (before_definitions, after_definitions): New extern's.
5904 * src/scan-gram.l: Scan the new declarations.
5905 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5906 prologue block in a %before-definitions or a %after-definitions based
5907 on whether the %union is declared.
5908 * tests/regression.at (Early token definitions with --yacc, Early token
5909 definitions without --yacc): Move tests for token definitions into the
5910 post-prologue since token names are no longer defined in the
5911 pre-prologue.
5912
5913 2006-06-20 Akim Demaille <akim@epita.fr>
5914
5915 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5916 (symbol_get): Use it.
5917 * src/parse-gram.y: Use it.
5918
5919 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5920
5921 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5922 build succeeds when configured with --enable-gcc-warnings.
5923
5924 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5925
5926 * src/parse-gram.y (char_name): New function.
5927 (CHAR, STRING, string_content): For %printer, properly escape.
5928 (ID): Prefer fputs to fprintf.
5929 (id): Reindent to be consistent with other rules.
5930 Properly quote char.
5931
5932 The Translation Project changed its way of publishing translations
5933 to maintainers. I haven't received any responses to my request
5934 for supporting the old way, or for documenting the new way. I
5935 have modified 'bootstrap' to use screen scraping
5936 (in this case, HTML scraping). This is unreliable and inelegant,
5937 but I don't see any better way. Yuck.
5938 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5939 (get_translations): New function, which uses HTML scraping to
5940 deduce locations of latest translations.
5941 Use this function to grab both bison and bison-runtime .po files.
5942 Don't bother priming the pump for the runtime-po domain any more,
5943 as it's now translated better than bison is.
5944
5945 2006-06-19 Akim Demaille <akim@epita.fr>
5946
5947 * src/scan-gram.l: No longer "parse" things after `%union' until
5948 `{'. Rather, return a single "%union" token.
5949 No longer make symbols: return strings, and leave the conversion
5950 to symbols to the parser.
5951 (SC_PRE_CODE, token_type): Remove.
5952 * src/parse-gram.y (%union): New field `character'.
5953 Sort tokens.
5954 (CHAR): New token.
5955 (ID, ID_COLON): Now that the scanner no longer makes them
5956 identifiers, adjust all uses to invoke symbol_get.
5957 (id_colon): New, wraps the conversion from string to symbol.
5958 (%union): Accept a possible union_name.
5959 (symbol): Now can be a char.
5960 * data/c.m4 (b4_union_name): Leave a default value.
5961 * data/glr.c, data/yacc.c: Use it.
5962
5963 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5964
5965 For associating token numbers with token names for "yacc.c", don't use
5966 #define statements unless `--yacc' is specified; always use enum
5967 yytokentype. Most important discussions start at:
5968 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5969 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5970 and
5971 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5972 * NEWS (2.3+): Mention.
5973 * data/c.m4 (b4_yacc_if): New.
5974 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5975 token #define's.
5976 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5977 on token name definitions.
5978 * src/getargs.c (usage): Capitalize `Yacc' in English.
5979 * src/output.c (prepare): Define b4_yacc_flag.
5980 * tests/regression.at (Early token definitions): Test that tokens names
5981 are defined before the pre-prologue not just before the post-prologue.
5982 Remove this test case and copy to...
5983 (Early token definitions with --yacc): ... this to test #define's.
5984 (Early token definitions without --yacc): ... and this to test enums.
5985
5986 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5987
5988 * NEWS: Reword the post-2.3 change to not be so optimistic about
5989 removing the old "look-ahead" spelling.
5990 Update previous look-ahead/lookahead change reports.
5991 * REFERENCES: look-ahead -> lookahead (since that's
5992 what he actually wrote).
5993 * doc/refcard.tex: look ahead -> lookahead,
5994 look-ahead -> lookahead
5995
5996 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5997
5998 For consistency, use `lookahead' instead of `look-ahead' or
5999 `look_ahead'. Discussed starting at
6000 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6001 and then at
6002 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6003 * NEWS: For the next release, note the change to `--report'.
6004 * TODO, doc/bison.1: Update English.
6005 * doc/bison.texinfo: Update English.
6006 (Understanding Your Parser, Bison Options): Document as
6007 `--report=lookahead' rather than `--report=look-ahead'.
6008 * src/conflicts.c: Update English in comments.
6009 (lookahead_set): Rename from look_ahead_set.
6010 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6011 (resolve_sr_conflict): Rename local look_ahead_tokens to
6012 lookahead_tokens, and update other uses.
6013 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6014 count_rr_conflicts, conflicts_free): Update uses.
6015 * src/getargs.c (report_args): Move "lookahead" before alternate
6016 spellings.
6017 (report_types): Update uses.
6018 (usage): For `--report' usage description, state `lookahead' spelling
6019 rather than `look-ahead'.
6020 * src/getargs.h (report.report_lookahead_tokens): Rename from
6021 report_look_ahead_tokens.
6022 * src/lalr.c: Update English in comments.
6023 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6024 (state_lookahead_tokens_count): Rename from
6025 state_look_ahead_tokens_count.
6026 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6027 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6028 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6029 Update other uses.
6030 Update English in output.
6031 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6032 * src/print.c: Update English in comments.
6033 (lookahead_set): Rename from look_ahead_set.
6034 (print_reduction): Rename argument lookahead_token from
6035 look_ahead_token.
6036 (print_core, state_default_rule, print_reductions, print_results):
6037 Update uses.
6038 * src/print_graph.c: Update English in comments.
6039 (print_core): Update uses.
6040 * src/state.c: Update English in comments.
6041 (reductions_new): Update uses.
6042 (state_rule_lookahead_tokens_print): Rename from
6043 state_rule_look_ahead_tokens_print, and update other uses.
6044 * src/state.h: Update English in comments.
6045 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6046 (state_rule_lookahead_tokens_print): Rename from
6047 state_rule_look_ahead_tokens_print.
6048 * src/tables.c: Update English in comments.
6049 (conflict_row, action_row): Update uses.
6050 * tests/glr-regression.at
6051 (Incorrect lookahead during deterministic GLR,
6052 Incorrect lookahead during nondeterministic GLR): Rename
6053 print_look_ahead to print_lookahead.
6054 * tests/torture.at: Update English in comments.
6055 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6056 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6057 (Many lookahead tokens): Update uses.
6058 * data/glr.c: Update English in comments.
6059 * lalr1.cc: Likewise.
6060 * yacc.c: Likewise.
6061 * src/conflicts.h: Likewise.
6062 * src/lalr.h: Likewise.
6063 * src/main.c: Likewise.
6064 * src/output.c: Likewise.
6065 * src/parse-gram.c: Likewise.
6066 * src/tables.h: Likewise.
6067 * tests/calc.at: Likewise.
6068
6069 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6070
6071 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6072
6073 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6074
6075 * TODO: Add request from Nelson H. F. Beebe to be able to install
6076 Bison without installing the yacc script.
6077
6078 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6079
6080 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6081 and yytext if they're already #define'd.
6082 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6083 * src/scan-code-c.c: ... here.
6084 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6085 <config.h>.
6086
6087 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6088
6089 Get Bison to build again when configured with --enable-gcc-warnings.
6090 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6091 missing #include's.
6092 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6093 loc argument as it shadows a global.
6094 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6095 invocation.
6096
6097 * src/.cvsignore: Add scan-code.c.
6098
6099 2006-06-07 Akim Demaille <akim@epita.fr>
6100
6101 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6102 to...
6103 * src/scan-code.l: here.
6104 * tests/input.at (Torturing the Scanner): Fix another location
6105 error.
6106
6107 2006-06-07 Akim Demaille <akim@epita.fr>
6108
6109 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6110
6111 2006-06-06 Akim Demaille <akim@epita.fr>
6112
6113 Extract the parsing of user actions from the grammar scanner.
6114 As a consequence, the relation between the grammar scanner and
6115 parser is much simpler. We can also split "composite tokens" back
6116 into simple tokens.
6117 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6118 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6119 rename as...
6120 * src/location.h, src/location.c (add_column_width)
6121 (location_compute): these.
6122 Fix the column count: the initial column is 0.
6123 (location_print): Be robust to ending column being 0.
6124 * src/location.h (boundary_set): New.
6125 * src/main.c: Adjust to scanner_free being renamed as
6126 gram_scanner_free.
6127 * src/output.c: Include scan-code.h.
6128 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6129 Use boundary_set.
6130 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6131 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6132 which is now, again, a separate token.
6133 Adjust all dependencies.
6134 Whereever actions with $ and @ are used, use translate_code.
6135 (action): Remove this nonterminal which is now useless.
6136 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6137 (grammar_current_rule_action_append): Use translate_code.
6138 (packgram): Bound check ruleno, itemno, and rule_length.
6139 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6140 (last_string, last_braced_code_loc, max_left_semantic_context)
6141 (scanner_initialize, scanner_free, scanner_last_string_free)
6142 (gram_out, gram_lineno, YY_DECL_): Move to...
6143 * src/scan-gram.h: this new file.
6144 (YY_DECL): Rename as...
6145 (GRAM_DECL): this.
6146 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6147 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6148 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6149 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6150 Move these declarations, and...
6151 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6152 these to...
6153 * src/flex-scanner.h: this new file.
6154 * src/scan-gram.l (rule_length, rule_length_overflow)
6155 (increment_rule_length): Remove.
6156 (last_braced_code_loc): Rename as...
6157 (gram_last_braced_code_loc): this.
6158 Adjust to the changes of the parser.
6159 Move all the handling of $ and @ into...
6160 * src/scan-code.l: here.
6161 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6162 (handle_action_dollar, handle_action_at): Move to...
6163 * src/scan-code.l: here.
6164 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6165 scan-code.h, scan-code-c.c, scan-gram.h.
6166 (EXTRA_bison_SOURCES): Add scan-code.l.
6167 (BUILT_SOURCES): Add scan-code.c.
6168 (yacc): Be robust to white spaces.
6169
6170 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6171 * tests/regression.at: Adjust the column numbers.
6172 * tests/regression.at: Adjust the error message.
6173
6174 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6175
6176 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6177 Use Akim's wording from
6178 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6179
6180 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6181
6182 Between Bison releases, manually append `+' to the previous Bison
6183 release number, and use that as a signal to automatically print the
6184 ChangeLog's CVS Id keyword from --version. Discussed starting at
6185 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6186 * ChangeLog: Add Id header.
6187 * configure.ac (AC_INIT): Append `+' to `2.3'.
6188 * src/.cvsignore: Add revision.c.
6189 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6190 (BUILT_SOURCES): Add revision.c.
6191 (revision.c): New target rule. This file defines a new global variable
6192 named revision. It initializes it with either the Id from ChangeLog
6193 or, if VERSION doesn't contain `+', with the empty string.
6194 * src/getargs.c (version): Print the value of revision.
6195 * src/revision.h: Extern revision.
6196
6197 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6198
6199 * NEWS: Version 2.3.
6200 * configure.ac (AC_INIT): Likewise.
6201
6202 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6203
6204 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6205 with no arguments, not as an object-like macro. This is for
6206 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6207 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6208 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6209 Document this.
6210
6211 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6212
6213 * src/getargs.c (usage): Back out yesterday's modification of the
6214 --help output so that we don't have to wait for translation before
6215 releasing 2.3.
6216
6217 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6218
6219 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6220 Problem reported by Akim Demaille.
6221
6222 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6223
6224 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6225
6226 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6227
6228 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6229 generated source code. Problem reported by Frans Englich in
6230 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6231
6232 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6233
6234 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6235 shell, not within 'make', so that 'make' by an ordinary builder
6236 (using GNU make) does not worry about configuring gzip. This also
6237 works around a bug reported independently by Keith Thompson and by
6238 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6239 stderr rather than stdout, messing up the build logs.
6240
6241 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6242
6243 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6244 to make sure that YYID will never be unused. This fixes a 'make
6245 maintainer-check' failure caused by the recent changes to the 'Trivial
6246 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6247 not used.
6248 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6249
6250 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6251
6252 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6253 state before an empty RHS is always resolved here. Only the location
6254 of that state is guaranteed to be resolved, and that's enough. This
6255 fixes the remaining bug reported by Derek M. Jones in
6256 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6257 * tests/glr-regression.at (Uninitialized location when reporting
6258 ambiguity): Test the above case.
6259 Also, the embedded comments in this test case claim it checks the case
6260 of an empty RHS that has inherited the initial location. However, the
6261 corresponding LHS was already resolved, so yyresolveLocations didn't
6262 actually have reason to modify it. Fix this by forcing
6263 nondeterministic operation at the beginning of the parse.
6264
6265 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6266
6267 * data/c.m4 (b4_yy_symbol_print_generate):
6268 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6269 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6270 of the bugs reported today by Derek M Jones in
6271 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6272 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6273 defined to be a type name without parens or brackets.
6274 (Location Type): Similarly for YYLTYPE.
6275 * tests/regression.at (Trivial grammars): Put in a test for this
6276 bug that will be caught by 'make maintainer-check' (though not,
6277 alas, by 'make check' unless your compiler is picky).
6278
6279 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6280
6281 * NEWS: Version 2.2.
6282 * configure.ac (AC_INIT): Likewise.
6283
6284 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6285
6286 * data/glr.c (yyreportTree): Make room in yystates for the state
6287 preceding the RHS. This fixes the segmentation fault reported by Derek
6288 M. Jones in
6289 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6290 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6291 to the user. Reported for yyreportTree by Derek M. Jones later in the
6292 same thread.
6293 * THANKS: Add Derek M. Jones.
6294 Update my email address.
6295 Fix typo in Steve Murphy's name.
6296
6297 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6298
6299 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6300 checking against YYLAST that caused the parser to miss a potential
6301 alternative in its diagnostic.
6302 Problem reported by Maria Jose Moron Fernandez in
6303 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6304 * data/lalr1.cc (yysyntax_error_): Likewise.
6305 * data/yacc.c (yysyntax_error): Likewise.
6306 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6307 tokens, in case we run into an older C compiler.
6308 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6309 Use them to check for the off-by-one error fixed above.
6310
6311 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6312 YYSIZE_T, not size_t.
6313 * tests/regression.at (Trivial grammars): New test, to catch
6314 the error fixed by the above patch.
6315
6316 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6317
6318 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6319 scheme.
6320 Reported by Steve Murphy.
6321
6322 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6323
6324 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6325 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6326
6327 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6328
6329 Implement --trace=m4.
6330 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6331 * src/output.c (output_skeleton): When set, pass -dV to m4.
6332
6333 Factor the handling of flags in m4.
6334 * src/output.c (prepare): Rename the muscle names debug, defines,
6335 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6336 * data/c.m4: Adjust.
6337 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6338 Use b4_define_flag_if to define other b4_FLAG_if macros.
6339 (b4_location_if): As a consequence, rename as...
6340 (b4_locations_if): this, for consistency.
6341 Adjust all the skeletons.
6342
6343 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6344
6345 * etc/bench.pm: Shorten bench names.
6346
6347 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6348
6349 * src/output.h, src/output.c (error_verbose): Move to...
6350 * src/getargs.h, src/getargs.c: here.
6351 Sort the flags.
6352 Adjust dependencies.
6353
6354 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6355
6356 * data/c.m4 (b4_copyright): Put the special exception for Bison
6357 skeletons here, so we don't have to put it in each skeleton. All
6358 uses changed. Suggested by Akim Demaille. Also, wrap the
6359 copyright notice, in case it is longer than 80 columns. Replace
6360 comma by newline after title.
6361
6362 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6363
6364 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6365 incompatibility, not a bug. Mention that it wasn't fixed as of
6366 flex 2.5.33.
6367
6368 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6369
6370 * examples/extexi: Enforce the precedence of concatenation over
6371 >>.
6372 Reported by Tommy Nordgren.
6373
6374 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6375
6376 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6377 with the member "token".
6378 Reported by Martin Nylin.
6379
6380 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6381
6382 * data/glr.c: Switch to Bison 2.2 special-exception language in
6383 the copyright notice. Use more-regular format for titles and
6384 copyright notices.
6385 * data/glr.cc: Likewise.
6386 * data/location.cc: Likewise.
6387 * data/yacc.cc: Likewise.
6388 * doc/bison.texinfo (Conditions): Document this.
6389 * NEWS: likewise. Upgrade version to 2.2.
6390
6391 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6392
6393 * data/glr.cc: Remove dead code.
6394
6395 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6396
6397 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6398 that variable and the line breaks the bootstrap. Problem reported
6399 by Juan M. Guerrero.
6400
6401 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6402
6403 * doc/bison.texinfo (Multiple start-symbols): New.
6404
6405 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6406
6407 * etc/README, etc/bench.pl: New.
6408
6409 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6410
6411 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6412 rule.
6413 Reported by Mickael Labau.
6414 * tests/input.at (Torturing the Scanner): Test it.
6415
6416 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6417
6418 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6419 Problem reported by Bob Rossi.
6420
6421 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6422
6423 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6424 and didn't really work.
6425 For the index, use @ifnotinfo, not @iftex.
6426 Minor cleanups of spacing and terminology.
6427
6428 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6429
6430 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6431 of AT_NAME_PREFIX when %name-prefix is not used.
6432
6433 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6434
6435 Apply --prefix to C++ skeletons too: they change the namespace.
6436 The test suite already exercize these cases.
6437 * data/c++.m4 (b4_namespace): New.
6438 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6439 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6440 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6441 * doc/bison.texinfo: Document it.
6442 (Option Cross Key): Use @multitable in all formats. It looks
6443 nicer, even in TeX outputs.
6444 (Rules): Use the same code whatever the output type is.
6445 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6446 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6447 * tests/calc.at: Use it, instead of hard coding `yy'.
6448
6449 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6450
6451 * TODO: Remove dead items.
6452
6453 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6454
6455 * doc/FAQ: Remove, merged into...
6456 * doc/bison.texinfo (FAQ): this.
6457 * doc/Makefile.am (EXTRA_DIST): Adjust.
6458
6459 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6460
6461 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6462 even if empty.
6463 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6464 * doc/bison.texinfo (Calc++ Scanner): Use it.
6465
6466 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6467
6468 Fix two nits reported by twlevo, plus one more that I discovered.
6469
6470 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6471 this is the usual Bison style.
6472 * src/location.h (location_print): Likewise.
6473
6474 * src/reader.h (token_name): Likewise.
6475
6476 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6477
6478 Fix some nits reported by twlevo.
6479 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6480 and "POSIX". Use more-modern syntax for URLs. Mention C++
6481 and ask for Java. Don't hardwire OS version numbers. Add
6482 copyright notice.
6483 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6484 * src/conflicts.c (solved_conflicts_obstack): Now static.
6485
6486 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6487
6488 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6489 page. Say "you can use it" not "you may use it" as on the web page;
6490 we're describing capabilities not granting permission.
6491
6492 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6493
6494 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6495 shadowing warnings. Use usual patter for iterating through RHS.
6496 * tests/glr-regression.at
6497 (Uninitialized location when reporting ambiguity):
6498 Modify yylex so that it uses its argument, rather than trying
6499 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6500 const char -> char const.
6501
6502 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6503 Don't use tabs inside commands; it messes up 'ps'.
6504 Problem reported by twlevo.
6505
6506 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6507
6508 * tests/glr-regression.at (Uninitialized location when reporting
6509 ambiguity): New test case.
6510 * data/glr.c (yyresolveLocations): New function, which uses
6511 YYLLOC_DEFAULT.
6512 (yyresolveValue): Invoke yyresolveLocations before reporting an
6513 ambiguity.
6514 * doc/bison.texinfo (Default Action for Locations): Note
6515 YYLLOC_DEFAULT's usage for ambiguity locations.
6516 (GLR Semantic Actions): Cross-reference those notes.
6517
6518 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6519
6520 * tests/glr-regression.at (Leaked semantic values when reporting
6521 ambiguity): Remove unnecessary union and type declarations.
6522 (Leaked lookahead after nondeterministic parse syntax error): New test
6523 case.
6524 * data/glr.c (yyparse): Check for zero stacks remaining before
6525 attempting to shift the lookahead so that you don't lose it.
6526
6527 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6528
6529 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6530 * tests/glr-regression.at (Leaked semantic values when reporting
6531 ambiguity): New test case.
6532 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6533 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6534 now unnecessary yystackp parameter.
6535 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6536 destructors can be called.
6537
6538 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6539 in existing testcases.
6540
6541 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6542
6543 Don't leak semantic values for parent RHS when a user action cuts the
6544 parser, and clean up related code a bit.
6545 * tests/glr-regression.at (Leaked merged semantic value if user action
6546 cuts parse): Rename to...
6547 (Leaked semantic values if user action cuts parse): ... this. Add check
6548 for leaked parent RHS values.
6549 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6550 between an unresolved state (non-empty chain of semantic options) and
6551 an incomplete one (signaled by an empty chain).
6552 (yyresolveStates): Document the interface. Move all manipulation of a
6553 successfully or unsuccessfully resolved yyGLRState to...
6554 (yyresolveValue): ... here so that yyresolveValue always leaves a
6555 yyGLRState with consistent data and thus is easier to understand.
6556 Remove the yyvalp and yylocp parameters since they are always just
6557 taken from the yys parameter. When reporting a discarded merged value
6558 in debugging output, note that it is incompletely merged. Document the
6559 interface.
6560 (yyresolveAction): If resolving any of the RHS states fails, destroy
6561 them all rather than leaking them. Thus, as long as user actions are
6562 written to clean up the RHS correctly, yyresolveAction always cleans up
6563 the RHS of a semantic option. Document the interface.
6564
6565 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6566
6567 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6568 led to a segmentation fault in GNU Pascal. Problem reported
6569 by Waldek Hebisch.
6570
6571 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6572
6573 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6574 mid-rule action inside a nonterminal symbol in order to declare a
6575 destructor for its semantic value.
6576
6577 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6578
6579 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6580 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6581 __cplusplus && ! defined _STDLIB_H && !
6582 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6583 defined free))]: Include <stdlib.h> rather than rolling our own
6584 declarations of malloc and free, to avoid problems with
6585 incompatible declarations (using 'throw') C++'s stdlib.h. This
6586 should fix Debian bug 340012
6587 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6588 reported by Guillaume Melquiond.
6589
6590 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6591
6592 * NEWS: Clarify symbols versus types in unused-value warnings.
6593
6594 * configure.ac (AC_INIT): Bump version number.
6595
6596 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6597
6598 * NEWS: Version 2.1a.
6599 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6600 since C99 requires this.
6601
6602 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6603
6604 * m4/c-working.m4: New file.
6605 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6606
6607 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6608
6609 * Makefile.maint: Merge from coreutils.
6610
6611 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6612
6613 More portability fixes for problems summarized by Nelson H. F. Beebe.
6614
6615 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6616 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6617 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6618 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6619 messes up because C++ code is compiled in 32-bit mode but linked
6620 in 64-bit mode.
6621
6622 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6623
6624 More portability fixes for problems summarized by Nelson H. F. Beebe.
6625
6626 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6627 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6628
6629 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6630 nodist_PROGRAMS, since we don't need to actually compile the
6631 example if we're just doing a plain 'make'. This avoids bothering
6632 the installer unnecessarily about problems due to weird C++
6633 compilers.
6634
6635 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6636
6637 More portability fixes for problems summarized by Nelson H. F. Beebe.
6638
6639 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6640 than #include "...", and compile with -I'.'. The old method was
6641 not portable, according to Posix and the C standard, and it does
6642 not work with Sun C 5.7, where previous #line directives affect
6643 the working directory used in later #include "..." directives.
6644
6645 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6646
6647 Various DJGGP specific issues in /djgpp
6648
6649 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6650
6651 More portability fixes for problems summarized by Nelson H. F. Beebe.
6652
6653 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6654 '#include <map>' works and that you can apply ++ to iterators.
6655
6656 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6657
6658 Work around portability problems summarized by Nelson H. F. Beebe in
6659 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6660
6661 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6662 that '#include <string>' works.
6663
6664 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6665 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6666 "warning: sorry: semantics of inline function static data `const
6667 unsigned char translate_table[262]' are wrong (you'll wind up with
6668 multiple copies)".
6669
6670 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6671 or, xor to not_, and_, or_, and xor_, respectively. This works
6672 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6673 random system header somewhere that includes the equivalent of
6674 <iso646.h>.
6675
6676 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6677 -E" works; it apparently doesn't work with PathScale EKO Compiler
6678 Suite Version 2.0.
6679
6680 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6681
6682 During deterministic GLR operation, user actions should be able to
6683 influence the parse by changing yychar. To make this easier to fix and
6684 to make glr.c easier to evolve in general, don't maintain yytoken in
6685 parallel with yychar; just compute yytoken when needed.
6686 * tests/glr-regression.at (Incorrect lookahead during deterministic
6687 GLR): Check that setting yychar in a user action has the intended
6688 effect.
6689 * data/glr.c (yyGLRStack): Remove yytokenp member.
6690 (yyclearin): Don't set *yytokenp.
6691 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6692 yychar rather than *yytokenp to determine the current lookahead.
6693 Compute yytoken locally when needed.
6694 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6695 point to.
6696
6697 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6698 after `--report' documentation.
6699
6700 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6701
6702 * src/parse-gram.y (grammar_declaration): Location of printer
6703 symbol is @1, not list->location. Bug reported by twlevo.
6704 * tests/input.at (Incompatible Aliases): Adjust to above change.
6705
6706 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6707
6708 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6709 all the test at once. This makes the output easier to read in the
6710 normal case.
6711
6712 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6713 got from <http://bro-ids.org/download.html>. The bug is that
6714 when two actions appeared in succession, the second one was
6715 scanned before the first one was added to the grammar rule
6716 as a midrule action. Bison then output the incorrect warning
6717 "parse.y:905.17-906.36: warning: unused value: $3".
6718 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6719 associated with a value.
6720 (rhs): Don't invoke grammar_current_rule_action_append.
6721 (action): Invoke it here instead.
6722 * src/reader.c (grammar_midrule_action): Now extern.
6723 (grammar_current_rule_action_append): Don't invoke
6724 grammar_midrule_action; that is now the scanner's job.
6725 * src/reader.h (last_string, last_braced_code_loc):
6726 (grammar_midrule_action): New decls.
6727 * src/scan-gram.l (last_string): Now extern, sigh.
6728 (last_braced_code_loc): New extern variable.
6729 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6730 rule already has an action.
6731 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6732 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6733 Add some tests to check that the above changes fixed the bug.
6734
6735 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6736
6737 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6738 All used changed. Check whether the symbol has a destructor,
6739 not whether it is typed.
6740 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6741 that the values are still reported as unused. All line numbers
6742 adjusted.
6743
6744 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6745
6746 Work around a bug in bro 0.8, which underparenthesizes its
6747 definition of YYLLOC_DEFAULT.
6748 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6749 their arguments.
6750 * data/lalr1.cc: Likewise.
6751 * data/yacc.cc: Likewise.
6752
6753 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6754
6755 Work around a bug in Pike 7.0, and give the Pike folks a
6756 better way to override the usual int widths.
6757 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6758 user can override the types.
6759 (short): #undef, to work around a bug in Pike 7.0.
6760 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6761 (union yyalloc.yyss): Use yytype_int16 rather than short.
6762 All uses changed.
6763 (yysigned_char): Remove.
6764 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6765 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6766 * tests/regression.at (Web2c Actions): Adjust to above changes.
6767
6768 * src/reader.c (check_and_convert_grammar): New function.
6769 (reader): Close the input file even if something went wrong during
6770 parsing. Minor file descriptor leak reported by twlevo.
6771
6772 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6773 to pacify gcc -Wswitch-default.
6774 * src/scan-gram.l (adjust_location): Use a default: break; case
6775 to pacify gcc -Wswitch-default.
6776 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6777 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6778 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6779 Move these decls to scan-skel.l, since they don't need to be
6780 visible elsewhere.
6781 * src/scan-skel.l: Accept the above decls.
6782 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6783 is used.
6784
6785 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6786
6787 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6788 since we don't want to insist on a version number at the start
6789 of the changelog every time.
6790 * Makefile.maint: Sync from coreutils a bit better.
6791 (sc_trailing_blank): Renamed from sc_trailing_space.
6792 All uses changed.
6793 (sc_no_if_have_config_h, sc_require_config_h):
6794 (sc_prohibit_assert_without_use): New rules.
6795 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6796 (sc_dd_max_sym_length): Fix leading spaces in rule.
6797 (sc_system_h_headers): Prefix with @.
6798 (sc_useless_cpp_parens, m4-check): Output line numbers.
6799 (changelog-check): Allow version only in head.
6800 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6801 satisfy new Makefile.maint rule.
6802 * data/glr.c: Likewise.
6803 * data/glr.cc: Likewise.
6804 * data/lalr1.cc: Likewise.
6805 * data/yacc.c: Likewise.
6806 * lib/ebitsetv.c: Likewise.
6807 * lib/lbitset.c: Likewise.
6808 * lib/subpipe.c: Likewise.
6809 * lib/timevar.c: Likewise.
6810 * src/system.h: Likewise.
6811 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6812 * djgpp/Makefile.maint: Add copyright notice.
6813 * djgpp/README.in: Likewise.
6814 * djgpp/config.bat: Likewise.
6815 * djgpp/config.site: Likewise.
6816 * djgpp/config_h.sed: Likewise.
6817 * djgpp/djunpack.bat: Likewise.
6818 * djgpp/config.sed: Fix copyright notice to match standard format.
6819 * djgpp/subpipe.h: Likewise.
6820 * lib/bitsetv-print.c: Likewise.
6821 * lib/bitsetv.c: Likewise.
6822 * lib/subpipe.h: Likewise.
6823 * lib/timevar.c: Likewise.
6824 * lib/timevar.h: Likewise.
6825 * djgpp/subpipe.c: Use standard recipe for config.h.
6826 * lib/abitset.c: Likewise.
6827 * lib/bitset.c: Likewise.
6828 * lib/bitset_stats.c: Likewise.
6829 * lib/bitsetv-print.c: Likewise.
6830 * lib/bitsetv.c: Likewise.
6831 * lib/ebitsetv.c: Likewise.
6832 * lib/get-errno.c: Likewise.
6833 * lib/lbitset.c: Likewise.
6834 * lib/subpipe.c: Likewise.
6835 * lib/timevar.c: Likewise.
6836 * lib/vbitset.c: Likewise.
6837 * tests/local.at: Likewise.
6838 * src/scan-gram.l: Don't include verify.h, since system.h does
6839 that for us.
6840 * .x-sc_require_config_h: New file.
6841 * .x-sc_unmarked_diagnostics: New file.
6842
6843 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6844
6845 Be a bit more systematic about using 'abort'.
6846 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6847 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6848 Put 'default: abort ();' before some other case, to satisfy older
6849 pedantic compilers.
6850 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6851 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6852 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6853 * src/conflicts.c (resolve_sr_conflict): Likewise.
6854 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6855 (get_decision_str, get_orientation_str, get_node_alignment_str):
6856 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6857 (get_linestyle_str, get_arrowstyle_str): Likewise.
6858 * src/conflicts.c (resolve_sr_conflict):
6859 Use a default case rather than one for the one remaining enum
6860 value, to catch invalid enum values as well.
6861 * src/lalr.c (set_goto_map, map_goto):
6862 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6863 * src/nullable.c (nullable_compute, token_definitions_output):
6864 Likewise.
6865 * src/reader.c (packgram, reader): Likewise.
6866 * src/state.c (transitions_to, state_new, state_reduction_find):
6867 Likewise.
6868 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6869 (symbol_pack): Likewise.
6870 * src/tables.c (conflict_row, pack_vector): Likewise.
6871 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6872 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6873 * src/system.h: Don't include <assert.h>.
6874 (assert): New macro.
6875
6876 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6877 (Destructor Decl, Parser Function, Pure Calling):
6878 Describe rules for braces inside C code more carefully.
6879
6880 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6881
6882 Fix some porting glitches found by Nelson H. F. Beebe.
6883 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6884 compilers that don't understand that abort () does not return.
6885 * src/state.c (transitions_to): Likewise.
6886 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6887 that '#include <cstdlib>' works.
6888 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6889 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6890 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6891 for the benefit of some pre-C99 compilers.
6892
6893 * bootstrap: Undo changes to gnulib files that autoreconf made.
6894
6895 Minor fixups to get 'make maintainer-check' to work.
6896 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6897 with the new verify.h implementation.
6898 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6899 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6900 * data/yacc.c (YYUSE): Likewise.
6901 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6902 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6903 * src/parse-gram.y (declaration): Don't pass a string constant
6904 to a function that expects char *, since GCC might complain
6905 about the constant value.
6906 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6907 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6908 before #defining them.
6909 * tests/glr-regression.at
6910 (Incorrectly initialized location for empty right-hand side in GLR):
6911 In yyerror, use the msg arg.
6912 (Corrupted semantic options if user action cuts parse):
6913 (Incorrect lookahead during deterministic GLR):
6914 (Incorrect lookahead during nondeterministic GLR):
6915 Don't name a local var 'index'; it shadows string.h's 'index'.
6916
6917 2006-01-19 Akim Demaille <akim@epita.fr>
6918
6919 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6920 location, not just parts of it.
6921
6922 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6923
6924 * NEWS: Document the fact that multiple %unions are now allowed.
6925 * doc/bison.texinfo (Union Decl): Likewise.
6926 * TODO: This feature is now implemented, so remove it from
6927 the wishlist.
6928
6929 * Makefile.maint: Merge with coreutils Makefile.maint.
6930 (CVS_LIST): Use build-aux version if available.
6931 (VERSION_REGEXP): New macro.
6932 (syntax-check-rules): Add sc_no_if_have_config_h,
6933 sc_prohibit_assert_without_use, sc_require_config_h,
6934 sc_useless_cpp_parens.
6935 (sc_obsolete_symbols): Check for O_NDELAY.
6936 (sc_dd_max_sym_length): Track coreutils.
6937 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6938 (sc_useless_cpp_parens): New rule.
6939 (news-date-check): Look for version or today's date.
6940 (changelog-check): Don't require version number near head.
6941 (copyright-check): Use current year instead of hardwiring 2005.
6942 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6943 (announcement): Add --gpg-key-ID.
6944
6945 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6946 with "file system".
6947
6948 Avoid undefined behavior that addressed just before the start of an
6949 array. Problem reported by twlevo.
6950 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6951 * src/lalr.c (build_relations): Rely on new sentinel.
6952 * src/gram.c (gram_free): Adjust to new sentinel.
6953
6954 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6955
6956 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6957 yylookaheadNeeds. All uses updated.
6958 (yysplitStack): Rename local yynewLookaheadStatuses to
6959 yynewLookaheadNeeds.
6960 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6961 GLR): In comments, change `lookahead status' to `lookahead need'.
6962
6963 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6964
6965 * data/glr.c (yysplitStack): A little stylistic rewrite.
6966
6967 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6968
6969 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6970
6971 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6972
6973 * doc/bison.texinfo: Fix some typos.
6974 (GLR Semantic Actions): New subsection discussing special
6975 considerations because GLR semantic actions might be deferred.
6976 (Actions): Mention look-ahead usage of yylval.
6977 (Actions and Locations): Mention look-ahead usage of yylloc.
6978 (Special Features for Use in Actions): Add YYEOF entry and mention it
6979 in the yychar entry.
6980 In the yychar entry, remove mention of the local yychar case (pure
6981 parser) since this is irrelevant information when writing semantic
6982 actions and since it's already discussed in `Table of Symbols' where
6983 yychar is otherwise described as an external variable.
6984 In the yychar entry, don't call it the `current' look-ahead since it
6985 isn't when semantic actions are deferred.
6986 In the yychar and yyclearin entries, add note about deferred semantic
6987 actions.
6988 Add yylloc and yylval entries discussing look-ahead usage.
6989 (Look-Ahead Tokens): When discussing yychar, don't call it the
6990 `current' look-ahead, and do mention yylval and yylloc.
6991 (Error Recovery): Cross-reference `Action Features' when mentioning
6992 yyclearin.
6993 (Table of Symbols): In the yychar entry, don't call it the `current'
6994 look-ahead.
6995 In the yylloc and yylval entries, mention look-ahead usage.
6996
6997 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6998
6999 * tests/glr-regression.at: Update copyright year to 2006.
7000
7001 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7002
7003 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7004 use during nondeterministic operation to track which stacks have
7005 actually needed the current lookahead.
7006 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7007 Allocate, deallocate, resize, and otherwise shuffle space for
7008 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7009 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7010 appropriately during nondeterministic operation.
7011 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7012 members to store the current lookahead to be used by the deferred
7013 user action.
7014 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7015 from which the RHS is taken. Set the lookahead members of the new
7016 yySemanticOption according to the lookahead status for stack yyk.
7017 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7018 yyaddDeferredAction.
7019 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7020 members of yySemanticOption before invoking yyuserAction, and then set
7021 them back to their current values afterward.
7022 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7023 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7024 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7025 titles for consistency.
7026 (Leaked merged semantic value if user action cuts parse): In order to
7027 suppress lint warnings, use arguments in merge function, and assign
7028 char value < 128 in main.
7029 (Incorrect lookahead during deterministic GLR): New test case.
7030 (Incorrect lookahead during nondeterministic GLR): New test case.
7031
7032 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7033
7034 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7035 !yyvaluep as signal that no semantic value is available to print.
7036 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7037 to print a semantic value.
7038
7039 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7040
7041 * tests/glr-regression.at: For consistency with my newer test cases,
7042 don't thank myself.
7043
7044 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7045
7046 * data/glr.c (yyresolveValue): When merging semantic options, if at
7047 least one user action succeeds but a later one cuts the parse, then
7048 destroy the semantic value before returning rather than leaking it.
7049 (yyresolveStates): If a user action cuts the parse and thus
7050 yyresolveValue fails, ignore the (unset) semantic value rather than
7051 corrupting the yyGLRState, and empty the semantic options list since
7052 the user actions should have called all necessary destructors.
7053 Simplify code with YYCHK.
7054 * tests/glr-regression.at (Corrupted semantic options if user action
7055 cuts parse): New test case.
7056 (Undesirable destructors if user action cuts parse): New test case.
7057 Before applying any of this patch, this test case never actually failed
7058 for me... but only because the corrupted semantic options usually
7059 masked this bug.
7060 (Leaked merged semantic value if user action cuts parse): New test
7061 case.
7062
7063 2006-01-05 Akim Demaille <akim@epita.fr>
7064
7065 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7066
7067 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7068
7069 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7070 _MSC_VER. Problem reported by Cenzato Marco.
7071 (b4_c_function_def): Use it.
7072 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7073 b4_c_modern.
7074 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7075 than rolling our own.
7076
7077 2006-01-04 Akim Demaille <akim@epita.fr>
7078
7079 Also warn about non-used mid-rule values.
7080 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7081 member.
7082 (symbol_list_new): Adjust.
7083 * src/reader.c (symbol_typed_p): New.
7084 (grammar_rule_check): Use it.
7085 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7086 Check its rule.
7087 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7088 Use it.
7089 * tests/actions.at (Exotic Dollars): Adjust.
7090
7091 2006-01-04 Akim Demaille <akim@epita.fr>
7092
7093 * src/reader.c (grammar_midrule_action): If $$ is set in a
7094 mid-rule, move the `used' bit to its lhs.
7095 * tests/input.at (Unused values): New.
7096 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7097
7098 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7099
7100 * doc/bison.texinfo (Bison Options): Say more accurately what
7101 --yacc does.
7102 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7103 about declarations in the grammar when in Yacc mode, as POSIX does
7104 not require a diagnostic when the grammar uses extensions.
7105
7106 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7107
7108 Warn about dubious constructions like "%token T T".
7109 Reported by twlevo.
7110 * src/symtab.h (struct symbol.declared): New member.
7111 * src/symtab.c (symbol_new): Initialize it to false.
7112 (symbol_class_set): New arg DECLARING, specifying whether
7113 this is a declaration that we want to warn about, if there
7114 is more than one of them. All uses changed.
7115
7116 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7117 Allow multiple %union directives, whose contents concatenate.
7118 * src/parse-gram.y (grammar_declaration): Likewise.
7119 Use muscle_code_grow, so that we don't need stype_line any more.
7120 All uses changed.
7121
7122 * src/muscle_tab.c (muscle_grow): Fix comment.
7123
7124 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7125 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7126 Update copyright year to 2006.
7127
7128 2006-01-03 Akim Demaille <akim@epita.fr>
7129
7130 Have glr.cc pass (some of) the calc.at tests.
7131 * data/glr.cc (b4_parse_param_orig): New.
7132 (b4_parse_param): Improve its definition, and bound it more
7133 clearly in the skeleton.
7134 (b4_epilogue): Append, instead of prepending, in order to keep
7135 #line consistency.
7136 Simplify the generation of auxiliary functions: locations and
7137 purity are mandated.
7138 (b4_global_tokens_and_yystype): Honor it.
7139 * data/location.cc (c++.m4): Don't include it.
7140 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7141 and AT_SKEL_CC_IF.
7142 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7143 AT_LALR1_CC_IF.
7144 Be sure to initialize the first position's filename.
7145 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7146 mandated anyway.
7147 (AT_CHECK_CALC_GLR_CC): New.
7148 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7149
7150 2006-01-02 Akim Demaille <akim@epita.fr>
7151
7152 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7153 c.m4.
7154 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7155 * data/glr.cc: Do not include stack.hh.
7156
7157 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7158
7159 * data/glr.c: Reformat whitespace with tabs.
7160 (b4_lpure_formals): Remove this unused m4 macro.
7161 * tests/cxx-type.at: Reformat whitespace with tabs.
7162 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7163 since it's a member. Rename type to isNterm for clarity.
7164
7165 2005-12-29 Akim <akim@sulaco.local>
7166
7167 Let glr.cc catch up with symbol_value_print.
7168 * data/glr.cc (b4_yysymprint_generate): Replace by...
7169 (b4_yy_symbol_print_generate): this.
7170 (yy_symbol_print, yy_symbol_value_print): Declare them.
7171
7172 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7173
7174 * src/location.h (boundary): Note that a line or column equal
7175 to INT_MAX indicates an overflow.
7176 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7177 (rule_length_overflow, increment_rule_length, add_column_width):
7178 New functions.
7179 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7180 (<SC_BRACED_CODE>"}"):
7181 Use increment_rule_length rather than incrementing it by hand.
7182 (adjust_location, handle_syncline): Diagnose overflow.
7183 (handle_action_dollar, handle_action_at):
7184 Fix bug with monstrosities like $-2147483648.
7185 Remove now-unnecessary checks.
7186 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7187 (convert_ucn_to_byte): Verify assumptions.
7188 (handle_syncline): New arg LOC. All callers changed.
7189 Don't store through a value derived from char const * pointer.
7190
7191 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7192 GCC warnings.
7193
7194 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7195
7196 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7197 Remove unnecessary forward static decls.
7198
7199 2005-12-27 Akim Demaille <akim@epita.fr>
7200
7201 * src/reader.c (grammar_current_rule_check): Also check that $$
7202 is used.
7203 Take the rule to check as argument, hence rename as...
7204 (grammar_rule_check): this.
7205 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7206 Rename as...
7207 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7208 (grammar_midrule_action, grammar_symbol_append): Now static.
7209 * tests/torture.at (input): Don't rely on the default action
7210 being always performed.
7211 * tests/calc.at: "Set" $$ even when the action is "cut" with
7212 YYERROR or other.
7213 * tests/actions.at (Exotic Dollars): Instead of using unused
7214 values, check that the warning is issued.
7215
7216 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7217
7218 * NEWS: Improve wording for unused-value warnings.
7219
7220 2005-12-22 Akim Demaille <akim@epita.fr>
7221
7222 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7223 (b4_yysymprint_generate): Rename as...
7224 (b4_yy_symbol_print_generate): this.
7225 Generate yy_symbol_print instead of yysymprint.
7226 Generate also yy_symbol_value_print, and use it.
7227
7228 2005-12-22 Akim Demaille <akim@epita.fr>
7229
7230 * NEWS: Warn about unused values.
7231 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7232 a `used' member.
7233 (symbol_list_n_get, symbol_list_n_used_set): New.
7234 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7235 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7236 * src/reader.c (grammar_current_rule_check): Check that values are
7237 used.
7238 * src/symtab.c (symbol_print): Accept 0.
7239 * tests/existing.at: Remove the type information.
7240 Empty the actions.
7241 Remove useless actions (beware of mid-rule actions: perl -000
7242 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7243 * tests/actions.at (Exotic Dollars): Use unused values.
7244 * tests/calc.at: Likewise.
7245 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7246 Likewise.
7247
7248 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7249 rule_useful_p.
7250
7251 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7252
7253 Undo 2005-12-01 tentative license wording change. The wording is
7254 still being reviewed by the lawyers, and we don't want to wait for
7255 them before publishing a test release. For now, revert to the
7256 previous wording.
7257 * NEWS: Undo 2005-12-01 change.
7258 * data/glr.c: Revert to previous license wording.
7259 * data/glr.cc: Likewise.
7260 * data/lalr1.cc: Likewise.
7261 * data/location.cc: Likewise.
7262 * data/yacc.c: Likewise.
7263
7264 * NEWS: Reword %destructor vs YYABORT etc.
7265 * data/glr.c: Use American spacing, for consistency.
7266 * data/glr.cc: Likewise.
7267 * data/lalr1.cc: Likewise.
7268 * data/yacc.c: Likewise.
7269 * data/yacc.c: Reformat comments slightly.
7270 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7271 for consistency. Fix some spelling errors and reword recently-included
7272 text slightly.
7273 * tests/cxx-type.at: Cast results of malloc, for C++.
7274
7275 2005-12-21 Joel E. Denny <address@hidden>
7276
7277 * tests/cxx-type.at: Construct a tree, count the parents of shared
7278 nodes, and free each node once and only once. Previously, the memory
7279 for semantic values was leaked instead.
7280
7281 2005-12-21 Joel E. Denny <address@hidden>
7282
7283 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7284 (yylval, yylloc): If pure, #define to yystackp->yyval and
7285 yystackp->yyloc similar to yychar and yynerrs.
7286 (yyparse): If pure, remove local yylval and yylloc. Add local
7287 yystackp to accommodate pure definitions of yylval and yylloc.
7288 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7289 yylvalp and yyllocp to &yylval and &yylloc.
7290 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7291 namespace. Previously, nerrs and char were missing, but lval and lloc
7292 weren't necessary.
7293 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7294 yylvalp and yyllocp parameters since, if pure, these are now always
7295 accessible through yystackp. If not pure, they are still accessible
7296 globally.
7297 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7298 `if (YYID (N))' to pacify lint.
7299
7300 2005-12-21 Akim Demaille <akim@epita.fr>
7301
7302 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7303 destroy the RHS symbols of a rule.
7304 * data/yacc.c (yylen): Initialize to 0.
7305 Keep its value to the number of items to possibly shift.
7306 In particular, a regular successful parse that ends on YYFINAL by
7307 a (internal) YYACCEPT must not have yylen != 0.
7308 (yyerrorlab, yyreturn): Pop the RHS.
7309 Reorder a bit to emphasize the `shifting' bits of code.
7310 (YYPOPSTACK): Now accept a number of items to pop.
7311 * data/lalr1.cc: Likewise.
7312 * data/glr.c: Formatting changes.
7313 Use goto instead of fall through.
7314 * doc/bison.texinfo (Destructor Decl): Complete.
7315
7316 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7317
7318 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7319 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7320 * djgpp/config.bat: Replace every occurence of the file name
7321 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7322 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7323 * djgpp/config.sed: Replace every occurence of the file name
7324 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7325 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7326 * djgpp/djunpack.bat: DJGPP specific file.
7327 * djgpp/fnchange.lst: DJGPP specific file.
7328 * djgpp/README.in: Add new information about how to unpack the bison
7329 source on MSDOS and other systems which have 8.3 file name restrictions
7330 using djunpack.bat and fnchange.lst.
7331
7332 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7333
7334 * bootstrap (build_cvs_prefix): Remove; unused.
7335 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7336 when getting gnulib.
7337
7338 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7339
7340 * data/glr.c: Reorder typedef declarations for structs to match order
7341 of struct declarations.
7342 Rename yystack everywhere to yystackp except in yyparse where it's not
7343 a pointer.
7344 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7345 consistency.
7346 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7347 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7348 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7349 lint.
7350
7351 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7352
7353 * tests/sets.at (Accept): Fix typos in regular expression used to
7354 sed out the final state number.
7355
7356 Work around portability problem on Solaris 10: flex-generated
7357 files include <stdio.h> before <config.h>, which messes up
7358 because the latter defines __EXTENSIONS__. Address the problem
7359 by creating two new little files that include <config.h> first,
7360 then include the flex-generated files. Rewrite everyone else
7361 to include <config.h> first, as well.
7362 * lib/timevar.c: Always include "config.h".
7363 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7364 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7365 (EXTRA_bison_SOURCES): New macro.
7366 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7367 * src/system.h: Don't include config.h.
7368 * src/LR0.c: Include <config.h> first.
7369 * src/assoc.c: Likewise.
7370 * src/closure.c: Likewise.
7371 * src/complain.c: Likewise.
7372 * src/conflicts.c: Likewise.
7373 * src/derives.c: Likewise.
7374 * src/files.c: Likewise.
7375 * src/getargs.c: Likewise.
7376 * src/gram.c: Likewise.
7377 * src/lalr.c: Likewise.
7378 * src/location.c: Likewise.
7379 * src/main.c: Likewise.
7380 * src/muscle_tab.c: Likewise.
7381 * src/nullable.c: Likewise.
7382 * src/output.c: Likewise.
7383 * src/parse-gram.y: Likewise.
7384 * src/print.c: Likewise.
7385 * src/print_graph.c: Likewise.
7386 * src/reader.c: Likewise.
7387 * src/reduce.c: Likewise.
7388 * src/relation.c: Likewise.
7389 * src/state.c: Likewise.
7390 * src/symlist.c: Likewise.
7391 * src/symtab.c: Likewise.
7392 * src/tables.c: Likewise.
7393 * src/uniqstr.c: Likewise.
7394 * src/vcg.c: Likewise.
7395
7396 * src/parse-gram.y: Fix minor problems uncovered by lint.
7397 (current_lhs, current_lhs_location): Now static.
7398 (current_assoc): Remove unused variable.
7399
7400 Cleanups so that Bison-generated parsers have less lint.
7401 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7402 Prepend /*ARGSUSED*/, for lint's sake.
7403 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7404 definition if 'lint' is defined.
7405 (YYID): New macro (or function, if lint).
7406 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7407 * data/yacc.c: Likewise.
7408 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7409 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7410 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7411 is C++ only.
7412 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7413 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7414 Use YYID(0) rather than 0, for lint.
7415 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7416 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7417
7418 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7419
7420 * tests/glr-regression.at
7421 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7422 Close memory leak reported by twlevo.
7423
7424 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7425
7426 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7427 all stacks.
7428 (yyparse): Iterate another stack in order to call user destructors.
7429 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7430 New test case.
7431 (Duplicated user destructor for lookahead): This test now is expected
7432 to succeed.
7433
7434 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7435
7436 * NEWS: Document the following change.
7437 * data/yacc.c: Say "parser skeleton" rather than "file", since
7438 it's no longer just a file.
7439 * data/glr.c: Grant a special exception for C GLR parsers, that
7440 reads like the already-existing exception for C LALR(1) parsers.
7441 * data/glr.cc: Likewise.
7442 * data/lalr1.cc: Likewise.
7443 * data/location.cc: Likewise.
7444 * data/yacc.c: Reword the "written by" statement to clarify that
7445 it was the parser skeleton, not the entire output file.
7446 * data/glr.c: Written by Paul Hilfinger.
7447 * data/glr.cc: Written by Akim Demaille.
7448 * data/lalr1.cc: Likewise.
7449
7450 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7451
7452 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7453 Fix typos in previous change that broke 'make check'.
7454 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7455 supported in C.
7456 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7457 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7458 We can revert this once things settle down.
7459
7460 * src/conflicts.c (conflicts_print): Don't print file name twice
7461 when %expect fails because there were no conflicts.
7462 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7463 change.
7464 * tests/conflicts.at (%expect not enough, %expect too much):
7465 (%expect with reduce conflicts): Adjust to new behavior.
7466
7467 2005-11-18 Akim Demaille <akim@epita.fr>
7468
7469 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7470 errors.
7471 * NEWS: Document this.
7472 * doc/bison.texinfo (Expect Decl): Likewise.
7473
7474 2005-11-16 Akim Demaille <akim@epita.fr>
7475
7476 Generalize the display of semantic values and locations in traces.
7477 * data/glr.c (yy_reduce_print): Fix indices (again).
7478 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7479 literal integers.
7480 * data/lalr1.cc (yyreduce_print): Rename as...
7481 (yy_reduce_print): this.
7482 Display values and locations.
7483 * data/yacc.c (yy_reduce_print): Likewise.
7484 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7485 (yysymprint): Move higher to be visible from yy_reduce_print).
7486 (yyparse): Adjust.
7487 * tests/calc.at: Adjust the expected length of the traces.
7488
7489 2005-11-14 Akim Demaille <akim@epita.fr>
7490
7491 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7492 from 1 to N, while values and location start at 0.
7493 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7494
7495 2005-11-14 Akim Demaille <akim@epita.fr>
7496
7497 * data/glr.c (yy_reduce_print): Fix the $ number.
7498
7499 2005-11-14 Akim Demaille <akim@epita.fr>
7500
7501 "Use" parse parameters.
7502 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7503 * data/glr.c, data/glr.cc: Use them.
7504 * data/glr.c (YYUSE): Have a C++ definition that supports
7505 non-pointer types.
7506
7507 2005-11-14 Akim Demaille <akim@epita.fr>
7508
7509 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7510
7511 2005-11-14 Akim Demaille <akim@epita.fr>
7512
7513 * data/glr.cc: New.
7514 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7515
7516 2005-11-12 Akim Demaille <akim@epita.fr>
7517
7518 Let position and location be PODs.
7519 * data/location.cc (position::initialize, location::initialize): New.
7520 (position::position, location::location): Define only if
7521 b4_location_constructors is defined.
7522 * data/lalr1.cc (b4_location_constructors): Define it for backward
7523 compatibility.
7524 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7525
7526 2005-11-12 Akim Demaille <akim@epita.fr>
7527
7528 * data/lalr1.cc: Move the body of the ctor and dtor into the
7529 parser file (instead of the header).
7530 Wrap the implementations in a "namespace yy".
7531
7532 2005-11-12 Akim Demaille <akim@epita.fr>
7533
7534 Have glr.c include its header file when created.
7535 * data/glr.c (b4_shared_declarations): New.
7536 Output them verbatim in the parser if !%defines, otherwise
7537 output then in the header file, and include it instead.
7538
7539 2005-11-11 Akim Demaille <akim@epita.fr>
7540
7541 * data/glr.c: Comment changes.
7542
7543 2005-11-11 Akim Demaille <akim@epita.fr>
7544
7545 When yydebug, report semantic and location values for reductions.
7546 * data/glr.c (yy_reduce_print): Report the semantic values and the
7547 locations.
7548 (YY_REDUCE_PRINT): Adjust.
7549 (yyglrReduce): Use them.
7550 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7551 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7552 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7553 traces.
7554
7555 2005-11-10 Akim Demaille <akim@epita.fr>
7556
7557 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7558 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7559 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7560
7561 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7562
7563 * m4/cxx.m4, examples/Makefile.am: Don't build
7564 examples/calc++ if no C++ compiler is available. (trivial change)
7565
7566 2005-11-09 Akim Demaille <akim@epita.fr>
7567
7568 * src/scan-skel.l: Use a couple of asserts.
7569
7570 2005-11-03 Akim Demaille <akim@epita.fr>
7571
7572 In some (weird) cases, the final state number is incorrect.
7573 Reported by Alexandre Duret-Lutz.
7574 * src/LR0.c (state_list_append): Remove the computation of
7575 final_state.
7576 (save_reductions): Do it here.
7577 (get_state): Alpha conversion.
7578 (generate_states): Use a for loop.
7579 * src/gram.h (item_number_is_rule_number)
7580 (item_number_is_symbol_number): New.
7581 * src/state.c: Use assert.
7582 * src/system.h: Include assert.h.
7583 * tests/sets.at (Accept): New.
7584
7585 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7586
7587 * data/glr.c (yyfill): Adjust comment.
7588 (yyresolveAction): Initialize default location properly
7589 for empty right-hand sides.
7590 (yydoAction): Ditto.
7591 Add comment explaining apparently dead code.
7592 * tests/glr-regression.at
7593 (Incorrectly initialized location for empty right-hand side in GLR):
7594 New test.
7595
7596 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7597
7598 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7599 gnulib when interrupted. This fixes some race conditions and
7600 works around some portability problems (one noted by Paul
7601 Hilfinger).
7602
7603 2005-10-22 Akim <akim@epita.fr>
7604
7605 * Makefile.cfg: Adjust to config -> build-aux.
7606 Reported by twledo.
7607
7608 2005-10-21 Akim Demaille <akim@epita.fr>
7609
7610 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7611 the %parse-params.
7612 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7613 * data/yacc.c (b4_Pure_if): Rename as...
7614 (b4_yacc_pure_if): this.
7615 (YY_SYMBOL_PRINT, yyparse): Adjust.
7616 * doc/bison.texinfo: Formatting changes.
7617
7618 2005-10-21 Akim Demaille <akim@epita.fr>
7619
7620 Finish the transition config -> build-aux.
7621 * configure.ac, Makefile.am: Use build-aux.
7622 * config/prev-version, config/announce-gen, config/Makefile.am:
7623 Move to...
7624 * build-aux/prev-version, build-aux/announce-gen,
7625 * build-aux/Makefile.am: here.
7626
7627 2005-10-14 Akim Demaille <akim@epita.fr>
7628
7629 * examples/calc++/test: Use set -x only when VERBOSE.
7630
7631 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7632
7633 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7634 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7635
7636 2005-10-13 Akim Demaille <akim@epita.fr>
7637
7638 * src/scan-skel.l: Output the base name parts of the parser and
7639 header file names.
7640 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7641 additional checks.
7642 Use this to exercise C++ outputs in subdirs.
7643 Reported by Oleg Smolsky.
7644
7645 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7646
7647 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7648 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7649 Problem reported by John P. Hartmann.
7650 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7651 already defined it.
7652
7653 2005-10-12 Akim Demaille <akim@epita.fr>
7654
7655 * src/parse-gram.y (version_check): Exit 63 to please missing
7656 (stands for "version mismatch).
7657 * tests/input.at, doc/bison.texinfo: Adjust.
7658
7659 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7660
7661 Work around portability problems with Visual Age C compiler
7662 (xlc and xlC_r) reported by John P. Hartmann.
7663 * data/location.cc (initial_column, initial_line): Remove.
7664 All uses replaced by 0 and 1.
7665 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7666 that xlc complains about.
7667 * src/scan-skel.l (skel_wrap): Likewise.
7668 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7669 as __STDC__.
7670 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7671 __STDC_VERSION__. Use it everywhere instead of looking at
7672 __STDC__ and __cplusplus.
7673
7674 2005-10-10 Akim Demaille <akim@epita.fr>
7675
7676 * examples/calc++/test: Be quiet unless VERBOSE.
7677
7678 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7679
7680 * data/c.m4 (yydestruct, yysymprint):
7681 Use YYUSE instead of casting to void.
7682 * data/glr.c (YYUSE): New macro.
7683 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7684 Use it instead of rolling our own.
7685 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7686 (YYCHK1):
7687 Use /*CONSTCOND*/ to suppress lint warnings.
7688 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7689 (YY_STACK_PRINT): Use 'false' not '0'.
7690 (YYUSE): New macro.
7691 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7692 * data/yacc.c (YYUSE): New macro.
7693 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7694 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7695 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7696
7697
7698 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7699 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7700
7701 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7702
7703 Undo the parts of the unlocked-I/O change that substituted
7704 putc or puts for printf. This might hurt performance a bit,
7705 but some people prefer the printf style.
7706 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7707 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7708 All uses replaced by YYFPRINTF and YYDPRINTF.
7709 * data/yacc.c: Likewise.
7710 * lib/bitset.c (bitset_print): Likewise.
7711 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7712 putc and puts.
7713 * lib/lbitset.c (debug_lbitset): Likewise.
7714 * src/closure.c (print_firsts, print_fderives): Likewise.
7715 * src/gram.c (grammar_dump): Likewise.
7716 * src/lalr.c (look_ahead_tokens_print): Likewise.
7717 * src/output.c (escaped_output): Likewise.
7718 (user_actions_output): Break apart two printfs.
7719 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7720 * src/reduce.c (reduce_print): Likewise.
7721 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7722 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7723
7724 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7725 Use assignments rather than casts-to-void to suppress
7726 unused-variable warnings. This pacifies 'lint'.
7727 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7728 unused-variable warnings.
7729
7730 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7731
7732 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7733
7734 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7735
7736 Use unlocked I/O for a minor performance improvement on hosts like
7737 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7738 is to use the gnlib unlocked-io module, and to prefer putc and
7739 puts to printf when either will work (since the latter doesn't
7740 come in an unlocked flavor).
7741 * bootstrap (gnulib_modules): Add unlocked-io.
7742 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7743 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7744 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7745 and similarly for puts and putc and printf.
7746 * data/yacc.c: Likewise.
7747 * lib/bitset.c (bitset_print): Likewise.
7748 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7749 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7750 to printf.
7751 * lib/lbitset.c (debug_lbitset): Likewise.
7752 * src/closure.c (print_firsts, print_fderives): Likewise.
7753 * src/gram.c (grammar_dump): Likewise.
7754 * src/lalr.c (look_ahead_tokens_print): Likewise.
7755 * src/output.c (escaped_output): Likewise.
7756 (user_actions_output): Coalesce two printfs.
7757 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7758 * src/reduce.c (reduce_print): Likewise.
7759 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7760 * src/system.h: Include unlocked-io.h rather than stdio.h.
7761
7762 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7763 this confuses xgettext.
7764
7765 2005-10-02 Akim Demaille <akim@epita.fr>
7766
7767 * bootstrap (gnulib_modules): Add strverscmp.
7768 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7769 * m4/.cvsignore: Add strverscmp.m4.
7770 * src/parse-gram.y (%require): New token, new rule.
7771 (version_check): New.
7772 * src/scan-gram.l (%require): Adjust.
7773 * tests/input.at (AT_REQUIRE): New.
7774 Use it.
7775 * doc/bison.texinfo (Require Decl): New.
7776 (Calc++ Parser): Use %require.
7777
7778 2005-10-02 Akim Demaille <akim@epita.fr>
7779
7780 * data/location.cc: New.
7781
7782 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7783 Akim Demaille <akim@epita.fr>
7784
7785 Make sure -odir/foo.cc creates dir/location.hh etc.
7786 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7787 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7788 (spec_defines_file): Now const.
7789 (dir_prefix): New.
7790 (short_base_name): Remove.
7791 * src/files.c: Adjust.
7792 (dirname.h): Include.
7793 (base_name): Don't prototype it.
7794 (finput): Remove, duplicates gram_in.
7795 (full_base_name, short_base_name): Replace by...
7796 (all_but_ext, all_but_tab_ext): these.
7797 (compute_base_names): Rename as...
7798 (compute_file_name_parts): this.
7799 Update to compute the new variables, including dir_prefix.
7800 Adjust dependencies.
7801 * src/output.c (prepare): Output them.
7802 * src/reader.c: Adjust to use gram_in, not finput.
7803 * src/scan-skel.l (@dir_prefix@): New.
7804
7805 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7806
7807 * lib/subpipe.c: New function end_of_output_subpipe() added
7808 to allow support for non-posix systems. This is a no-op function
7809 for posix systems.
7810
7811 * lib/subpipe.h: New function end_of_output_subpipe() added
7812 to allow support for non-posix systems. This is a no-op function
7813 for posix systems.
7814
7815 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7816 handle the lack of pipe/fork functionality on non-posix systems.
7817
7818 * djgpp/Makefile.maint: DJGPP specific file.
7819
7820 * djgpp/README.in: DJGPP specific file.
7821
7822 * djgpp/config.bat: DJGPP specific configuration file.
7823
7824 * djgpp/config.sed: DJGPP specific configuration file.
7825
7826 * djgpp/config.site: DJGPP specific configuration file.
7827
7828 * djgpp/config_h.sed: DJGPP specific configuration file.
7829
7830 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7831
7832 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7833
7834 2005-10-02 Akim Demaille <akim@epita.fr>
7835
7836 * data/location.cc: New, extract from...
7837 * data/lalr1.cc: here.
7838 (location.hh): Include it after the user prologue, in case the
7839 filename type is defined by the user.
7840 Forward declation location and position before the pre-prologue.
7841 (yyresult_): Rename as...
7842 (yyresult): this, it's a local variable, not an attribute.
7843 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7844
7845 2005-10-01 Akim Demaille <akim@epita.fr>
7846
7847 * examples/extexi: Restore the #line generation.
7848
7849 2005-09-30 Akim Demaille <akim@epita.fr>,
7850 Alexandre Duret-Lutz <adl@gnu.org>
7851
7852 Move the token type and YYSTYPE in the parser class.
7853 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7854 (parser::token): New, from the moved free definition of tokens.
7855 (parser::semantic_value): Now a full definition instead of an
7856 indirection to YYSTYPE.
7857 (b4_post_prologue): No longer included in the header file, but
7858 in the implementation file.
7859 * doc/bison.texi (C+ Language Interface): Update.
7860 * src/parse-gram.y: Support unary %define.
7861 * tests/actions.at: Define global_tokens_and_yystype for backward
7862 compatibility until we update the tests.
7863 * tests/calc.at: Idem.
7864 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7865 to simplify the code.
7866
7867 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7868
7869 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7870 Ah, the good old days! Problem reported by Peter Klein.
7871 * bootstrap (gnulib_modules): Add strerror, strtoul.
7872 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7873 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7874
7875 2005-09-29 Akim Demaille <akim@epita.fr>
7876
7877 * data/c.m4 (b4_error_verbose_if): New.
7878 * data/lalr1.cc: Use it.
7879 (YYERROR_VERBOSE_IF): Remove.
7880 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7881 parser members, replaced by...
7882 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7883 local variables.
7884 (yysyntax_error_): Takes the state number as argument.
7885 (yyreduce_print_): Use the argument yyrule, not the former
7886 attribute yyn_.
7887
7888 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7889
7890 * bootstrap (gnulib_modules): Add verify.
7891 * lib/.cvsignore: Add verify.h.
7892 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7893 * src/system.h (verify): Remove.
7894 Include verify.h instead.
7895 * src/tables.c (tables_generate): Use new API for 'verify'.
7896
7897 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7898
7899 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7900 local variables whose names begin with 'yy'.
7901 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7902 Trivial changes from Joel E. Denny.
7903
7904 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7905 it itself.
7906 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7907 don't use alloca any more.
7908
7909 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7910 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7911 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7912 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7913 to match yacc.c, to test more hosts.
7914
7915 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7916
7917 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7918 doesn't affect behavior.
7919 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7920 Solaris, AIX, MSC.
7921 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7922 This works a bit better with glibc, if user code has already included
7923 stdlib.h.
7924 * doc/bison.texinfo (Bison Parser): Document that users can't
7925 arbitrarily use malloc and free for other purposes. Document
7926 that <alloca.h> and <malloc.h> might be included.
7927 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7928 user must declare alloca.
7929
7930 * HACKING (release): Forwarn the Translation Project about
7931 stable releses.
7932
7933 2005-09-20 Akim Demaille <akim@epita.fr>
7934
7935 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7936
7937 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7938
7939 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7940 (YYSTACK_ALLOC_MAXIMUM): Use it.
7941 (yysyntax_error): New function.
7942 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7943 multiple syntax errors are reported, and alloca is being used.
7944 Instead, reallocate buffers twice as big each time, so that
7945 we waste at most half the allocated memory. Start with a small
7946 (128-byte) buffer that will suffice in most cases anyway.
7947 Use yysyntax_error to do most of the work.
7948
7949 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7950 yynerrs is the number of errors reported, not the number of
7951 errors encountered.
7952
7953 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7954 Mark it as expected to fail.
7955 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7956 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7957 Don't start user-code symbols with "yy", to avoid name space problems.
7958
7959 2005-09-19 Akim Demaille <akim@epita.fr>
7960
7961 Remove the traits, failed experiment.
7962 It never proved useful, and anyway because of the current
7963 definition, it was not possible to have several specialization of
7964 this traits, making it useless.
7965 * data/lalr1.cc (yy:traits): Remove.
7966 Inline its definitions in the parser class.
7967
7968 2005-09-19 Akim Demaille <akim@epita.fr>
7969
7970 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7971 least Mac OSX with a /usr/local install of gettext.
7972
7973 2005-09-19 Akim Demaille <akim@epita.fr>
7974
7975 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7976 and yytoken for similarity with the other skeletons.
7977
7978 2005-09-19 Akim Demaille <akim@epita.fr>
7979
7980 * NEWS, configure.ac: update version number to 2.1a.
7981
7982 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7983
7984 * NEWS: Version 2.1.
7985
7986 * NEWS: Remove notice of yytname change, since it was never in an
7987 official release.
7988 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7989 diagnostic.
7990 * src/output.c (prepare): Likewise.
7991 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7992 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7993 is not defined. This is an awful hack, but it's enough for now.
7994 All callers changed.
7995 * tests/glr-regression-at (make_value): Args are const pointers now,
7996 to avoid GCC warning.
7997 (Duplicated user destructor for lookahead): New test. Currently
7998 skipped. It fails on my host but I'm not sure it'll always fail.
7999
8000 2005-09-16 Akim Demaille <akim@epita.fr>
8001
8002 * src/symtab.h (struct symbol): Declare the printer and destructor
8003 as const, to avoid accidental calls to free.
8004 (symbol_destructor_set, symbol_printer_set): Adjust.
8005 * src/symtab.c: Adjust.
8006
8007 2005-09-16 Akim Demaille <akim@epita.fr>
8008
8009 * data/c.m4 (b4_token_enums): New.
8010 (b4_token_defines): Rename as...
8011 (b4_token_enums_defines): this.
8012 (b4_token_defines): New, output only the #defines.
8013 * data/yacc.c, data/glr.c: Adjust.
8014 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8015 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8016 as default values.
8017
8018 2005-09-16 Akim Demaille <akim@epita.fr>
8019
8020 * data/lalr1.cc (yylex_): Remove, inline its code.
8021 (yyreport_syntax_error_): Remove, replaced by...
8022 (yysyntax_error_): this which returns a string and leaves to the
8023 caller the call to the users' error function.
8024 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8025 Move from members of the parser object...
8026 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8027 to local variables of the parse function.
8028
8029 2005-09-16 Akim Demaille <akim@epita.fr>
8030
8031 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8032 since it's in Bison's name space.
8033
8034 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8035
8036 * data/glr.c (yyresolveValue): Add default case to pacify
8037 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8038
8039 * NEWS: Document when yyparse started to return 2.
8040 * doc/bison.texinfo (Parser Function): Document when yyparse
8041 returns 2.
8042
8043 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8044 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8045 changed.
8046 (class position): file_name -> filename (reverting). All uses changed.
8047
8048 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8049
8050 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8051 do anything if $@ exists. This reverts part of the 2005-07-07
8052 patch.
8053
8054 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8055
8056 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8057 contains obsolete information and isn't worth distributing as a
8058 separate file anyway.
8059 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8060 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8061 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8062 (yyparse): Abort if user code uses longjmp to throw an unexpected
8063 value.
8064
8065 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8066
8067 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8068 Suggested by twlevo@xs4all.nl.
8069
8070 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8071 This avoids a diagnostic from gcc -Wswitch-enum.
8072 Problem reported by twlevo@xs4all.nl.
8073
8074 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8075 standards. Use "file name" or "file" or "name", depending on
8076 the context.
8077 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8078 not to hack/foo.tab.c.
8079 (Calc++ Top Level): 2nd arg of main is not const.
8080 * data/glr.c: b4_filename -> b4_file_name.
8081 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8082 All uses changed.
8083 (class position): filename -> file_name. All uses changed.
8084 * data/yacc.c: b4_filename -> b4_file_name.
8085 * lib/bitset.h: filename -> file_name in local vars.
8086 * lib/bitset_stats.c: Likewise.
8087 * src/files.c: Likewise.
8088 * src/scan-skel.l ("@output ".*\n): Likewise.
8089 * src/files.c (file_name_split): Renamed from filename_split.
8090 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8091
8092 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8093
8094 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8095 to accommodate latest gnulib.
8096
8097 * tests/glr-regression.at (Duplicate representation of merged trees):
8098 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8099
8100 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8101 needed.
8102
8103 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8104
8105 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8106 All uses changed. Invoke user destructor after an error during a
8107 split parse (trivial change from Joel E. Denny).
8108
8109 * tests/glr-regression.at
8110 (User destructor after an error during a split parse): New test case.
8111 Problem reported by Joel E. Denny in:
8112 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8113
8114 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8115
8116 * README-cvs: Give URLs for recommended tools.
8117 Mention Gzip version problem, and bootstrapping issues.
8118 Remove troubleshooting section, as it's somewhat obsolete.
8119
8120 * bootstrap (no_cache): New var, to accommodate different wget
8121 variants. Use it instead of '-C off'. Problem reported by
8122 twlevo@xs4all.nl.
8123
8124 * data/glr.c (yydestroyStackItem): New function.
8125 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8126 debugging information. Problem reported by Joel E. Denny.
8127
8128 2005-08-25 Akim Demaille <akim@epita.fr>
8129
8130 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8131
8132 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8133
8134 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8135 Don't invoke destructor on unresolved entries.
8136 * tests/glr-regression.at
8137 (User destructor for unresolved GLR semantic value): New test case.
8138 Problem reported by Joel E. Denny in:
8139 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8140
8141 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8142
8143 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8144 Add strnlen.c.
8145 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8146 lib-prefix.m4, po.m4.
8147
8148 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8149 in yydestruct diagnostic, since it might not be an error.
8150 Problem reported by Joel Denny near end of
8151 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8152 * data/lalr1.cc (yyerturn): Likewise.
8153 * data/yacc.c (yyreturn): Likewise.
8154 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8155
8156 * src/files.c: Remove obsolete FIXME comment.
8157
8158 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8159 with the other templates, and to fix bogus run-on messages such
8160 as the one reported at the end of
8161 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8162 All callers changed to avoid the newline.
8163 (yyprocessOneStack): Output two lines rather than one, to accommodate
8164 the above change. This changes the debug output format slightly.
8165
8166 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8167 reported by Joel E. Denny in
8168 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8169 (trivial change).
8170 * tests/glr-regression.at (Duplicate representation of merged trees):
8171 New test, from Joel E. Denny in:
8172 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8173 * THANKS: Add Joel E. Denny.
8174
8175 * configure.ac (AC_INIT): Bump to 2.0c.
8176
8177 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8178
8179 * NEWS: Version 2.0b.
8180
8181 * Makefile.am (SUBDIRS): Put examples before tests, so that
8182 "make check" doesn't finish with "All 1 tests passed".
8183
8184 * tests/regression.at (Token definitions): Don't rely on
8185 AT_PARSER_CHECK for data that contains backslashes. It currently
8186 uses 'echo', and 'echo' isn't portable if its argument contains
8187 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8188 that the byte '\0xff' is not printable in the C locale; it is,
8189 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8190 not printable, so use '\0x81' to test.
8191
8192 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8193 version of GCC, since the macro is used with non-GCC compilers.
8194
8195 Fix core dump reported by Pablo De Napoli in
8196 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8197 * tests/regression.at (Invalid inputs with {}): New test.
8198 * src/parse-gram.y (token_name): Translate type before using
8199 it as an index.
8200
8201 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8202 the user's name space. All uses changed to __attribute__
8203 ((__unused__)).
8204 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8205 Add __attribute__ ((__noreturn__)).
8206
8207 * etc/clcommit: Remove. We weren't using it, and it failed
8208 "make maintainer-distcheck".
8209 * Makefile.maint: Merge from coreutils.
8210 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8211 (syntax-check-rules): Change list of rules as described below.
8212 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8213 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8214 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8215 (sc_trailing_space): New rules.
8216 (sc_xalloc_h_in_src): Remove.
8217 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8218 (sc_space_tab, sc_error_exit_success, sc_changelog):
8219 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8220 (makefile-check, po-check, author_mark_check):
8221 (makefile_path_separator_check, copyright-check):
8222 Use grep -n, to make it easier to find violations.
8223 Use CVS_LIST and CVS_LIST_EXCEPT.
8224 (header_regexp, h_re): Remove.
8225 (dd_c): New macro.
8226 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8227 (my-distcheck): Use more-modern GCC flags.
8228 (signatures, %.asc): Remove.
8229 (rel-files, announcement): Remove signatures.
8230 Restore old updating code, even though we don't use it, so
8231 that we're the same as coreutils.
8232 (alpha, beta, major): Depend on news-date-check.
8233 Make the upload commands.
8234
8235 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8236 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8237 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8238 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8239 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8240 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8241 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8242 * tests/sets.at: Likewise.
8243
8244 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8245 we comment out the Autoconf version number.
8246 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8247 it's error-prone and "make maintainer-distcheck" rejects it.
8248
8249 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8250 Indent calls to "error" to pacify "make maintainer-distcheck",
8251 when the calls are not intended to be translated.
8252 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8253
8254 * src/Makefile.am (DEFS): Use +=, to pacify
8255 "make maintainer-distcheck".
8256 (bison_SOURCES): Add scan-skel.h.
8257 (sc_tight_scope): New rule, from coreutils.
8258
8259 * src/files.c (src_extension, header_extension):
8260 Now static, not extern.
8261 * src/getargs.c (short_options): Likewise.
8262 * src/muscle_tab.c (muscle_table): Likewise.
8263 * src/parse-gram.y (current_class, current_type, current_prec):
8264 Likewise.
8265 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8266 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8267 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8268 void, to avoid warning when NLS is disabled.
8269 * src/output.c: Include scan-skel.h.
8270 (scan_skel): Remove decl, since scan-skel.h does this.
8271 (output_skeleton):
8272 Indent calls to "error" to pacify "make maintainer-distcheck".
8273 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8274 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8275 "make maintainer-distcheck".
8276 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8277 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8278 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8279 (skel_lex_destroy, scan_skel): Move these decls to...
8280 * src/scan-skel.h: New file.
8281 * src/uniqstr.c (uniqstr_assert):
8282 Indent calls to "error" to pacify "make maintainer-distcheck".
8283
8284 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8285 not @VAR@.
8286
8287 * tests/torture.at: Revamp to avoid misuse of atoi that
8288 "make maintainer-distcheck" complained about.
8289
8290 * examples/extexi (message): Don't print a message more than once,
8291 and omit line-number decoration that makes Emacs compile think
8292 that informative messages are worth worrying about.
8293
8294 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8295
8296 * configure.ac: Update version number.
8297
8298 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8299 accidentally.
8300 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8301 autogenerated by the maintainer.
8302 * examples/calc++/.cvsignore: Add *.yy.
8303
8304 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8305 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8306 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8307
8308 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8309
8310 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8311 from maintainer-distcheck about casting the argument of 'free'.
8312
8313 * NEWS: Mention recent yytname changes.
8314 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8315
8316 * bootstrap: For translations that have not yet been upgraded to
8317 the new runtime-po domain, prime the pump by extracting the
8318 relevant strings from the obsolete translations. This code can be
8319 removed once the bison-runtime domain has been translated by each
8320 team.
8321
8322 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8323 now that token names are already quoted.
8324
8325 Fix problem reported by Anthony Heading.
8326 * data/glr.c (YYTOKEN_TABLE): New macro.
8327 (yytname): Define if YYTOKEN_TABLE.
8328 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8329 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8330 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8331 * src/output.c (prepare_symbols): Output token_table_flag.
8332
8333 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8334
8335 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8336 again if the first call fails.
8337
8338 * data/glr.c (yytnamerr): New function.
8339 (yyreportSyntaxError): Use it to dequote most string literals.
8340 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8341 with other skeletons. All uses changed.
8342 (yytnameerr_): New function.
8343 (yyreport_syntax_error): Use it to dequote most string literals.
8344 * data/yacc.c (yytnamerr): New function.
8345 (yyerrlab): Use it to decode most string literals.
8346 * doc/bison.texinfo (Decl Summary, Calling Convention):
8347 Clarify quoting convention of yytname.
8348 * src/output.c (prepare_symbols): Quote all names. This undoes
8349 the 2005-04-17 change, which is now accomplished (mostly) via
8350 changes in the parsers as described above.
8351 * tests/regression.at (Token definitions, Web2c Actions):
8352 Undo most 2005-04-17 change here, too.
8353
8354 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8355
8356 Fix more problems reported by twlevo@xs4all.nl.
8357 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8358 remove trailing spaces. This loses the exit status of ./types,
8359 and isn't needed since ./types shouldn't be emitting trailing
8360 spaces.
8361 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8362 as the stack isn't valid in that case.
8363
8364 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8365 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8366 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8367 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8368 is used.
8369 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8370 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8371 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8372 Likewise.
8373
8374 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8375 overly-picky compilers that reject 'char *foo = "bar";'.
8376
8377 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8378 to FILE * parameter, not to stderr. This fixes a typo introduced
8379 in the 2005-07-12 change.
8380
8381 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8382 warnings from GCC 4.
8383
8384 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8385 (yyglrShiftDefer, yysplitStack):
8386 Remove unused parameters b4_pure_formals. All uses changed.
8387 (yyglrShift): Remove unused parameters b4_user_formals.
8388 All uses changed.
8389 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8390
8391 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8392
8393 Destructor cleanups and regularization among the three skeletons.
8394 * NEWS: Document the behavior changes.
8395 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8396 stack before failing, as the cleanup code will do it for us now.
8397 * data/lalr1.cc (yyerrlab): Likewise.
8398 * data/glr.c (yyparse): Pop everything off the stack before
8399 freeing it, so that destructors get called properly.
8400 * data/lalr1.cc (yyreturn): Likewise.
8401 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8402 This is more consistent.
8403 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8404 why destructors might be called. 1.875 -> 2.1.
8405 (Destructor Decl, Decl Summary, Table of Symbols):
8406 Some English-language cleanups for %destructor.
8407 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8408 Add output line for destructor of start symbol.
8409 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8410 because of that same extra output line.
8411
8412 * NEWS: Document minor wording changes in diagnostics of
8413 Bison-generated parsers.
8414 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8415 Remove unused formals. All uses changed.
8416 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8417 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8418 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8419 Rename yyoverflowab to yyexhaustedlab.
8420 When memory exhaustion occurs during syntax-error reporting,
8421 report it separately rather than in a single diagnostic; this
8422 eases translation.
8423 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8424 (Memory Exhausted): Renamed from Parser Stack Overflow.
8425 Revamp wording slightly to prefer "memory exhaustion".
8426 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8427
8428 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8429
8430 Add i18n support to the GLR skeleton. Partially fix the C++
8431 skeleton; a C++ expert needs to finish this. Remove debugging
8432 msgids; there's little point to having them translated, since they
8433 can be understood only by someone who can read the
8434 (English-language) source code.
8435
8436 Generate runtime-po/bison-runtime.pot automatically, so that we
8437 don't have to worry about garbage getting in that file. We'll
8438 make sure after the next official release that old msgids don't
8439 get lost. See
8440 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8441
8442 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8443 Now auto-generated.
8444 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8445 Fix typos in explanations of the runtime file.
8446 * bootstrap: Change gettext keyword from YYI18N to YY_.
8447 Use standard Makefile.in.in in runtime-po, since we'll arrange
8448 for backward-compatible bison-runtime.po files in a different way.
8449 * data/glr.c (YY_): New macro, from yacc.c.
8450 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8451 Translate messages intended for users.
8452 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8453 the wording in the other skeletons. We don't know that the memory
8454 is virtual.
8455 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8456 Use same method that yacc.c uses.
8457 Don't translate debugging messages.
8458 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8459 it doesn't work (yet), and requires C++ expertise to fix.
8460 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8461 Move defn to a more logical place, to be consistent with other
8462 skeletons.
8463 Don't translate debugging messages.
8464 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8465 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8466 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8467 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8468
8469 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8470 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8471 void, not int.
8472 * tests/glr-regression.at (Badly Collapsed GLR States):
8473 Likewise.
8474 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8475 yylex should return 0 at EOF rather than aborting.
8476
8477 Improve tests for stack overflow in GLR parser.
8478 Problem reported by twlevo@xs4all.nl.
8479 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8480 All uses removed.
8481 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8482 can handle the problem.
8483 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8484 (yyparse): New local variable yyresult to record the result.
8485 Use result of setjmp to set it, rather than storing itinto
8486 struct.
8487 (yyDone): Remove label.
8488 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8489 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8490 if YYABORT is used).
8491 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8492 yyparse status; put status > 1 into diagnostic.
8493 Check that status==2 works.
8494 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8495 Use exit status 3 for failure to open (which shouldn't happen).
8496
8497 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8498
8499 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8500 1 on syntax error; just let yyparse do its thing.
8501 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8502 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8503 (Exploding the Stack Size with Alloca):
8504 (Exploding the Stack Size with Malloc):
8505 Expect exit status 2, not 1, since the parser is supposed to blow
8506 its stack. Problem reported by twlevo@xs4all.nl.
8507
8508 * data/glr.c (yyparse): Don't assume that the initial calls
8509 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8510 Print a stack-overflow message and fail instead.
8511 Initialize the line-number information before creating the stack,
8512 so that the stack-overflow message can report line zero safely.
8513
8514 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8515
8516 Fix problems reported by twlevo@xs4all.nl.
8517 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8518 (yyuserMerge): Provide a default case if b4_mergers is empty.
8519 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8520 * tests/glr-regression.at
8521 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8522 Add casts to pacify C++ compilers.
8523 * tests/glr-regression.at (Improper merging of GLR delayed action
8524 sets): Declare yylex before using it.
8525 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8526 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8527 test for valgrind; valgrind is independent of g++.
8528 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8529 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8530 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8531 Use a destructor, so that we can expand the stack. Change
8532 YYSTYPE to char * so that we can free it. Cast result of malloc.
8533
8534 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8535
8536 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8537 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8538
8539 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8540
8541 * PACKAGING: New file, suggested by Bruno Haible and taken from
8542 similar wording in gettext's PACKAGING file.
8543 * NEWS: Mention PACKAGING.
8544 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8545
8546 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8547
8548 * NEWS: Document recent i18n improvements.
8549 * bootstrap: Get runtime translations into runtime-po.
8550 Create runtime-po files automatically, if possible.
8551 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8552 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8553 does not infringe on the user's name space.
8554 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8555 * doc/bison.texinfo (Internationalization): Revamp the English
8556 and Texinfo syntax a bit, to try to make it clearer.
8557 (Bison Options, Option Cross Key): Mention --print-localedir.
8558 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8559 YYENABLE_NLS. Quote a bit more.
8560 * runtime-po/.cvsignore: New file.
8561 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8562 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8563 * runtime-po/quot.sed: Likewise.
8564 * runtime-po/boldquot.sed: Likewise.
8565 * runtime-po/en@quot.header: Likewise.
8566 * runtime-po/en@boldquot.header: Likewise.
8567 * runtime-po/insert-header.sin: Likewise.
8568 * runtime-po/remove-potcdate.sin: Likewise.
8569 * runtime-po/Makevars: Likewise.
8570 * runtime-po/LINGUAS: Likewise.
8571 * runtime-po/de.po: Likewise; we will rely on the translation project
8572 to maintain this, so "bootstrap" should get it.
8573 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8574 its value.
8575 * src/main.c (main): Bind the bison-runtime domain, too.
8576
8577 2005-07-12 Bruno Haible <bruno@clisp.org>
8578
8579 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8580 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8581 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8582 * runtime-po: New directory.
8583 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8584 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8585 * runtime-po/Rules-quot: New file, copied from po/.
8586 * runtime-po/quot.sed: Likewise.
8587 * runtime-po/boldquot.sed: Likewise.
8588 * runtime-po/en@quot.header: Likewise.
8589 * runtime-po/en@boldquot.header: Likewise.
8590 * runtime-po/insert-header.sin: Likewise.
8591 * runtime-po/remove-potcdate.sin: Likewise.
8592 * runtime-po/Makevars: New file.
8593 * runtime-po/POTFILES.in: New file.
8594 * runtime-po/LINGUAS: New file.
8595 * runtime-po/bison-runtime.pot: New file.
8596 * runtime-po/de.po: New file.
8597 * m4/bison.m4: New file.
8598 * Makefile.am (SUBDIRS): Add runtime-po.
8599 (aclocaldir, aclocal_DATA): New variables.
8600 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8601 Define aclocaldir.
8602 * src/getargs.c (usage): Document --print-localedir option.
8603 (PRINT_LOCALEDIR_OPTION): New enum item.
8604 (long_options): Add --print-localedir option.
8605 (getargs): Handle --print-localedir option.
8606 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8607 (Internationalization): New section.
8608
8609 2005-07-12 Akim Demaille <akim@epita.fr>
8610
8611 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8612 for consistency with the rest of the code.
8613 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8614 Add separators.
8615
8616 2005-07-12 Akim Demaille <akim@epita.fr>
8617
8618 * src/parse-gram.y: Use %printer instead of YYPRINT.
8619
8620 2005-07-12 Akim Demaille <akim@epita.fr>
8621
8622 * src/symtab.h, src/symtab.c (symbol_print): New.
8623 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8624 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8625
8626 2005-07-12 Akim Demaille <akim@epita.fr>
8627
8628 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8629 b4_at_dollar and b4_dollar_dollar.
8630
8631 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8632
8633 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8634 and Pennello's paper.
8635
8636 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8637
8638 * data/yacc.c (yyparse): Undo previous patch. Instead,
8639 set yylsp[0] and yyvsp[0] only if the initial action
8640 sets yylloc and yylval, respectively.
8641
8642 * data/yacc.c (yyparse): In the initial action, set
8643 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8644 This avoids the use of undefined variables if the initial
8645 action does not set yylloc and/or yylval.
8646
8647 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8648
8649 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8650 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8651 Remove from CVS. These files are automatically generated.
8652 * examples/extexi: Clarify that this file is now part of Bison,
8653 not GNU M4, and that it works with any POSIX-compatible Awk.
8654 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8655 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8656 so that we also get calc++-parser.yy. Geneate it.
8657 Use $(AWK), not gawk, since any conforming Awk will do.
8658 Put comment before action, since older 'make' can't handle comment
8659 in action.
8660 $(BUILT_SOURCES): List all built sources, not just some of them.
8661 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8662 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8663 $($(calc_sources_generated)): Remove unnecessary test for existence
8664 of target. (This had a shell syntax error anyway; a stray "x".)
8665 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8666 calc++-parser.yy.
8667 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8668
8669 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8670 implied by the other modules.
8671
8672 2005-07-06 Akim Demaille <akim@epita.fr>
8673
8674 Bind examples/calc++ to the package.
8675 * examples/calc++/Makefile: Remove, replaced by...
8676 * examples/calc++/Makefile.am: ... this new file.
8677 * examples/calc++/test: Remove input.
8678 * examples/calc++/compile: Remove.
8679 * examples/Makefile.am: New.
8680 * configure.ac, Makefile.am: Adjust.
8681 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8682
8683 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8684
8685 * data/glr.c (yyFail): Drastically simplify; since the format argument
8686 never had any % directives, we can simply pass it to yyerror.
8687 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8688 be modified later, as that is the usual style in glr.c.
8689 Problems reported by Paul Hilfinger.
8690
8691 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8692 and size overflow errors.
8693 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8694 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8695 (YYSIZEMAX): New macro.
8696 (yystpcpy): New function, taken from yacc.c.
8697 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8698 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8699 so that we don't have to maintain their signatures.
8700 (yyFail): Check for buffer overflow, by using vsnprintf rather
8701 than vsprintf. Allocate a bigger buffer if possible.
8702 Report an error if buffer allocation fails.
8703 (yyStackOverflow): New function.
8704 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8705 the initialization was successful. It might fail if storage was
8706 exhausted.
8707 (yyexpandGLRStack): Add more checks for storage allocation failure.
8708 Use yyStackOverflow to report failures.
8709 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8710 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8711 Don't assume stack number fits in int.
8712 (yysplitStack): Check for storage allocation failure.
8713 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8714 can print diagnostics on storage allocation failure. All callers
8715 changed.
8716 (yyresolveValue): Use yybool for boolean.
8717 (yyreportSyntaxError): Check for size-calculation overflow.
8718 This code is taken from yacc.c.
8719 (yyparse): Check for storage allocation errors when allocating
8720 the initial stack.
8721
8722 2005-07-05 Akim Demaille <akim@epita.fr>
8723
8724 Extract calc++ from the documentation.
8725 * doc/bison.texinfo (Calc++): Add the extraction marks.
8726 * examples/extexi: New, from the aborted GNU Programming 2E.
8727 Separate the different paragraph of a file with empty lines.
8728 * examples/Makefile: Use it to extract the whole calc++ example.
8729
8730 2005-06-24 Akim Demaille <akim@epita.fr>
8731
8732 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8733 class typedefs.
8734
8735 2005-06-22 Akim Demaille <akim@epita.fr>
8736
8737 * doc/bison.texinfo (C++ Language Interface): First stab.
8738 (C++ Parsers): Remove.
8739
8740 2005-06-22 Akim Demaille <akim@epita.fr>
8741
8742 * data/lalr1.cc (yylex_): Honor %lex-param.
8743
8744 2005-06-22 Akim Demaille <akim@epita.fr>
8745
8746 Start a set of simple examples.
8747 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8748 * examples/calc++/calc++-driver.hh,
8749 * examples/calc++/calc++-parser.yy,
8750 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8751 * examples/calc++/compile, examples/calc++/test: New.
8752
8753 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8754
8755 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8756 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8757 which stems from the 2005-05-27 patch.
8758
8759 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8760
8761 * data/glr.c: Modify treatment of unused parameters to permit use
8762 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8763
8764 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8765
8766 Fix infringement on user name space reported by Janos Zoltan Szabo.
8767 * data/yacc.c (yyparse): strlen -> yystrlen.
8768
8769 2005-05-30 Akim Demaille <akim@epita.fr>
8770
8771 * data/lalr1.cc (_): New.
8772 Translate the various messages.
8773
8774 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8775
8776 Fix infringement on user name space reported by Bruno Haible.
8777 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8778 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8779 the user's name space.
8780 (alloca): Include <stdlib.h> to get it, if it's not built in.
8781 (YYMALLOC, YYFREE): Define only if needed.
8782 (malloc, free): Declare, but only if needed, as this infringes on
8783 the user name space.
8784
8785 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8786
8787 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8788 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8789 with %d format.
8790 * lib/ebitset.c (min, max): Undef before defining.
8791 * lib/vbitset.c (min, max): Likewise.
8792 * lib/subpipe.c (create_subpipe): Save local variables in case
8793 vfork clobbers them.
8794
8795 2005-05-24 Bruno Haible <bruno@clisp.org>
8796
8797 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8798 error message syntax used by gcc-4.0.
8799
8800 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8801
8802 * README: Mention m4 1.4.3. Remove obsolete advice about
8803 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8804
8805 * bootstrap: Remove workaround for problem I encountered with
8806 gettext 0.14.1; it seems to be fixed now.
8807
8808 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8809
8810 * NEWS: Version 2.0a.
8811
8812 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8813 the previous change.
8814
8815 Various maintainer cleanups.
8816 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8817 conftest*, for benefit of CVS commands run at the same time as
8818 "configure". Add build-aux, since "bootstrap" now creates it and
8819 its subfiles.
8820 * Makefile.cfg (move_if_change): Remove.
8821 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8822 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8823 (po_repo, do-po-update, po-update, wget_files, get-targets):
8824 (config.guess-url_prefix, config.sub-url_prefix):
8825 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8826 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8827 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8828 Remove.
8829 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8830 this is now the recommended name.
8831 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8832 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8833 ylwrap. These files now go into build-aux.
8834 * config/move-if-change: Remove.
8835 * config/prev-version.txt: Bump from 1.75 to 2.0.
8836
8837 * bootstrap: Add stdio-safer, unistd-safer modules.
8838 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8839 we don't need it).
8840 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8841 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8842 * lib/subpipe.c: Include "unistd-safer.h".
8843 (create_subpipe): Make sure all the newly-created
8844 file descriptors are > 2, so that diagnostics don't
8845 get sent down them (which might cause Bison to hang, in theory).
8846 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8847 * src/files.c (xfopen): Use fopen_safer, not fopen.
8848
8849 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8850 yesterday's yacc.c fix.
8851
8852 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8853
8854 * data/glr.c, data/lalr1.cc: Update copyright date.
8855
8856 Fix a destructor bug reported by Wolfgang Spraul in
8857 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8858 * data/yacc.c (yyabortlab): Don't call destructor, and
8859 don't set yychar to EMPTY.
8860 (yyoverflowlab): Don't call destructor.
8861 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8862 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8863 since we no longer output the message "discarding lookahead token
8864 end of input ()".
8865
8866 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8867
8868 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8869 fix a small glitch in debugging output.
8870 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8871 after YY_SYMBOL_PRINT where needed.
8872
8873 (struct yyGLRState): Add some comments.
8874 (struct yySemanticOption): Add some comments.
8875 (union yyGLRStackItem): Add comment.
8876
8877 (yymergeOptionSets): Correct this to properly perform the union,
8878 avoiding infinite reported by Michael Rosien.
8879 Update comment.
8880
8881 * tests/glr-regression.at: Add test for GLR merging error reported
8882 by M. Rosien.
8883
8884 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8885
8886 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8887 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8888 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8889 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8890 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8891 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8892 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8893 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8894 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8895 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8896 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8897 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8898 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8899 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8900 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8901 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8902 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8903 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8904 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8905 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8906 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8907 src/output.h, src/parse-gram.c, src/parse-gram.h,
8908 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8909 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8910 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8911 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8912 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8913 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8914 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8915 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8916 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8917 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8918 tests/reduce.at, tests/regression.at, tests/sets.at,
8919 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8920 Update FSF postal mail address.
8921
8922 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8923
8924 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8925 Problem reported by Ralf Menzel.
8926
8927 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8928
8929 * tests/actions.at: Test that stack overflow invokes destructors.
8930 From Marcus Holland-Moritz.
8931 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8932 from here....
8933 (yyreturn): to here. That way, destructors are called properly
8934 even if the stack overflows, or the user calls YYACCEPT or
8935 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8936 (yyoverflowlab): Destroy the lookahead.
8937
8938 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8939
8940 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8941
8942 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8943
8944 * NEWS: Bison-generated C parsers no longer quote literal strings
8945 associated with tokens.
8946 * src/output.c (prepare_symbols): Don't escape strings,
8947 since users don't want to see C escapes.
8948 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8949 in diagnostics.
8950 * tests/input.at (Torturing the Scanner): Likewise.
8951 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8952
8953 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8954
8955 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8956 the data size is known to be too small and we can't increase it.
8957 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8958
8959 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8960
8961 * src/parse-gram.y: Include quotearg.h.
8962 (string_as_id): Quote $1 before using it as a key, since the
8963 lexer no longer quotes it for us.
8964 (string_content): Don't strip quotes, since lexer no longer
8965 quotes it for us.
8966 * src/scan-gram.l: Include quotearg.h.
8967 ("\""): Omit quote.
8968 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8969 a key, since the rest of the lexer doesn't quote it.
8970 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8971 * tests/regression.at (Token definitions): Check for backslashes
8972 in token strings.
8973
8974 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8975 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8976 (yyparse): Revamp code to generate long syntax error message, to
8977 make it easier to translate, and to avoid problems with arithmetic
8978 overflow. Change "virtual memory" to "memory" in diagnostic, since
8979 we don't know whether the memory is virtual.
8980
8981 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8982
8983 * NEWS: Bison-generated C parsers now use the _ macro to
8984 translate strings.
8985 * data/yacc.c (_) [!defined _]: New macro.
8986 All English strings wrapped inside this macro.
8987 * doc/bison.texinfo (Bison Parser): Document _.
8988 * po/POTFILES.in: Include src/parse-gram.c, since it now
8989 includes translateable strings that parse-gram.y doesn't.
8990
8991 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8992
8993 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8994 reverting the 2004-10-11 change to this function.
8995 (symbol_check_alias_consistency): Don't call symbol_type_set
8996 if the type name is already correct.
8997 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8998
8999 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9000
9001 * tests/regression.at (Token definitions): Don't use a token named
9002 c, as that generates a "#define c ..." that runs afoul of buggy
9003 stdlib.h that uses the identifier c as a member of struct
9004 drand48_data. Problem reported by Horst Wente.
9005
9006 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9007
9008 * bootstrap: Change translation URL from
9009 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9010 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9011 redirection glitches. Problem reported by twlevo@xs4all.nl.
9012
9013 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9014
9015 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9016 after operands; POSIX says this isn't portable for the c99 command.
9017
9018 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9019
9020 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9021 immediately if a data overrun has occurred; this may help us track
9022 down what may be a spurious failure on MacOS.
9023
9024 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9025
9026 Respond to problems reported by twlevo@xs4all.nl.
9027
9028 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9029
9030 * src/vcg.h: Comment fix.
9031 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9032 (G_CMAX): Change to -1 instead of INT_MAX.
9033
9034 * data/yacc.c (yyparse): Omit spaces before #line.
9035
9036 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9037
9038 * src/tables.c (state_number_to_vector_number): Put it inside an
9039 "#if 0", since it's not currently used. Problem reported by
9040 Roland McGrath.
9041
9042 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9043
9044 * src/output.c (escaped_output): Renamed from
9045 escaped_file_name_output, since we now use it for symbol tags as
9046 well. All uses changed.
9047 (symbol_destructors_output, symbol_printers_output):
9048 Escape symbol tags too.
9049 Problem reported by Matyas Forstner in
9050 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9051
9052 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9053 not needed.
9054 * src/output.c (user_actions_output, token_definitions_output,
9055 symbol_destructors_output, symbol_printers_output): Likewise.
9056 * src/reader.c (prologue_augment): Likewise.
9057 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9058
9059 * src/vcg.c (output_edge): Don't quote linestyle arg.
9060 Problem reported by twlevo@xs4all.nl.
9061
9062 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9063
9064 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9065 example, reported by Derek M Jones. Also, make the example even
9066 more outrageous, to better illustrate how bad the problem is.
9067
9068 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9069
9070 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9071 putsym. Typo reported by Sebastian Piping.
9072
9073 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9074
9075 * doc/bison.texinfo (Language and Grammar): some -> same
9076 (Epilogue): int he -> in the
9077 Typos reported by Sebastian Piping via Justin Pence.
9078
9079 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9080
9081 * tests/glr-regression.at (Improper handling of embedded actions
9082 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9083 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9084 with dollar signs in test names.
9085 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9086 for a similar reason.
9087
9088 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9089
9090 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9091 wants to redefine G_VIEW.
9092
9093 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9094
9095 * src/vcg.c (get_view_str): Remove case for normal_view.
9096 Problem reported by twlevo@xs4all.nl.
9097
9098 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9099
9100 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9101 Problem reported by twlevo@xs4all.nl.
9102
9103 * doc/bison.texinfo: Change @dircategory from "GNU programming
9104 tools" to "Software development". Requested by Richard Stallman
9105 via Karl Berry.
9106
9107 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9108
9109 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9110 Problem reported by twlevo@xs4all.nl.
9111
9112 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9113
9114 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9115 keyword; it's not needed with modern compilers, and it doesn't
9116 affect correctness with older compilers. Suggested by
9117 twlevo@xs4all.nl.
9118
9119 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9120
9121 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9122 gcc -Wswitch-default.
9123 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9124 * data/yacc.c (yyparse): Likewise.
9125
9126 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9127
9128 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9129 already. Let config.h define any nonstandard values.
9130
9131 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9132
9133 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9134 for the benefit of slower hosts. Problem reported by
9135 Nelson H. F. Beebe.
9136
9137 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9138
9139 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9140 being defined and not used.
9141 * data/lalr1.cc (yyparse): Likewise.
9142 Use "if (false)" rather than "if (0)".
9143
9144 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9145
9146 * TODO: Mention that we should allow NUL bytes in tokens.
9147
9148 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9149
9150 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9151 Problem reported by Hans Aberg.
9152
9153 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9154
9155 * src/getargs.c (version): Happy new year; update overall
9156 program copyright date from 2004 to 2005.
9157
9158 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9159 Problem reported by Hans Aberg.
9160 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9161 (Output file names.): Add a test for the case when standard output
9162 is closed.
9163
9164 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9165
9166 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9167 to fix an oversight in the Bison 2.0 manual.
9168
9169 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9170
9171 * NEWS: Version 2.0. Reformat the existing news items since
9172 1.875, so that related items are grouped together.
9173 * configure.ac (AC_INIT): Bump version to 2.0.
9174 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9175
9176 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9177 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9178 otherwise, we're not testing alloca. Unfortunately there's no
9179 simple way to consult HAVE_ALLOCA here.
9180
9181 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9182 for yymsg, too.
9183
9184 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9185 hand. This avoids a warning about comparing int to size_t when
9186 GCC warnings are enabled.
9187
9188 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9189
9190 * NEWS: Bison-generated parsers no longer default to using the
9191 alloca function (when available) to extend the parser stack, due
9192 to widespread problems in unchecked stack-overflow detection.
9193 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9194 responsibility to set it to a positive value. This lets the user
9195 specify a value that is not a preprocessor constant.
9196 * data/yacc.c (YYMAXDEPTH): Likewise.
9197 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9198 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9199 to be a compile-time constant. However, explain the constraints on it.
9200 Also, explain the constraints on YYINITDEPTH.
9201 (Table of Symbols): Explain that alloca is no longer the default.
9202 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9203 to 1.
9204
9205 * doc/bison.texinfo (Location Default Action): Mention that n must
9206 be zero when k is zero. Suggested by Frank Heckenbach.
9207
9208 2004-12-22 Akim Demaille <akim@epita.fr>
9209
9210 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9211 (parser::state_type, parser::semantic_type, parser::location_type):
9212 Private, not public.
9213 (parser::parse): Return ints, not bool.
9214 Returning a bool introduces a problem: 0 corresponds to false, and
9215 it seems weird to return false on success. Returning true changes
9216 the conventions for yyparse.
9217 Alternatively we could return void and send an exception.
9218 There is no clear consensus (yet?).
9219 (state_stack, semantic_stack, location_stack): Rename as...
9220 (state_stack_type, semantic_stack_type, location_stack_type): these.
9221 Private, not public.
9222 * tests/c++.at: New.
9223 * tests/testsuite.at, tests/Makefile.am: Adjust.
9224
9225 2004-12-21 Akim Demaille <akim@epita.fr>
9226
9227 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9228
9229 2004-12-21 Akim Demaille <akim@epita.fr>
9230
9231 Don't impose std::string for filenames.
9232
9233 * data/lalr1.cc (b4_filename_type): New.
9234 (position::filename): Use it.
9235 (parser.hh): Move the inclusion of stack.hh and location.hh below
9236 the user code, so that needed headers for the filename type can be
9237 included first.
9238 Forward declare them before the user code.
9239 * tests/Makefile.am (check-local, installcheck-local): Pass
9240 TESTSUITEFLAGS to the TESTSUITE.
9241
9242 2004-12-20 Akim Demaille <akim@epita.fr>
9243
9244 Use more STL like names: my_class instead of MyClass.
9245
9246 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9247 (SemanticStack, SemanticType, StateStack, StateType)
9248 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9249 (Parser::value): Rename as...
9250 (location_stack, location_type, rhs_number_type, semantic_stack)
9251 (semantic_type, state_stack, state_type, token_number_type, stack)
9252 (slice, traits, parser::yylloc, parser::yylval): these.
9253
9254 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9255
9256 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9257
9258 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9259 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9260
9261 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9262
9263 Remove uses of 'short int' and 'unsigned short int'. This raises
9264 some arbitrary limits. It uses more memory but nowadays that's
9265 not much of an issue.
9266
9267 This change does not affect the generated parsers; that's a different
9268 task, as some users will want to conserve memory there.
9269
9270 Ideally we should use size_t to represent all object counts, and
9271 something like ptrdiff_t to represent signed differences of object
9272 counts; but that will require more code-cleanup than I have the
9273 time to do right now.
9274
9275 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9276 Use size_t, not int or short int, to count objects.
9277 * src/closure.c (nritemset, closure): Likewise.
9278 * src/closure.h (nritemset, closure): Likewise.
9279 * src/nullable.c (nullable_compute): Likewise.
9280 * src/print.c (print_core): Likewise.
9281 * src/print_graph.c (print_core): Likewise.
9282 * src/state.c (state_compare, state_hash): Likewise.
9283 * src/state.h (struct state): Likewise.
9284 * src/tables.c (default_goto, goto_actions): Likewise.
9285
9286 * src/gram.h (rule_number, rule): Use int, not short int.
9287 * src/output.c (prepare_rules): Likewise.
9288 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9289 errs, reductions): Likewise.
9290 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9291 Likewise.
9292 * src/tables.c (vector_number, tally, action_number,
9293 ACTION_NUMBER_MINIMUM): Likewise.
9294 * src/output.c (muscle_insert_short_int_table): Remove.
9295
9296 2004-12-17 Akim Demaille <akim@epita.fr>
9297
9298 * data/lalr1.cc: Extensive Doxygenation.
9299 (error_): Rename as...
9300 (error): this, since it is visible to the user.
9301 Adjust callers.
9302 (Parser::message): Now an automatic variable from...
9303 (Parser::yyreport_syntax_error_): here.
9304 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9305 Parser::error.
9306 * tests/input.at: Escape $.
9307
9308 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9309
9310 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9311 Parenthesize rhs to avoid obscure problems with mistakes like
9312 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9313 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9314 b4_rhs_location): Likewise.
9315 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9316 b4_rhs_location): Likewise.
9317
9318 2004-12-16 Akim Demaille <akim@epita.fr>
9319
9320 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9321 yacc.c: be sure to stay within yycheck_.
9322 * tests/actions.at: Re-enable C++ tests.
9323
9324 2004-12-16 Akim Demaille <akim@epita.fr>
9325
9326 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9327 real.
9328
9329 2004-12-16 Akim Demaille <akim@epita.fr>
9330
9331 Use #define to handle the %name-prefix.
9332
9333 * data/glr.c, data/yacc.c: Comment changes.
9334 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9335 so that one can refer to yylex in the parser file, and have it
9336 renamed, as is the case with other skeletons.
9337
9338 2004-12-16 Akim Demaille <akim@epita.fr>
9339
9340 Move lalr1.cc internals into yy*.
9341
9342 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9343 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9344 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9345 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9346 (empty_, final_, terror_, errcode_, ntokens_)
9347 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9348 (looka_, ilooka_, error_range_, nerrs_):
9349 Rename as...
9350 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9351 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9352 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9353 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9354 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9355 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9356 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9357 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9358 these.
9359
9360 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9361
9362 Fix some problems reported by twlevo at xs4all.
9363 * src/symtab.c (symbol_new): Report an error if the input grammar
9364 contains too many symbols. This is better than calling abort() later.
9365 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9366 (struct node, struct graph):
9367 Rename member expand to stretch. All uses changed.
9368 (struct graph): Remove member layoutalgorithm. All uses removed.
9369 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9370 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9371 All uses changed.
9372 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9373
9374 2004-12-15 Akim Demaille <akim@epita.fr>
9375
9376 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9377 Add more Doxygen comments.
9378 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9379 (report_syntax_error_, translate_): Rename as...
9380 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9381 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9382
9383 2004-12-15 Akim Demaille <akim@epita.fr>
9384
9385 * data/lalr1.cc (lex_): Rename as...
9386 (yylex_): this.
9387 Move the trace here.
9388 Take the %name-prefix into account.
9389 Reported by Alexandre Duret-Lutz.
9390
9391 2004-12-15 Akim Demaille <akim@epita.fr>
9392
9393 Simplify the C++ parser constructor.
9394
9395 * data/lalr1.cc (debug_): Rename as...
9396 (yydebug_): so that the parser's internals are always in the yy*
9397 pseudo namespace.
9398 Adjust uses.
9399 (b4_parse_param_decl): Remove the leading comma as it is now only
9400 called as unique argument list.
9401 (Parser::Parser): Remove the constructor accepting a location and
9402 an initial debugging level.
9403 Remove from the other ctor the argument for the debugging level.
9404 (debug_level_type, debug_level, set_debug_level): New.
9405
9406 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9407 constructor calls.
9408
9409 2004-12-15 Akim Demaille <akim@epita.fr>
9410
9411 Remove b4_root related material: failure experiment
9412 (which goal was to allow to derive from a class).
9413
9414 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9415 definitions and uses.
9416
9417 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9418
9419 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9420 not 2, since it's not portable to subtract 1 from the start of an
9421 array. The new item 0 is never set or used. All uses changed.
9422
9423 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9424 the default definition of YYLLOC_DEFAULT. Problem reported
9425 by Frank Heckenbach.
9426
9427 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9428
9429 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9430 the normal case and one for the error case. Just use the
9431 first one uniformly. Problem reported by Frank Heckenbach.
9432 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9433 use exactly the same macro in both places.
9434 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9435 so that the normal-case YYRHSLOC works for the error case too.
9436 All uses changed.
9437 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9438 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9439 * doc/bison.texinfo (Location Default Action): Don't claim that
9440 we have an array of locations. Use the same macro for both glr
9441 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9442 the index is 0.
9443
9444 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9445
9446 * HACKING: Update email addresses to send announcements to.
9447
9448 * configure.ac (AC_INIT): Bump version to 1.875f.
9449
9450 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9451
9452 * NEWS: Version 1.875e.
9453 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9454
9455 * src/scan-skel.l: Include "complain.h", for "fatal".
9456
9457 * src/relation.h (relation_print, relation_digraph):
9458 Relation sizes are of type relation_node, not size_t (this is
9459 merely a doc fix, since the two types are equivalent).
9460 (relation_transpose): Relation sizes are of type relation_node,
9461 not int.
9462 * src/relation.c: Likewise.
9463 (top, infinity): Now of type relation_node, not int.
9464 (traverse, relation_transpose): Use relation_node, not int.
9465
9466 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9467 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9468 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9469
9470 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9471 specifying whether the test should be skipped. Use it tp
9472 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9473 fail on some hosts, and should be skipped.
9474
9475 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9476
9477 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9478 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9479 unless otherwise specified below.
9480
9481 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9482 to allocate kernel_base, kernel_items, kernel_size, since
9483 they needn't be initialized to 0.
9484 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9485 * src/closure.c (new_closure): Likewise, for itemset.
9486 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9487 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9488 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9489 (build_relations): Likewise for edge, states1, includes.
9490 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9491 * src/reader.c (packgram): Likewise, for ritem, rules.
9492 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9493 * src/relation.c (relation_digraph): Likewise for VERTICES.
9494 (relation_transpose): Likewise for new_R, end_R.
9495 * src/symtab.c (symbols_token_translations_init): Likewise for
9496 token_translations.
9497 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9498 (token_actions): Likewise for yydefact, actrow, conflrow,
9499 conflict_list.
9500 (save_column): Likewise for froms[symno], tos[symno].
9501 (goto_actions): Likewise for state_count.
9502 (pack_table): Likewise for base, pos, check.
9503 (tables_generate): Likewise for width.
9504
9505 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9506 for initial core. Just have a separate core, so we needn't worry
9507 about whether kernel_size and kernel_base are initialized.
9508
9509 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9510 kernel_size, kernel_items): Remove unnecessary initialization.
9511 * src/conflicts.c (conflicts): Likewise.
9512 * src/derives.c (derives): Likewise.
9513 * src/muscle_tablc (muscle_insert): Likewise.
9514 * src/relation.c (relation_digraph): Likewise.
9515 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9516 conflrow, conflict_table, conflict_list, table, check):
9517 Likewise.
9518
9519 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9520 This is because all callers pass unsigned int.
9521 * src/closure.h (new_closure): Likewise.
9522
9523 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9524 (build_relations): Initialize includes[i] in all cases.
9525 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9526 and rules[ruleno].precsym. Initialize members in order.
9527 * src/relation.c (relation_transpose): Always initialize new_R[i]
9528 and end_R[i].
9529 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9530
9531 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9532 conflict_list[0] was always 0, but now it isn't initialized.
9533
9534 * src/table.c (table_grow): When conflict_table grew, the grown
9535 area wasn't cleared. Fix this.
9536
9537 * lib/.cvsignore: Add strdup.c, strdup.h.
9538 * m4/.cvsignore: Add strdup.m4.
9539
9540 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9541
9542 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9543 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9544 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9545 ngotos + 1 without checking for overflow.
9546 (build_relations): Use END_NODE, not -1, to denote end of edges.
9547 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9548 build_relations): Use goto_number, not int, for goto numbers.
9549 * src/tables.c (save_column, default_goto): Likewise.
9550
9551 2004-11-23 Akim Demaille <akim@epita.fr>
9552
9553 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9554 of #defining from yystype.
9555 Don't typedef yystype, C++ does not need it.
9556 This lets it possible to forward declare it as union.
9557
9558 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9559
9560 * bootstrap (gnulib_modules): Add extensions.
9561 Problem reported by Jim Meyering.
9562
9563 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9564
9565 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9566 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9567 src/system.h, src/tables.c: XFREE -> free, to accommodate
9568 recent change to gnulib xalloc.h.
9569 Problem reported by Jim Meyering.
9570
9571 2004-11-17 Akim Demaille <akim@epita.fr>
9572
9573 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9574
9575 2004-11-17 Akim Demaille <akim@epita.fr>,
9576 Alexandre Duret-Lutz <adl@gnu.org>
9577
9578 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9579 changes.
9580 (YYCDEBUG): Adjust.
9581 Use it instead of cdebug_.
9582 (Parser::debug_stream, Parser::set_debug_stream): New.
9583 (Parser::symprint_): Define cdebug_ for temporary backward
9584 compatibility.
9585 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9586 debug_stream ().
9587
9588 2004-11-17 Akim Demaille <akim@epita.fr>
9589
9590 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9591 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9592 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9593 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9594
9595 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9596
9597 * data/glr.c (yyloc_default): Remove; not used.
9598 Problem reported by Frank Heckenbach.
9599
9600 2004-10-25 Akim Demaille <akim@epita.fr>
9601
9602 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9603 Introduce another definition to address simple location arrays.
9604 (yyGLRStack): New member: yyerror_range.
9605 (yyrecoverSyntaxError, yyparse): Update it.
9606 (yyrecoverSyntaxError): Use it when shifting the error token to
9607 have an accurate range, equivalent to the one computed by both
9608 yacc.c and lalr1.cc.
9609 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9610 that column numbers start at column 0, as per GNU Coding
9611 Standards, the others tests, and the doc.
9612 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9613 Adjust to the above change (first column is 0).
9614 And adjust the location of the "<error>", now covering the whole
9615 line.
9616
9617 2004-10-22 Akim Demaille <akim@epita.fr>
9618 and Paul Eggert <eggert@cs.ucla.edu>
9619
9620 Remove some arbitrary limits on goto numbers and relations.
9621 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9622 initial values, since they're never used.
9623 (set_goto_map): ngotos is now unsigned, so test for overflow
9624 by seeing whether it wraps around to zero.
9625 * src/lalr.h (goto_number): Now size_t, not short int.
9626 (GOTO_NUMBER_MAXIMUM): Remove.
9627 * src/relation.c (relation_print, traverse, relation_transpose):
9628 Check for END_NODE rather than looking at sign.
9629 * src/relation.h (END_NODE): New macro.
9630 (relation_node): Now size_t, not short int.
9631
9632 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9633
9634 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9635 keyword, not an identifier. Problem reported by Baron Schwartz in
9636 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9637
9638 2004-10-11 Akim Demaille <akim@epita.fr>
9639
9640 * src/symtab.c (symbol_check_alias_consistency): Also check
9641 type names, destructors, and printers.
9642 Reported by Alexandre Duret-Lutz.
9643 Recode the handling of associativity and precedence in terms
9644 of symbol_precedence_set.
9645 Accept no redeclaration at all, not even equal to the previous
9646 value.
9647 (redeclaration): New.
9648 Use it to factor redeclaration complaints.
9649 (symbol_make_alias): Don't set the type of the alias, let
9650 symbol_check_alias_consistency do it as for other features.
9651 * src/symtab.h (symbol): Add new member prec_location, and
9652 type_location.
9653 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9654 * tests/input.at (Incompatible Aliases): New.
9655
9656 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9657
9658 .cvsignore fixes to accommodate gnulib changes,
9659 and the practice of naming build directories "_build".
9660 * .cvsignore: Add "_*". Sort.
9661 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9662 * m4/.cvsignore: Add "*_gl.m4".
9663
9664 2004-10-06 Akim Demaille <akim@epita.fr>
9665
9666 * src/parse-gram.y (add_param): Fix the truncation of trailing
9667 spaces.
9668
9669 2004-10-05 Akim Demaille <akim@epita.fr>
9670
9671 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9672 whether the reducion was empty or not. This leaves room to
9673 improve the use of YYLLOC_DEFAULT in such a case.
9674 lalr1.cc is still experimental, so changing this is acceptable.
9675 And finally, there are probably not many users who changed the
9676 handling of locations in GLR, so changing is admissible too.
9677
9678 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9679 empty reduction, set @$ to an empty location ending the previously
9680 stacked symbol.
9681 Adjust uses to make sure the code is triggered on empty
9682 reductions.
9683 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9684 expected output: empty reductions have empty locations.
9685
9686 2004-09-29 Akim Demaille <akim@epita.fr>
9687
9688 * data/lalr1.cc: Move towards a more standard C++ coding style
9689 for templates: Class < T > -> Class<T>.
9690
9691 2004-09-29 Akim Demaille <akim@epita.fr>
9692
9693 * data/lalr1.cc: Reinstall the former ctor, for sake of
9694 compatibility, but warn it will be removed.
9695 Move towards a more standard C++ coding style (i.e., type *var ->
9696 type* var).
9697
9698 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9699
9700 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9701 since it's less likely to work if NULs are involved in the future.
9702
9703 2004-09-27 Akim Demaille <akim@epita.fr>
9704
9705 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9706
9707 2004-09-27 Akim Demaille <akim@epita.fr>
9708
9709 * data/lalr1.cc (b4_parse_param_decl_1): New.
9710 (b4_parse_param_decl): Use it to have different names between attribute
9711 and argument names.
9712 (b4_cc_constructor_call): Likewise.
9713
9714 2004-09-24 Akim Demaille <akim@epita.fr>
9715
9716 * src/parse-gram.y (add_param): Strip the leading and trailing
9717 blanks from a formal argument declaration.
9718 (YY_LOCATION_PRINT): New.
9719
9720 2004-09-24 Akim Demaille <akim@epita.fr>
9721
9722 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9723 after the location.
9724
9725 2004-09-24 Akim Demaille <akim@epita.fr>
9726
9727 * doc/bison.texinfo (Table of Symbols): Sort.
9728
9729 2004-09-21 Akim Demaille <akim@epita.fr>
9730
9731 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9732 the useless parentheses.
9733 Suggested by Paul Eggert.
9734
9735 2004-09-20 Akim Demaille <akim@epita.fr>
9736
9737 Let the initial-action act on the look-ahead, and use it for the
9738 "initial push" (corresponding to an hypothetical beginning-of-file).
9739 And let lalr1.cc honor %initial-action.
9740
9741 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9742 example.
9743 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9744 (Parser::Parser): Remove the ctor that used to initialize it.
9745 (Parser::parse): Like in the other skeletons, issue the "starting
9746 parse" message before any action.
9747 Honor %initial-action.
9748 Initialize the stacks with the lookahead.
9749 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9750 look-ahead.
9751 Push them in the stacks.
9752 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9753
9754 2004-09-20 Akim Demaille <akim@epita.fr>
9755
9756 * doc/bison.texinfo (Initial Action Decl): New.
9757
9758 2004-09-20 Akim Demaille <akim@epita.fr>
9759
9760 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9761 clearer criterion to define it.
9762 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9763 When reducing on an empty RHS, use the latest stacked location as
9764 location.
9765 yylloc is not always available.
9766 * data/glr.c: Likewise.
9767 Also, honor initial-actions.
9768
9769 2004-09-20 Akim Demaille <akim@epita.fr>
9770
9771 * data/yacc.c (YY_LOCATION_PRINT): New.
9772 Define when we know YYLTYPE's structure, i.e., when the default
9773 YYLLOC_DEFAULT is used.
9774 * data/c.m4 (b4_yysymprint_generate): Use it.
9775 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9776 value of the result.
9777 (error_start_): Replace with...
9778 (error_range_): this location array.
9779 This allows to replace code relying on the implementation of
9780 locations by portable code.
9781 * data/yacc.c (yylerrsp): Replace with...
9782 (yyerror_range): this.
9783 Every time a token is popped, update yyerror_range[0], to have an
9784 accurate location for the error token.
9785 * data/glr.c (YY_LOCATION_PRINT): New.
9786 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9787 deference a pointer.
9788 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9789 report the location in %printers.
9790
9791 * src/scan-skel.l: Instead of abort, report error messages to ease
9792 understanding skeleton scanning failures.
9793
9794 2004-09-16 Akim Demaille <akim@epita.fr>
9795
9796 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9797 (iterator, const_iterator): these, to be more in the C++ spirit.
9798 Also, return reverse iterators so that when displaying the stack
9799 we display its bottom first.
9800 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9801 from yacc.c.
9802 We should probably use vector here though.
9803
9804 2004-09-16 Akim Demaille <akim@epita.fr>
9805
9806 Have more complete shift traces.
9807
9808 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9809 to report Shifts instead of ad hoc YYDPRINTF invocations,
9810 including for the error token.
9811 * data/lalr1.cc (symprint_): Output the location.
9812 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9813 output the location within the %printer.
9814 Activate GLR tests, at least to make sure they compile properly.
9815 They still don't pass though.
9816 * tests/calc.at: Adjust expect verbose output, since now "Entering
9817 state..." is on a different line than the "Shifting" message.
9818
9819 2004-09-08 Akim Demaille <akim@epita.fr>
9820
9821 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9822 Bison directive from the Bison file to the invocation of this
9823 macro, so that these directives are passed to
9824 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9825 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9826 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9827 the extra Bison directives instead of the whole series.
9828 Change the grammar so that there are recoverable errors, and
9829 unrecoverable errors. Now we can have the parser give up before
9830 consuming the whole input. As a result we now can observe that
9831 the lookahead is freed when needed.
9832 Change the parser source to parse argv[1] instead of a hard coded
9833 string.
9834 Simplify yylex, and give a value and location to EOF.
9835 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9836 passed directives already coded in the file.
9837 Add some tests to check the location of "error".
9838 For some tests, the C++ parser is correct, and not yacc.c.
9839 For other tests, they provide different, but unsatisfying, values,
9840 so keep the C++ value so that at least one parser is "correct"
9841 according to the test suite.
9842 (Actions after errors): Remove, this is subsumed by the
9843 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9844
9845 2004-09-06 Akim Demaille <akim@epita.fr>
9846
9847 * data/lalr1.cc: Adjust the indentation of the labels.
9848 (Parser::pop): New.
9849 Use it.
9850
9851 2004-09-06 Akim Demaille <akim@epita.fr>
9852
9853 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9854 argument, an informative message.
9855 Call YY_SYMBOL_PRINT.
9856 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9857 * data/lalr1.cc (destruct_): Likewise.
9858 In addition, no longer depend on b4_yysymprint_generate and
9859 b4_yydestruct_generate to generate these functions, do it "by
9860 hand".
9861
9862 2004-09-03 Akim Demaille <akim@epita.fr>
9863
9864 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9865 invoked, yydestruct the lookahead.
9866 * tests/calc.at (Calculator $1): Update the expected lengths of
9867 traces: there is an added line for the discarded lookahead.
9868 * doc/bison.texinfo (Destructor Decl): Some rewording.
9869 Define "discarded" symbols.
9870
9871 2004-09-02 Akim Demaille <akim@epita.fr>
9872
9873 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9874
9875 2004-09-02 Akim Demaille <akim@epita.fr>
9876
9877 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9878 (YYDSYMPRINTF): Rename as...
9879 (YY_SYMBOL_PRINT): this.
9880 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9881 two.
9882 Use it instead of direct symprint_ calls.
9883 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9884 one.
9885
9886 2004-09-02 Akim Demaille <akim@epita.fr>
9887
9888 * data/lalr1.cc (b4_yysymprint_generate): New.
9889 (symprint_): New member function, defined when YYDEBUG.
9890 Use it consistently instead of token/nterm debugging output by
9891 hand.
9892 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9893 %printer calls to use cdebug_ when using lalr1.cc.
9894
9895 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9896
9897 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9898 with #ifdef YYDEBUG.
9899
9900 2004-08-26 Akim Demaille <akim@epita.fr>
9901
9902 * doc/bison.texinfo (Implementing Loops): Rename as...
9903 (Implementing Gotos/Loops): this.
9904
9905 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9906
9907 Adjust to latest gnulib.
9908 * bootstrap (gnulib_modules): Add xalloc-die.
9909 Set LC_ALL=C so that file names sort consistently.
9910 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9911 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9912 uintmax_t.m4, ulonglong.m4.
9913 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9914 po.m4 since we are now using _gl.m4 instead.
9915
9916 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9917
9918 * src/scan-action.l: Remove. Scanning of semantic actions is
9919 handled in scan-gram.l.
9920
9921 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9922
9923 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9924
9925 * src/location.h (struct): The file member is a uniqstr.
9926 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9927
9928 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9929
9930 Fix bug with non-%union parsers that have printers or destructors,
9931 which led to a Bison core dump. Reported by Peter Fales in
9932 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9933
9934 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9935 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9936 not to our own type.
9937 * src/output.c (symbol_destructors_output, symbol_printers_output):
9938 Don't assume %union.
9939 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9940 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9941 UNION-FLAG. All callers changed.
9942 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9943 Use type char, not unsigned int, when declaring an array of char;
9944 this lets us remove a cast.
9945 (Printers and Destructors): Add non-%union test cases.
9946
9947 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9948
9949 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9950 GLR writeups. E.g., avoid frenchspacing and the future tense,
9951 change "lookahead" to "look-ahead", and change "wrt" to "with
9952 respect to".
9953
9954 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9955
9956 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9957 New sections, split off from the GLR Parsers section. Put the new
9958 Simple GLR Parser near the start of the GLR section, for clarity.
9959 Rewrite connective text.
9960
9961 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9962
9963 * doc/bison.texinfo (Simple GLR Parsers): New section.
9964
9965 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9966
9967 * NEWS, TODO, doc/bison.texinfo:
9968 Use "look-ahead" instead of "lookahead", to be consistent.
9969 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9970 while we're fixing "look-ahead".
9971 * src/conflicts.c (shift_set): Renamed from shiftset.
9972 (look_ahead_set): Renamed from lookaheadset.
9973 * src/print.c: Likewise.
9974 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9975 name for "lookahead".
9976 (report_types, usage): Likewise.
9977 * src/getargs.h (report_look_ahead_tokens): Renamed from
9978 report_lookaheads.
9979 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9980 compute_lookaheads.
9981 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9982 (look_ahead_tokens_print): Renamed from lookaheads_print.
9983 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9984 state_rule_lookaheads_print.
9985 * src/state.h: Likewise.
9986 (reductions.look_ahead_tokens): Renamed from lookaheads.
9987 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9988 AT_DATA_LOOKAHEADS_GRAMMAR.
9989
9990 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9991
9992 * README: Update location of patched M4 distribution.
9993
9994 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9995
9996 Don't assume the C++ compiler takes the same arguments as the C compiler
9997 (trivial change).
9998 * configure.ac (O0CXXFLAGS): New var.
9999 * tests/atlocal.in (CXXFLAGS): Use it.
10000
10001 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10002
10003 Fix some "make check" problems with C++ reported by
10004 Albert Chin-A-Young for Tru64 C++ in this thread:
10005 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10006
10007 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10008 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10009 Output to a .cc file for C++, not to a .c file.
10010 * tests/calc.at (AT_CHECK_CALC): Likewise.
10011 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10012 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10013
10014 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10015
10016 * tests/calc.at, tests/actions.at: Workaround for SGI
10017 C++ compiler. (trivial change)
10018
10019 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10020
10021 Spent a few hours checking out which prerequisite versions the
10022 current sources actually require. I went all the way back to
10023 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10024 a seemingly endless set of combinations of versions more recent
10025 than that. The bottom line is that the current sources require
10026 fairly recent versions of the build tools, and it'll be some work
10027 to change this.
10028 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10029 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10030 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10031 Add comments explaining why those particular versions are
10032 currently needed.
10033
10034 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10035 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10036 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10037
10038 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10039 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10040
10041 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10042
10043 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10044 0.11.5. Suggested by Bruno Haible.
10045 * bootstrap: Remove gettext version checking.
10046
10047 * doc/bison.texinfo (Decl Summary): Also mention that %union
10048 can depend on prerequisite types. Problem reported by Tim
10049 Van Holder.
10050
10051 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10052
10053 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10054 * README-alpha: Don't tell people not to package this.
10055
10056 * bootstrap: Don't assume $(...) works; use `...` instead.
10057 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10058 gettext better.
10059
10060 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10061 put into the -d output file, and mention what to do if YYSTYPE is
10062 defined as a macro.
10063
10064 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10065
10066 Undo change made earlier today: it caused autopoint to not bring
10067 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10068 autopoint's.
10069
10070 * bootstrap: Check that gettext version matches what's in
10071 configure.ac. Warn users to ignore robots.txt ERROR 404.
10072 * bootstrap: Undo today's earlier change (logged below).
10073 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10074
10075 The gettext version checking is causing more trouble than it's
10076 curing; remove it. Problem reported by Paul Hilfinger.
10077
10078 * bootstrap: Issue a warning that one can expect a message
10079 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10080 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10081
10082 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10083
10084 Ensure that the C++ compiler used for testing actually works on a
10085 simple test program; if not, skip the C++-related tests. Problem
10086 reported by Vin Shelton in:
10087 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10088
10089 * m4/cxx.m4: New file.
10090 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10091 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10092 * tests/local.at (AT_COMPILE_CXX): Use it.
10093
10094 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10095
10096 * data/glr.c (yylloc): Output this macro even if locations are not
10097 being generated, as the GLR parser needs it even in that case.
10098 Problem reported by Troy A. Johnson
10099 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10100
10101 * configure.ac (AC_INIT): Update to 1.875e.
10102
10103 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10104
10105 * NEWS: Version 1.875d.
10106 * configure.ac (AC_INIT): Likewise.
10107 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10108
10109 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10110 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10111 lalr1.cc runs afoul of the first, and the last two are no longer
10112 supported by GCC 3.4.0.
10113 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10114 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10115
10116 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10117
10118 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10119 unsigned int, for compatibility with latest gnulib hash module.
10120 * src/state.c (state_hash, state_hasher): Likewise.
10121 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10122 * src/uniqstr.c (hash_uniqstr): Likewise.
10123
10124 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10125
10126 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10127
10128 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10129 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10130 character and string literals.
10131 (unexpected_end): New function.
10132 (unexpected_eof): Use it.
10133 (unexpected_newline): New function.
10134 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10135 actions.
10136
10137 * NEWS: Document %expect-rr.
10138
10139 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10140 Fix typo by replacing $1 with $option.
10141 Remove more 'intl'-related files.
10142 Don't DEFUN AM_INTL_SUBDIR twice.
10143
10144 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10145 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10146 strtoul.c.
10147 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10148 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10149 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10150 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10151 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10152 * src/.cvsignore: Add *.output.
10153
10154 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10155 gets copied to the output file.
10156
10157 2004-04-28 Paul Eggert <eggert@twinsun.com>
10158
10159 Get files from the gnulib and po repositories, instead of relying
10160 on them being in our CVS. Upgrade to latest versions of gnulib
10161 and Automake.
10162
10163 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10164 * bootstrap: Bootstrap from gnulib and po repositories.
10165 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10166 * README-cvs: Document these changes. Remove version numbers from
10167 mentions of build tools, since they change so often. Mention Flex.
10168
10169 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10170 (gl_USE_SYSTEM_EXTENSIONS): Add.
10171 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10172 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10173 does this for us.
10174 (AC_ISC_POSIX): Remove; we no longer support this
10175 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10176 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10177 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10178 Do not check for C89 headers, except for locale.h which is used
10179 by the Yacc library and must port to K&R hosts.
10180 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10181 Do not check for C89 functions, except for setlocale which is
10182 used by the Yacc library.
10183 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10184 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10185 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10186 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10187 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10188 AM_GNU_GETTEXT): Remove; now done by:
10189 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10190 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10191 for us.
10192
10193 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10194 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10195 Define to empty, as gnulib.mk will do the rest for us.
10196 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10197 for us.
10198 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10199 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10200
10201 * src/files.c: Include gnulib's xstrndup.h.
10202
10203 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10204 (REALLOC): Use xnrealloc, for likewise.
10205 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10206 (strnlen, memrchr): Remove decls; functions no longer used.
10207 Include <stpcpy.h>.
10208
10209 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10210 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10211 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10212 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10213 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10214 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10215 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10216 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10217 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10218 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10219 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10220 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10221 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10222 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10223 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10224 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10225 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10226 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10227 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10228 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10229 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10230 Remove, as these files are now generated automatically
10231 by bootstrap or automake.
10232
10233 * po/ChangeLog: Remove: all but one entry was a duplicate
10234 of this file, and I moved that 2000-11-02 entry here.
10235
10236 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10237 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10238 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10239 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10240 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10241 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10242 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10243 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10244 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10245 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10246 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10247 xstrndup.h.
10248 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10249 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10250 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10251 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10252 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10253 * src/.cvsignore: Remove *_.c.
10254
10255
10256 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10257 support it. (The latest stable gzip doesn't.)
10258
10259 2004-04-27 Paul Eggert <eggert@twinsun.com>
10260
10261 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10262 case, as stos_ is now used by destructors due to the 2004-02-09
10263 change.
10264
10265 Remove more K&R C support.
10266 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10267 * lib/subpipe.c (errno): Remove decl.
10268 Include <stdlib.h> unconditionally.
10269 (EXIT_FAILURE): Remove macro.
10270 * src/complain.c (vfprintf, strerror): Remove.
10271 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10272 unconditionally.
10273 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10274 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10275 (strchr, strspn, memchr): Remove decls.
10276 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10277 unconditionally. Do not declare perror.
10278 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10279 unconditionally.
10280
10281 * src/complain.c (_): Remove useless defn, as system.h defines this.
10282
10283 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10284 with latest obstack.h.
10285 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10286 to procedure types, as obstack.h now does that for us.
10287 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10288
10289 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10290 so that this include file can stand alone.
10291 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10292 does this now. Include subpipe.h first after config.h, to
10293 test whether it can stand alone.
10294
10295 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10296 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10297 unused declaration.
10298
10299 * tests/synclines.at (%union synch line): Put a dummy member in
10300 the union, because empty unions aren't allowed in C. Caught
10301 by GCC 3.4.0.
10302
10303 2004-04-13 Jim Meyering <jim@meyering.net>
10304
10305 * src/conflicts.c (conflicts_print): Correct format string typo:
10306 use `%%' to produce literal `%'. (trivial change)
10307
10308 2004-03-30 Paul Eggert <eggert@twinsun.com>
10309
10310 * src/getargs.c (version): Update copyright year to 2004.
10311
10312 * data/c.m4 (b4_int_type): Use 'short int' rather than
10313 'short', and similarly for 'long', 'unsigned', etc.
10314 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10315 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10316 yy_yypstack, yydumpstack): Likewise.
10317 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10318 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10319 Likewise.
10320 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10321 yy_stack_print, yyparse): Likewise.
10322 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10323 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10324 * lib/bitset.c (bitset_print): Likewise.
10325 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10326 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10327 * lib/bitsetv.c (bitsetv_dump): Likewise.
10328 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10329 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10330 Likewise.
10331 * src/LR0.c (allocate_itemsets): Likewise.
10332 * src/gram.h (rule_number, rule): Likewise.
10333 * src/lalr.h (goto_number): Likewise.
10334 * src/nullable.c (nullable_compute): Likewise.
10335 * src/output.c (prepare_rules): Likewise.
10336 * src/relation.c (relation_print, relation_digraph): Likewise.
10337 * src/relation.h (relation_node): Likewise.
10338 * src/state.h (state_number, transitions, errs, reductions,
10339 struct state): Likewise.
10340 * src/symtab.h (symbol_number, struct symbol): Likewise.
10341 * src/tables.c (vector_number, tally, action_number,
10342 default_goto, goto_actions): Likewise.
10343 * tests/existing.at (GNU Cim Grammar): Likewise.
10344 * tests/regression.at (Web2c Actions): Likewise.
10345
10346 * src/output.c (muscle_insert_short_int_table): Renamed from
10347 muscle_insert_short_table. All uses changed.
10348
10349 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10350
10351 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10352 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10353 Add %expect-rr rule.
10354
10355 * src/scan-gram.l: Recognize %expect-rr.
10356
10357 * src/conflicts.h (expected_sr_conflicts): Rename from
10358 expected_conflicts.
10359 (expected_rr_conflicts): Declare.
10360
10361 * src/conflicts.c (expected_sr_conflicts): Rename from
10362 expected_conflicts.
10363 (expected_rr_conflicts): Define.
10364 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10365 for GLR parsers.
10366 Use expected_sr_conflicts in place of expected_conflicts.
10367 Warn if expected_rr_conflicts used in non-GLR parser.
10368
10369 * doc/bison.texinfo: Add documentation for %expect-rr.
10370
10371 2004-03-08 Paul Eggert <eggert@gnu.org>
10372
10373 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10374 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10375
10376 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10377 in lalr1.cc.
10378 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10379 * src/scan-gram.l (scan_integer): New function.
10380 ({int}): Use it.
10381 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10382 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10383 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10384 Say "long int", not "long", for uniformity with GNU style.
10385
10386 2004-02-25 Paul Eggert <eggert@twinsun.com>
10387
10388 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10389 compilers. This fixes a problem with Intel's C++ compiler being
10390 chatty, reported by Guido Trentalancia in
10391 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10392
10393 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10394
10395 Support %destructor and merge error locations in lalr1.cc.
10396
10397 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10398 (Parser::stos_): Define unconditionally.
10399 (Parser::destruct_): New method. Generate its body with
10400 b4_yydestruct_generate.
10401 (Parser::error_start_): New attribute.
10402 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10403 token which are discarded.
10404 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10405 error_start_ when erroneous token are discarded.
10406 (Parser::parse) <yyerrlab1>: Compute the location of the error
10407 token so that it covers all the discarded tokens.
10408 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10409 it can be called with `%skeleton "lalr1.cc"', and do that.
10410
10411 2004-02-02 Paul Eggert <eggert@twinsun.com>
10412
10413 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10414 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10415 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10416 There's no need to mention top_builddir since Automake does that
10417 for us.
10418 (INCLUDES): Remove, as Automake says it's obsolescent.
10419 Contents migrated into AM_CPPFLAGS as described above.
10420 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10421
10422 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10423
10424 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10425 (yyreportSyntaxError): Handle case where lookahead token is
10426 YYEMPTY.
10427
10428 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10429
10430 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10431 resulting parsers are compilable with C++.
10432
10433 2003-12-23 Paul Eggert <eggert@twinsun.com>
10434
10435 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10436 * src/output.c (output_skeleton): Rename local var.
10437 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10438 Bison tokens, as this runs afoul of the 2003-10-07 change that
10439 disallowed NUL bytes in character constants or string literals.
10440
10441 * tests/local.at: Require Autoconf 2.59's Autotest.
10442 * tests/testsuite.at: Don't include local.at, since we now assume
10443 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10444 including it.
10445 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10446 multiple inclusion warnings.
10447
10448 2003-12-02 Akim Demaille <akim@epita.fr>
10449
10450 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10451 conditions.
10452 From Bruno Haible.
10453
10454 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10455
10456 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10457
10458 2003-10-07 Paul Eggert <eggert@twinsun.com>
10459
10460 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10461 if testsuite doesn't exist.
10462
10463 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10464 literals, unfortunately.
10465 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10466 Complain about NUL bytes in character constants or string literals.
10467
10468 2003-10-05 Paul Eggert <eggert@twinsun.com>
10469
10470 * NEWS: Don't document %no-default-prec, as it's still
10471 too experimental.
10472 * doc/bison.texinfo: Document %no-default-prec only if
10473 the defaultprec flag is set. Normally it's not.
10474
10475 2003-10-04 Paul Eggert <eggert@twinsun.com>
10476
10477 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10478 non-modifiable lvalue, instead of a modifiable one.
10479 * doc/bison.texinfo (Actions): Document that $$ can
10480 be assigned to. Do not claim that $$ and $N are
10481 array element references: user code should not rely on this.
10482
10483 2003-10-01 Paul Eggert <eggert@twinsun.com>
10484
10485 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10486 (grammar_declaration): Use it.
10487 * src/scan-gram.l: New token %no-default-prec.
10488 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10489 * NEWS, doc/bison.texinfo: Document the above.
10490
10491 2003-10-01 Akim Demaille <akim@epita.fr>
10492
10493 VCG no longer supports long_straight_phase.
10494
10495 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10496 * src/print_graph.c (print_graph): Adjust.
10497
10498 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10499 and Paul Eggert <eggert@twinsun.com>
10500
10501 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10502 Table of Symbols): Document %default-prec.
10503 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10504 (grammar_declaration): Set default_prec on %default-prec.
10505 * src/scan-gram.l (%default-prec): New token.
10506 * src/reader.h (default_prec): New flag.
10507 * src/reader.c: Likewise.
10508 (packgram): Handle it.
10509 * tests/conflicts.at (%default-prec without %prec,
10510 %default-prec with %prec, %default-prec 1): New tests.
10511
10512 2003-09-30 Paul Eggert <eggert@twinsun.com>
10513
10514 * tests/testsuite.at: Include local.at, not input.at, fixing
10515 a typo in the 2003-08-25 patch.
10516
10517 2003-08-27 Akim Demaille <akim@epita.fr>
10518
10519 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10520 GCC warnings.
10521
10522 2003-08-26 Akim Demaille <akim@epita.fr>
10523
10524 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10525 "<\#" to avoid magic from Gnus when posting parts of this script.
10526
10527 2003-08-26 Akim Demaille <akim@epita.fr>
10528
10529 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10530 (Parser::parse): here.
10531 Adjust: nerrs and errstatus is now replaced by...
10532 (Parser::nerrs_, Parser::errstatus_): New.
10533
10534 2003-08-25 Akim Demaille <akim@epita.fr>
10535
10536 * config/announce-gen, Makefile.cfg: New.
10537 * Makefile.am: Adjust.
10538 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10539 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10540
10541 2003-08-25 Akim Demaille <akim@epita.fr>
10542
10543 When reducing initial empty rules, Bison parser read an initial
10544 location that is not defined. This results in garbage, and that
10545 affects Bison's own parser. Therefore we need (i) to extend Bison
10546 to support a means to initialize this location, and (ii) to use
10547 this CVS Bison to fix CVS Bison's parser.
10548
10549 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10550 with...
10551 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10552 * src/parse-gram.y: Adjust.
10553 (%initial-action): New.
10554 (%error-verbose): Since we require CVS Bison, there is no reason
10555 not to use it.
10556 * src/scan-gram.l: Adjust.
10557 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10558 * data/yacc.c (yyparse): Use b4_initial_action.
10559
10560 2003-08-25 Akim Demaille <akim@epita.fr>
10561
10562 * doc/bison.texinfo: Don't promote stdout for error messages.
10563
10564 2003-08-25 Akim Demaille <akim@epita.fr>
10565
10566 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10567 From Alexandre Duret-Lutz.
10568
10569 2003-08-25 Akim Demaille <akim@epita.fr>
10570
10571 Version 1.875c.
10572
10573 2003-08-25 Akim Demaille <akim@epita.fr>
10574
10575 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10576 Use them.
10577
10578 2003-08-25 Akim Demaille <akim@epita.fr>
10579
10580 * data/lalr1.cc (Parser::reduce_print_): New.
10581 Use it.
10582
10583 2003-08-25 Akim Demaille <akim@epita.fr>
10584
10585 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10586 error recovery loops. This patch is based on
10587 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10588 Also, augment the similarity between lalr1.cc and yacc.c.
10589 Note: the locations of error recovery rules are not correct yet.
10590
10591 * data/lalr1.cc: Comment changes to augment the similarity between
10592 lalr1.cc and yacc.c.
10593 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10594 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10595 yyerrlab), when hitting EOF, pop the whole stack here instead of
10596 merely falling thru the default error handling mechanism.
10597 (yyerrorlab): New label, with the old contents of YYERROR,
10598 plus the following change: pop the stack of rhs corresponding
10599 to the production that invoked YYERROR. That is how Yacc
10600 behaves (required by POSIX).
10601 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10602 fail.
10603
10604 2003-08-25 Akim Demaille <akim@epita.fr>
10605
10606 Tune local.at so that people can "autom4te -l autotest calc.at -o
10607 calc" for instance, to extract a sub test suite.
10608
10609 * tests/testsuite.at: Move the initialization, Autotest version
10610 requirement, and AT_TESTED invocation into...
10611 * tests/local.at: here.
10612 * tests/testsuite.at: Include it for compatibility with Autoconf
10613 2.57.
10614 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10615 be ignore.
10616
10617 2003-08-04 Paul Eggert <eggert@twinsun.com>
10618
10619 Rework code slightly to avoid gcc -Wtraditional warnings.
10620 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10621 The returned value is now stored in *YY0. All callers changed.
10622 * src/output.c (merge_output): Adjust to the above change.
10623
10624 2003-07-26 Paul Eggert <eggert@twinsun.com>
10625
10626 * data/glr.c (YYASSERT): New macro.
10627 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10628 yyresolveStates, yyprocessOneStack):
10629 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10630 Derived from a suggestion by Frank Heckenbach.
10631
10632 2003-07-25 Paul Eggert <eggert@twinsun.com>
10633
10634 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10635 for portability to K&R C (after ansi2knr, presumably). See
10636 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10637 by Frank Heckenbach, though I have omitted the structure-initialization
10638 part of his glr-knr.diff patch since I recall that the Portable
10639 C Compiler didn't require that change.
10640
10641 Let the user specify how to allocate and free memory.
10642 Derived from a suggestion by Frank Heckenbach in
10643 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10644 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10645 All uses of free, malloc, realloc changed to use these macros,
10646 and unnecessary casts removed.
10647 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10648
10649 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10650
10651 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10652 use s.empty() rather than s == "" to test for empty string; see
10653 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10654 (trivial change)
10655
10656 2003-06-25 Akim Demaille <akim@epita.fr>
10657
10658 * config/depcomp, config/install-sh: Update from masters.
10659
10660 2003-06-20 Paul Eggert <eggert@twinsun.com>
10661
10662 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10663 and return properly parenthesized result.
10664 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10665 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10666 Remove unnecessary parentheses from uses.
10667 * doc/bison.texinfo (Location Default Action): Describe the
10668 conventions for parentheses.
10669
10670 2003-06-19 Paul Eggert <eggert@twinsun.com>
10671
10672 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10673 yyreportTree): Do not assume that size_t is the same width as int,
10674 when printing sizes. Print sizes using an unsigned format.
10675 Problem reported by Frank Heckenbach in
10676 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10677
10678 Port to Forte Developer 7 C compiler.
10679 * data/glr.c (struct YYLTYPE): If locations are not being used,
10680 declare a single dummy member, as empty structs do not conform
10681 to the C standard.
10682 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10683 the Forte Developer 7 C compiler complains that end-of-loop
10684 code is not reached.
10685
10686 2003-06-17 Paul Eggert <eggert@twinsun.com>
10687
10688 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10689 avoid warnings from picky compilers about redefinition of PARAMS.
10690
10691 2003-06-17 Paul Eggert <eggert@twinsun.com>
10692
10693 Version 1.875b.
10694
10695 * NEWS: Document 1.875b.
10696
10697 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10698 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10699 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10700 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10701 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10702 per recent gettext manual's suggestion.
10703 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10704 Use prototypes, not old-style definitions.
10705 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10706 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10707 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10708 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10709 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10710 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10711 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10712 vbitset_or_and_cmp, vbitset_copy): Likewise.
10713
10714 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10715 Do not include <stdlib.h>.
10716 (PARAMS): Define unconditionally for C89.
10717 (ATTRIBUTE_NORETURN): Remove.
10718 (ATTRIBUTE_UNUSED): Define unconditionally.
10719
10720 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10721 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10722 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10723 * lib/vbitset.c, lib/vbitset.h: New files.
10724 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10725 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10726 from libbitset.
10727
10728 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10729 `How Can I Reset @code{yyparse}', since texinfo does not allow
10730 arbitrary @ in node names.
10731
10732 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10733 shouldn't be needed according to the gettext 0.12.1 documentation
10734 but which seem to be needed anyway: codeset.m4 glibc21.m4
10735 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10736 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10737 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10738
10739 * lib/.cvsignore: Add stdbool.h.
10740 * m4/.cvsignore: Add nls.m4, po.m4.
10741
10742 Upgrade to CVS gnulib.
10743 * stdbool_.h: File renamed from stdbool.h.in.
10744 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10745 AC_HEADER_STDBOOL.
10746 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10747 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10748 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10749 (MOSTLYCLEANFILES): New var.
10750 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10751 (stdbool.h): New rule.
10752 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10753 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10754 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10755 m4/quote.m4: Upgrade to today's gnulib.
10756
10757 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10758 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10759 the tests right now.
10760 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10761 yyerror are declared before use; C99 requires this.
10762
10763 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10764
10765 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10766 first.
10767 (yyrecoverSyntaxError): Correct the logic for setting and testing
10768 yyerrState.
10769 Correct comment on handling EOF.
10770 Allow states with only a default reduction, rather than failing
10771 (I can't quite reconstruct why these were not allowed before).
10772
10773 Fixes to avoid problem that $-N rules in GLR parsers can cause
10774 buffer overruns, corrupting state.
10775
10776 * src/output.c (prepare_rules): Output max_left_semantic_context
10777 definition.
10778 * src/reader.h (max_left_semantic_context): New variable declaration.
10779 * src/scan-gram.l (max_left_semantic_context): Define.
10780 (handle_action_dollar): Update max_left_semantic_context.
10781 * data/glr.c (YYMAXLEFT): New definition.
10782 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10783 (yyresolveAction): Ditto.
10784
10785 Fixes to problems with location handling in GLR parsers reported by
10786 Frank Heckenbach (2003/06/05).
10787
10788 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10789 (YYRHSLOC): Add parentheses, and define only if locations used.
10790 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10791 locations not used.
10792 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10793 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10794
10795 * tests/cxx-type.at: Exercise location information; update tests
10796 to differentiate output with and without locations.
10797 Remove forward declarations of yylex and yyerror---caused errors
10798 because default YYLTYPE not yet defined.
10799 Change semantic actions to compute strings, rather than printing
10800 them directly (to test proper passing of semantics values). Change
10801 output to prefix notation and update test data and expected results.
10802 (yylex): Track locations.
10803 (stmtMerge): Return value rather than printing, and include arguments
10804 in value.
10805
10806 2003-06-03 Paul Eggert <eggert@twinsun.com>
10807
10808 Avoid warnings generated by GCC 2.95.4 when Bison is
10809 configured with --enable-gcc-warnings.
10810 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10811 yy::]b4_parser_class_name[::translate_,
10812 yy::Stack::operator[] (unsigned),
10813 yy::Stack::operator[] (unsigned) const,
10814 yy::Slice::operator[] (unsigned),
10815 yy::Slice::operator[] (unsigned) const):
10816 Rename local vars to avoid warnings.
10817 * tests/glr-regression.at (Improper handling of embedded actions
10818 and $-N in GLR parsers): Remove unused local variable from yylex.
10819 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10820 (void) as arg when not pure, since we now assume C89 when building
10821 Bison. Pacify GCC by using parameter.
10822
10823 2003-06-02 Paul Eggert <eggert@twinsun.com>
10824
10825 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10826 yy::Location::lines, yy::Location::columns): Rename arguments
10827 to avoid shadowing; this removes a warning generated by GCC 3.3.
10828
10829 2003-06-01 Paul Eggert <eggert@twinsun.com>
10830
10831 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10832 to g++, as GCC 3.3 complains if you do it.
10833 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10834 everything that WARNING_CFLAGS has, except omit warnings
10835 not suitable for C++.
10836 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10837 * tests/atlocal.in (CXXFLAGS): New var.
10838 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10839
10840 Fix a GLR parser bug I reported in February; see
10841 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10842 The problem was that GLR parsers did not conform to the C standard,
10843 because actions like { $1 = $2 + $3; } expanded to expressions
10844 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10845 to a local variable. The C standard says that expressions
10846 like (var = f ()) + (var = f ()) have undefined behavior.
10847 Another problem was that GCC sometimes issues warnings that
10848 yyfill and its parameters are unused.
10849
10850 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10851 as possibly unused.
10852 (yyfill): New function.
10853 (YYFILL): Use it.
10854 (yyuserAction): Change type of yynormal to bool, so that it matches
10855 the new yyfill signature. Mark it as possibly unused.
10856
10857
10858 Follow up on a bug I reported in February, where a Bison-generated
10859 parser can loop. Provide a test case and a fix for yacc.c. I
10860 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10861 The original bug report is in:
10862 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10863
10864 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10865 macro's size was becoming unwieldy.
10866 (yyerrlab): Do not discard an empty lookahead symbol, as this
10867 might destroy garbage.
10868 (yyerrorlab): New label, with the old contents of YYERROR,
10869 plus the following change: pop the stack of rhs corresponding
10870 to the production that invoked YYERROR. That is how Yacc
10871 behaves, and POSIX requires this behavior.
10872 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10873 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10874 Define 'alarm' to do nothing if unistd.h is not available.
10875 Add a new rule "exp: '-' error;" to test the above change to
10876 data/yacc.c. Use 'alarm' to abort any test taking longer than
10877 10 seconds, as it's probably looping.
10878 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10879 Also, the new yacc.c generates two fewer diagnostics for an
10880 existing test.
10881
10882 2003-05-24 Paul Eggert <eggert@twinsun.com>
10883
10884 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10885 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10886 This fixes a problem reported by John Bowman when the Compaq/HP
10887 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10888 -ansi -Wall -gall).
10889 * data/yacc.c (union yyalloc): Likewise.
10890 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10891
10892 Switch from 'int' to 'bool' where that makes sense.
10893
10894 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10895 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10896 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10897 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10898 Return or accept bool, not int. All callers changed.
10899 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10900 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10901 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10902 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10903 bitset_or_and_cmp_): Likewise.
10904 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10905 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10906 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10907 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10908 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10909 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10910 bitset_stats_or_and_cmp): Likewise.
10911 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10912 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10913 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10914 ebitset_xor_cmp): Likewise.
10915 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10916 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10917 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10918 lbitset_xor_cmp): Likewise.
10919 * lib/bbitset.h: Include <stdbool.h>.
10920 (struct bitset_vtable): The following members now return bool, not
10921 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10922 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10923 or_and_cmp).
10924 * src/conflicts.c (count_rr_conflicts): Likewise.
10925 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10926 All uses changed.
10927 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10928 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10929 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10930 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10931 graph_flag): Likewise.
10932 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10933 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10934 graph_flag): Likewise.
10935 * src/output.c (error_verbose): Likewise.
10936 * src/output.h (error_verbose): Likewise.
10937 * src/reader.c (start_flag, typed): Likewise.
10938 * src/reader.h (typed): Likewise.
10939 * src/getargs.c (LOCATIONS_OPTION): New constant.
10940 (long_options, getargs): Use it.
10941 * src/lalr.c (build_relations): Use bool, not int.
10942 * src/nullable.c (nullable_compute): Likewise.
10943 * src/print.c (print_reductions): Likewise.
10944 * src/tables.c (action_row, pack_vector): Likewise.
10945 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10946 * src/output.c (prepare): Use it.
10947 * src/output.c (token_definitions_output,
10948 symbol_destructors_output, symbol_destructors_output): Use string,
10949 not boolean integer, to keep track of whether to output separator.
10950 * src/print_graph.c (print_core): Likewise.
10951 * src/state.c (state_rule_lookaheads_print): Likewise.
10952
10953 * config/install-sh: Sync from automake 1.7.5.
10954
10955 2003-05-14 Paul Eggert <eggert@twinsun.com>
10956
10957 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10958 semicolon after a grammar declaration, in the interest of possible
10959 future changes to the Bison input language.
10960 Do not allow a stray semicolon at the start of the grammar.
10961 (rhses.1): Allow one or more semicolons after any rule, including
10962 just before "|" as required by POSIX.
10963 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10964 grammar.
10965
10966 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10967
10968 %parse-param support for lalr1.cc.
10969
10970 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10971 b4_cc_constructor_calls, b4_cc_constructor_call,
10972 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10973 definitions.
10974 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10975 parse-param arguments.
10976 (yy::b4_parser_class_name): Declare instance variables to
10977 hold parse-param arguments.
10978 * tests/calc.at: s/value/semantic_value/ because value clashes
10979 with a member of yy::b4_parser_class_name. Adjust C++ code
10980 to handle %parse-param. Enable %parse-param test in C++.
10981
10982 2003-05-12 Paul Eggert <eggert@twinsun.com>
10983
10984 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10985 English a bit. Fix fclose typo. Change "const char" to "char
10986 const", and use ANSI C rather than K&R for "main". Suggest
10987 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10988 and suggest yy_switch_to_buffer.
10989
10990 2003-05-05 Paul Eggert <eggert@twinsun.com>
10991
10992 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10993 C89. This avoids a diagnostic on compilers that define __STDC__
10994 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10995 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10996
10997 2003-05-03 Paul Eggert <eggert@twinsun.com>
10998
10999 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11000 Do not overrun array bounds.
11001 This should fix a bug reported today by Olatunji Oluwabukunmi in
11002 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11003
11004 2003-04-29 Akim Demaille <akim@epita.fr>
11005
11006 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11007 * src/getargs.c, src/getargs.h: here, as bool, not int.
11008 (nondeterministic_parser): New.
11009 * src/parse-gram.y, src/scan-gram.l: Support
11010 %nondeterministic-parser.
11011 * src/output.c (prepare): Use nondeterministic_parser instead
11012 of glr_parser where appropriate.
11013 * src/tables.c (conflict_row, action_row, save_row)
11014 (token_actions, token_actions, pack_vector): Ditto.
11015
11016 2003-04-29 Akim Demaille <akim@epita.fr>
11017
11018 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11019
11020 2003-04-29 Akim Demaille <akim@epita.fr>
11021
11022 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11023 with %pure-parser and %locations to exercise the patch from Yakov
11024 Markovitch below.
11025
11026 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11027
11028 * data/yacc.c: (b4_lex_param): Corrected for the case where
11029 %lex-param is provided and %pure-parser isn't.
11030
11031 2003-04-27 Paul Eggert <eggert@twinsun.com>
11032
11033 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11034 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11035 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11036 if it is not defined.
11037 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11038
11039 2003-04-26 Paul Eggert <eggert@twinsun.com>
11040
11041 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11042 Declare to be of type suitable for the ninf value itself, not of
11043 type suitable for the corresponding table, since the latter might
11044 be unsigned but the ninf value might be negative. This fixes a
11045 bug reported by Alexandre Duret-Lutz in
11046 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11047
11048 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11049 invokes it. We shouldn't invoke it twice because it will attempt
11050 to put error.o in the archive twice. This fixes a glitch reported
11051 by Martin Mokrejs in
11052 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11053
11054 2003-04-21 Paul Eggert <eggert@twinsun.com>
11055
11056 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11057 to gnulib.
11058
11059 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11060
11061 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11062 Fix obvious typo that results in uncompilable GLR parsers
11063 when both %pure-parser and %locations are used. (trivial change)
11064
11065 2003-04-17 Paul Eggert <eggert@twinsun.com>
11066
11067 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11068 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11069 Do not insert the expected token via unput, as this runs afoul
11070 of a POSIX-compatibility bug in flex 2.5.31.
11071 All uses changed to BEGIN the parent state,
11072 since we no longer insert the expected token via unput.
11073 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11074 that is no longer emitted after the above change.
11075
11076 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11077 the first one. This change is from Paul Hilfinger, and it fixes
11078 regression reported by Werner Lemberg in
11079 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11080
11081 (resolve_sr_conflict): Don't invoke state_errs_set
11082 unless one or more tokens have been explicitly made errors.
11083 Otherwise, the above change causes Bison to abort.
11084
11085 * tests/existing.at (GNU pic Grammar): New test case, taken from
11086 Lemberg's email.
11087
11088 2003-03-31 Akim Demaille <akim@epita.fr>
11089
11090 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11091
11092 2003-03-31 Akim Demaille <akim@epita.fr>
11093
11094 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11095 output.
11096
11097 2003-03-31 Akim Demaille <akim@epita.fr>
11098
11099 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11100 From Paul Hilfinger.
11101
11102 2003-03-29 Akim Demaille <akim@epita.fr>
11103
11104 * m4/error.m4: Do not put under dynamic conditions some code which
11105 expansion is under static control.
11106
11107 2003-03-29 Akim Demaille <akim@epita.fr>
11108
11109 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11110
11111 2003-03-29 Akim Demaille <akim@epita.fr>
11112
11113 * doc/bison.texinfo (Strings are Destroyed): New.
11114
11115 2003-03-13 Paul Eggert <eggert@twinsun.com>
11116
11117 * .cvsignore: Add configure.lineno.
11118 * src/.cvsignore: Add yacc.
11119 * tests/.cvsignore: Add testsuite.log.
11120 * doc/fdl.texi: Sync with latest FSF version.
11121
11122 2003-03-12 Paul Eggert <eggert@twinsun.com>
11123
11124 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11125 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11126 cursor, instead of leaving it undefined. This fixes a bug
11127 reported by Tim Van Holder in
11128 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11129 * tests/input.at (Torturing the Scanner): Test the scanner on
11130 an empty input file, which was Tim Van Holder's test case.
11131
11132 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11133 <sys/resource.h> can be included, include sys/time.h and
11134 sys/times.h first, if available. This works around the SunOS
11135 4.1.4 porting bug reported by Bruce Becker in
11136 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11137
11138 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11139 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11140 AC_HEADER_SYS_WAIT.
11141
11142 Merge changes from gnulib. This was prompted because the CVS
11143 snapshot didn't build on Solaris 7 due to strnlen problems.
11144
11145 These changes need to be merged back into gnulib:
11146 * lib/hash.c: Include <stdbool.h> unconditionally.
11147 * m4/onceonly.m4 (m4_quote): New macro.
11148 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11149 Quote AC_FOREACH variable-expansions properly.
11150 The 2003-01-03 obstack.h change also needs merging.
11151 {end of changes requiring merging}
11152
11153 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11154 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11155 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11156 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11157 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11158 New files, imported from gnulib.
11159 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11160 above.
11161
11162 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11163 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11164 gnulib sources.
11165
11166 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11167 Add.
11168 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11169 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11170 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11171 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11172 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11173 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11174 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11175 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11176 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11177 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11178 (jm_PREREQ_ARGMATCH): Remove.
11179 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11180 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11181
11182 * src/system.h: Include <stdbool.h> unconditionally.
11183
11184 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11185 assuming at least C89 in the bitset code for some time now.
11186
11187 2003-03-03 Akim Demaille <akim@epita.fr>
11188
11189 * ro.po: New.
11190
11191 2003-03-02 Akim Demaille <akim@epita.fr>
11192
11193 * doc/bison.texinfo (Table of Symbols): Reactivate the
11194 documentation for %lex-param, and %parse-param.
11195
11196 2003-03-02 Akim Demaille <akim@epita.fr>
11197
11198 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11199 generate verbose error messages.
11200 Use the number of tokens as an upper bound in yytname, as it
11201 cannot be a non terminal.
11202
11203 2003-03-02 Akim Demaille <akim@epita.fr>
11204
11205 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11206 message.
11207
11208 2003-03-02 Akim Demaille <akim@epita.fr>
11209
11210 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11211 Use them to exercise yycheck overrun.
11212 Based on Andrew Suffield's grammar.
11213
11214 2003-03-02 Akim Demaille <akim@epita.fr>
11215
11216 Create tests/local.at for Bison generic testing macros.
11217
11218 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11219 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11220 This new file.
11221 * tests/calc.at (AT_CHECK_CALC): Adjust.
11222 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11223 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11224 * tests/local.at: here.
11225 (AT_COMPILE_CXX): Tags the tests using it as c++.
11226 Ignore the test if CXX is not functional.
11227
11228 2003-03-01 Paul Eggert <eggert@twinsun.com>
11229
11230 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11231 not loc->end, since loc->end might contain garbage and this leads
11232 to undefined behavior on some platforms.
11233 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11234 depend on *loc, so that the reader doesn't give the the false
11235 impression that *loc is initialized.
11236 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11237 does not survive the return.
11238
11239 2003-03-01 Akim Demaille <akim@epita.fr>
11240
11241 * src/scan-gram.l (code_start): Always initialize it when entering
11242 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11243 yylex invocation. An alternative would be making it static, but
11244 then it starts with the second %%'s beginning, instead of its end.
11245
11246 2003-02-28 Paul Eggert <eggert@twinsun.com>
11247
11248 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11249 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11250 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11251
11252 2003-02-26 Paul Eggert <eggert@twinsun.com>
11253
11254 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11255 Remove Sequent/Pyramid discussion (nobody uses them any more).
11256 Merge VMS and MS-DOS discussion; these ports may well be dead
11257 but let's keep mentioning them for now. Put <> around email
11258 addresses. Add copyright notice.
11259
11260 2003-02-24 Paul Eggert <eggert@twinsun.com>
11261
11262 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11263 to avoid collision with flex use of yylineno.
11264 Problem reported by Bruce Lilly in
11265 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11266 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11267 * data/yacc.c (yy_reduce_print): Likewise.
11268
11269 * config/depcomp: Sync with Automake 1.7.3.
11270
11271 2003-02-21 Akim Demaille <akim@epita.fr>
11272
11273 * data/lalr1.cc: Use temporary variables instead of casts to
11274 change integer types.
11275 Suggested by Paul Eggert.
11276
11277 2003-02-21 Akim Demaille <akim@epita.fr>
11278
11279 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11280 to avoid confusions with lalr1.cc's notion of Position.
11281 Suggested by Paul Eggert.
11282
11283 2003-02-20 Akim Demaille <akim@epita.fr>
11284
11285 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11286 before initial_columns.
11287 (location.hh): Use consistent variable names when defining the
11288 operator<<.
11289 Use "last" so that we subtract from Positions, not from unsigned.
11290
11291 2003-02-20 Akim Demaille <akim@epita.fr>
11292
11293 * data/lalr1.cc (position.hh): New subfile, including the extended
11294 and Doxygen'ed documentation of class Position.
11295 (location.hh): Use it.
11296 Document a` la Doxygen.
11297 With the help of Benoit Perrot.
11298
11299 2003-02-20 Akim Demaille <akim@epita.fr>
11300
11301 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11302 AT_YACC_IF.
11303 Redefine AT_YYERROR_SEES_LOC_IF using it.
11304 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11305 not defined.
11306 Don't use the location in yy::Parser::error_ and
11307 yy::Parser::print_ when not %locations.
11308 Activate more lalr1.cc tests.
11309
11310 2003-02-19 Akim Demaille <akim@epita.fr>
11311
11312 * data/lalr1.cc: When displaying a line number, be sure to make it
11313 an int.
11314
11315 2003-02-19 Akim Demaille <akim@epita.fr>
11316
11317 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11318 Remove, useless.
11319 (YYABORT, YYACCEPT, YYERROR): New.
11320 * tests/calc.at: Renable the lalr1.cc test.
11321
11322 2003-02-19 Akim Demaille <akim@epita.fr>
11323
11324 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11325 error recovery, mixing with/without pops and discarding of the
11326 lookahead.
11327 Exercise YYERROR.
11328 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11329
11330 2003-02-17 Paul Eggert <eggert@twinsun.com>
11331
11332 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11333 * tests/testsuite.at (AT_COMPILE): Use them.
11334 This fixes the testsuite problem reported by Robert Lentz in
11335 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11336
11337 2003-02-12 Paul Eggert <eggert@twinsun.com>
11338
11339 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11340 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11341 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11342 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11343 Check for malloc failure, for consistency with yacc.c.
11344 (yytname_size): Remove, for consistency with yacc.c.
11345
11346 The bug still remains in data/lalr1.cc, as I didn't have time
11347 to fix it there.
11348
11349 2003-02-06 Akim Demaille <akim@epita.fr>
11350
11351 * configure.ac (GXX): Rename as...
11352 (CXX): this, to keep the original Autoconf semantics.
11353 Require 2.57.
11354 * data/lalr1.cc: Fix b4_copyright invocations.
11355 If YYDEBUG is not defined, don't depend upon name_ being defined.
11356 (location.hh): Include string and iostream.
11357 (Position::filename): New member.
11358 (Position::Position ()): New.
11359 (operator<< (Position)): New.
11360 (operator- (Position, int)): New.
11361 (Location::first, Location::last): Rename as...
11362 (Location::begin, Location::end): these, to mock the conventional
11363 iterator names.
11364 (operator<< (Location)): New.
11365 * tests/atlocal.in (CXX): New.
11366 * tests/testsuite.at (AT_COMPILE_CXX): New.
11367 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11368 locations in a more synthetic way.
11369 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11370 lalr1.cc is used.
11371 Adjust the C locations to match those from Emacs: first column is
11372 column 0.
11373 Change all the expected results.
11374 Conform to the GCS: simplify the locations when applicable.
11375 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11376 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11377 these CPP macros with the m4 macros new defined by...
11378 (AT_CHECK_PUSHDEFS): this, i.e.:
11379 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11380 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11381 New macros.
11382 (AT_CHECK_POPDEFS): Undefine them.
11383 (AT_CHECK_CALC_LALR1_CC): New.
11384 Use it for the first lalr1.cc test.
11385
11386 2003-02-04 Akim Demaille <akim@epita.fr>
11387
11388 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11389 Location as is defined.
11390
11391 2003-02-04 Akim Demaille <akim@epita.fr>
11392
11393 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11394 name_ being defined.
11395
11396 2003-02-03 Paul Eggert <eggert@twinsun.com>
11397
11398 * src/gram.h (start_symbol): Remove unused decl.
11399
11400 Use more-consistent naming conventions for local vars.
11401
11402 * src/derives.c (derives_compute): Change type of local var from
11403 int to rule_number.
11404 * src/gram.c (grammar_rules_partial_print): Likewise.
11405 * src/print.c (print_core): Likewise.
11406 * src/reduce.c (reduce_grammar_tables): Likewise.
11407
11408 * src/gram.c (grammar_dump): Change name of item_number *
11409 local var from r to rp.
11410 * src/nullable.c (nullable_compute): Likewise.
11411
11412 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11413
11414 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11415 for symbol or symbol_number var.
11416 * src/reader.c (grammar_start_symbol_set): Likewise.
11417 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11418 Likewise.
11419 * src/state.c (transitions_to): Likewise.
11420 * src/state.h: Likewise.
11421 * src/tables.c (symbol_number_to_vector_number): Likewise.
11422
11423 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11424 char * var.
11425
11426 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11427 var.
11428
11429 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11430 var.
11431
11432 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11433 Use str, not s, for char * var. Use ch, not c, for character var.
11434 Use size for size var.
11435
11436 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11437 char * var.
11438 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11439 uniqstr var.
11440 * src/uniqstr.h: Likewise.
11441
11442 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11443 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11444 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11445 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11446 param to have same name as that of enum, so that we don't use
11447 "s" to stand for a non-state.
11448
11449 2003-02-02 Akim Demaille <akim@epita.fr>
11450
11451 * src/scan-skel.l: Scan more than one inert character per yylex
11452 invocation.
11453
11454 2003-02-01 Paul Eggert <eggert@twinsun.com>
11455
11456 Version 1.875a.
11457
11458 * po/LINGUAS: Add ms.
11459
11460 2003-01-30 Akim Demaille <akim@epita.fr>
11461
11462 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11463
11464 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11465
11466 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11467 of $1.
11468
11469 Changes in response to error report by S. Eken: GLR mode does not
11470 handle negative $ indices or $ indices in embedded rules correctly.
11471 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11472
11473 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11474 (b4_rhs_location): Ditto.
11475 (yyfill): New function to copy from stack tree into array
11476 incrementally.
11477 (yyuserAction): Modify to allow incremental move of semantic values
11478 to rhs array when in GLR mode.
11479 Define YYFILL to use in user-defined actions to fill semantic array
11480 as needed.
11481 Remove dummy use of yystack, as there is now a guaranteed use.
11482 (yydoAction): Modify to allow incremental move of semantic values
11483 to rhs array when in GLR mode.
11484 (yyresolveAction): Ditto.
11485 (yyglrShiftDefer): Update comment.
11486 (yyresolveStates): Use X == NULL for pointers, not !X.
11487 (yyglrReduce): Ditto.
11488 (yydoAction): Ditto
11489
11490 * tests/glr-regr1.at: Rename to ...
11491 * tests/glr-regression.at: Add new regression test for the problems
11492 described above (adapted from S. Eken).
11493 Update copyright notice.
11494 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11495 * tests/Makefile.am: Ditto.
11496
11497 2003-01-28 Paul Eggert <eggert@twinsun.com>
11498
11499 * data/lalr1.cc: Do not use @output_header_name@ unless
11500 b4_defines_flag is set. This fixes two bugs reported by
11501 Tim Van Holder in
11502 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11503 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11504
11505 2003-01-21 Paul Eggert <eggert@twinsun.com>
11506
11507 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11508 we don't need to worry about yyerrlab1 being reported as an
11509 "unused label" by non-GCC C compilers. The downside is that if
11510 locations are used then a couple of statements are duplicated each
11511 time YYERROR is invoked, but the upside is that the warnings
11512 should vanish.
11513 (yyerrlab1): Move code to YERROR.
11514 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11515 This reverts some of the 2002-12-27 change.
11516
11517 2003-01-17 Paul Eggert <eggert@twinsun.com>
11518
11519 * src/output.c (symbol_printers_output): Fix typo that led
11520 to core dump. Problem reported by Antonio Rus in
11521 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11522
11523 2003-01-13 Akim Demaille <akim@epita.fr>,
11524 Quoc Peyrot <chojin@lrde.epita.fr>,
11525 Robert Anisko <anisko_r@lrde.epita.fr>
11526
11527 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11528 when the stacks contain one element, as the loop would otherwise
11529 free the last state, and then use the top state (the one we just
11530 popped). This means that the initial elements will not be freed
11531 explicitly, as is the case in yacc.c; it is not a problem, as
11532 these elements have fake values.
11533
11534 2003-01-11 Paul Eggert <eggert@twinsun.com>
11535
11536 * NEWS: %expect-violations are now just warnings, reverting
11537 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11538 bootstrapping problem reported by Matthias Klose; see
11539 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11540 * src/conflicts.c (conflicts_print): Likewise.
11541 * tests/conflicts.at (%expect not enough, %expect too much,
11542 %expect with reduce conflicts): Likewise.
11543 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11544 that the warning is enabled if the number of conflicts changes
11545 (not necessarily increases).
11546
11547 * src/getargs.c (version): Update copyright year.
11548
11549 2003-01-09 Akim Demaille <akim@epita.fr>
11550
11551 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11552
11553 2003-01-08 Paul Eggert <eggert@twinsun.com>
11554
11555 * Makefile.maint (WGETFLAGS):
11556 New macro, containing "-C off" to disable proxy caches.
11557 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11558 (rel-check): Use $(WGET) instead of wget.
11559
11560 2003-01-06 Paul Eggert <eggert@twinsun.com>
11561
11562 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11563 the GLR paper of Scott, Johnstone and Hussain.
11564
11565 2003-01-04 Paul Eggert <eggert@twinsun.com>
11566
11567 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11568 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11569 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11570 (EXTRA_LIBRARIES): New var, for liby.a.
11571 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11572 (EXTRA_SCRIPTS): New var, for yacc.
11573
11574 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11575 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11576 Problem reported by Nelson H. F. Beebe.
11577
11578 2003-01-03 Paul Eggert <eggert@twinsun.com>
11579
11580 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11581 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11582 when compiling Bison 1.875's `bitset bset = obstack_alloc
11583 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11584
11585 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11586 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11587 grow to a huge size with typical invocation.
11588
11589 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11590 Use the pattern recommended by Autoconf 2.57, except also protect
11591 against double-definition.
11592 * src/system.h: Likewise.
11593 Portability issues reported by Nelson H. F. Beebe.
11594
11595 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11596 All uses changed. Provide a definition in both C and C++.
11597 (yytrue, yyfalse): Define even if defined (__cplusplus).
11598
11599 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11600 Reported by Nelson H. F. Beebe.
11601
11602 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11603
11604 2003-01-02 Paul Eggert <eggert@twinsun.com>
11605
11606 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11607 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11608 Bug reported by Nelson H. F. Beebe.
11609
11610 2003-01-01 Paul Eggert <eggert@twinsun.com>
11611
11612 * Version 1.875.
11613
11614 2002-12-30 Paul Eggert <eggert@twinsun.com>
11615
11616 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11617 Moved here from...
11618 (<INITIAL>","): Here. This causes stray "," to be treated
11619 more uniformly.
11620
11621 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11622 last brace in braced code when not in Yacc mode, for compatibility
11623 with Bison 1.35. This resurrects the 2001-12-15 patch to
11624 src/reader.c.
11625
11626 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11627 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11628
11629 2002-12-28 Paul Eggert <eggert@twinsun.com>
11630
11631 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11632 that of SYM's type. This fixes Debian bug 168069, reported by
11633 Thomas Olsson.
11634
11635 2002-12-28 Paul Eggert <eggert@twinsun.com>
11636
11637 Version 1.75f.
11638
11639 Switch back to the Yacc style of conflict reports, undoing some
11640 of the 2002-07-30 change.
11641 * doc/bison.texinfo (Understanding): Use Yacc style for
11642 conflict reports. Also, use new way of locating rules.
11643 * src/conflicts.c (conflict_report):
11644 Renamed from conflict_report_yacc, removing the old
11645 'conflict_report'. Translate the entire conflict report at once,
11646 so that we don't assume that "," has the same interpretation in
11647 all languages.
11648 (conflicts_output): Use Yacc-style conflict report for each state,
11649 instead of our more-complicated style.
11650 (conflicts_print): Use Yacc-style conflict report, except print
11651 the input file name when not emulating Yacc.
11652 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11653 Conflicted Reduction, %expect not enough, %expect too much,
11654 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11655 * tests/existing.at (GNU Cim Grammar): Likewise.
11656 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11657
11658 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11659 fatal): Don't invoke fflush; it's not needed and it might even be
11660 harmful for stdout, as stdout might not be open.
11661 * src/reduce.c (reduce_print): Likewise.
11662
11663 2002-12-27 Paul Eggert <eggert@twinsun.com>
11664
11665 Fix a bug where error locations were not being recorded correctly.
11666 This problem was originally reported by Paul Hilfinger in
11667 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11668
11669 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11670 top of the location stack's error locations.
11671 (yyerrlab): Set it. When discarding a token, push its location
11672 onto yylerrsp so that we don't lose track of the error's end.
11673 (yyerrlab1): Now is only the target of YYERROR, so that we can
11674 properly record the location of the action that failed. For GCC
11675 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11676 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11677 (yyerrlab2): New label, which yyerrlab now falls through to.
11678 Compute the error's location by applying YYLLOC_DEFAULT to
11679 the locations of all the symbols that went into the error.
11680 * doc/bison.texinfo (Location Default Action): Mention that
11681 YYLLOC_DEFAULT is also invoked for syntax errors.
11682 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11683 Error locations include the locations of all the tokens that were
11684 discarded, not just the last token.
11685
11686 2002-12-26 Paul Eggert <eggert@twinsun.com>
11687
11688 * src/files.c: Include quote.h.
11689 (compute_output_file_names): Warn if we detect conflicting
11690 outputs to the same file. This should catch the misunderstanding
11691 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11692
11693 * src/conflicts.c (conflicts_print): If the user specifies
11694 "%expect N", report an error if there are any reduce/reduce
11695 conflicts. This is what the manual says should happen.
11696 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11697 * tests/conflicts.at (%expect with reduce conflicts): New test.
11698
11699 Don't use m4_include on relative file names, as it doesn't work as
11700 desired if there happens to be a file with that name under ".".
11701
11702 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11703 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11704 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11705 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11706 * src/output.c (output_skeleton): Use full path names when
11707 specifying a file to include; don't rely on include path, as
11708 it's unreliable when the working file contains a file with
11709 that name.
11710
11711 2002-12-25 Paul Eggert <eggert@twinsun.com>
11712
11713 Remove obsolete references to bison.simple and bison.hairy.
11714 Problem mentioned by Aubin Mahe in
11715 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11716 * data/glr.c: Comment fix.
11717 * doc/bison.1: Remove references. Also, mention "yacc".
11718
11719 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11720 with -g option.
11721
11722 * src/parse-gram.y (declaration): Use enum "report_states" rather
11723 than its numeric value 1.
11724
11725 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11726 opening a new one. This fixes Debian bug 165349, reported by
11727 Bruce Stephens.
11728
11729 2002-12-24 Paul Eggert <eggert@twinsun.com>
11730
11731 Version 1.75e.
11732
11733 * Makefile.maint (cvs-update): Don't assume that the shell
11734 supports $(...), as Solaris sh doesn't.
11735
11736 * src/parse-gram.y (lloc_default): Remove test for empty
11737 nonterminals at the end, since it didn't change the result.
11738
11739 2002-12-24 Paul Eggert <eggert@twinsun.com>
11740
11741 If the user does not define YYSTYPE as a macro, Bison now declares it
11742 using typedef instead of defining it as a macro. POSIX requires this.
11743 For consistency, YYLTYPE is also declared instead of defined.
11744
11745 %union directives can now have a tag before the `{', e.g., the
11746 directive `%union foo {...}' now generates the C code
11747 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11748 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11749 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11750 instead of `yyltype'.
11751
11752 `yystype' and `yyltype' are now obsolescent macros instead of being
11753 typedefs or tags; they are no longer documented and will be
11754 withdrawn in a future release.
11755
11756 * data/glr.c (b4_location_type): Remove.
11757 (YYSTYPE): Renamed from yystype.
11758 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11759 (struct YYLTYPE): Renamed from struct yyltype.
11760 (YYLTYPE): Renamed from yyltype.
11761 (yyltype, yystype): New (and obsolescent) macros,
11762 for backward compatibility.
11763 * data/yacc.c: Likewise.
11764
11765 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11766 does not specify a union tag. This is for compatibility with
11767 Solaris 9 yacc.
11768
11769 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11770 const *, since it is now modified by stripping surrounding { }.
11771 (current_braced_code): Remove.
11772 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11773 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11774 trailing " {...}". Now of type <chars>.
11775 (grammar_declaration): Adjust to bundled tokens.
11776 (code_content): Remove; stripping is now done by add_param.
11777 (print_token_value): Print contents of bundled tokens.
11778 (token_name): New function.
11779
11780 * src/reader.h (braced_code, current_braced_code): Remove.
11781 (token_name): New decl.
11782
11783 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11784 token_type, not braced_code code_kind. All uses changed.
11785 (SC_PRE_CODE): New state, for scanning after a keyword that
11786 has (or usually has) an immediately-following braced code.
11787 (token_type): New local var, to keep track of which token type
11788 to return when scanning braced code.
11789 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11790 <INITIAL>"%parse-param", <INITIAL>"%printer",
11791 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11792 instead of returning a token type immediately.
11793 (<INITIAL>"{"): Set token type.
11794 (<SC_BRACED_CODE>"}"): Use it.
11795 (handle_action_dollar, handle_action_at): Now returns bool
11796 indicating success. Fail if ! current_rule; this prevents a core dump.
11797 (handle_symbol_code_dollar, handle_symbol_code_at):
11798 Remove; merge body into caller.
11799 (handle_dollar, handle_at): Complain in invalid contexts.
11800
11801 * NEWS, doc/bison.texinfo: Document the above.
11802 * NEWS: Fix years and program names in copyright notice.
11803
11804 2002-12-17 Paul Eggert <eggert@twinsun.com>
11805
11806 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11807 Reporting, Table of Symbols): Omit mentions of %lex-param and
11808 %parse-param from the documentation for now.
11809
11810 2002-12-15 Paul Eggert <eggert@twinsun.com>
11811
11812 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11813 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11814 lookahead symbol, and which sets yychar in parser actions) and it
11815 disagreed with the Bison documentation. Bug
11816 reported by Andrew Walrond.
11817
11818 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11819 as the caller now does that.
11820 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11821 (YYEMPTY): Parenthesize right hand side, since others use it.
11822 (yyparse): Don't assume that our generated code is the only code
11823 that sets yychar.
11824
11825 2002-12-13 Paul Eggert <eggert@twinsun.com>
11826
11827 Version 1.75d.
11828
11829 POSIX requires a "yacc" command.
11830 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11831 (MOSTLYCLEANFILES): Add yacc.
11832 (yacc): New rule.
11833 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11834 as an alias for bison y.
11835
11836 * po/LINGUAS: Add da.
11837
11838 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11839 problem with latest <getopt.h>.
11840 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11841
11842 * doc/fdl.texi: Upgrade to 1.2.
11843 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11844 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11845 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11846 gnulib.
11847 * config/install-sh: Sync with autotools.
11848
11849 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11850 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11851 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11852 locations are requested.
11853 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11854 locations are requested.
11855
11856 2002-12-12 Paul Eggert <eggert@twinsun.com>
11857
11858 Remove unportable casts and storage allocation tricks.
11859 While we're at it, remove almost all casts, since they
11860 usually aren't needed and are a sign of trouble.
11861
11862 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11863
11864 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11865 the pointer DSET returned by malloc; this isn't portable.
11866 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11867 Similarly for DERIVES.
11868 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11869 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11870 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11871
11872 * src/derives.c (derives_compute): Do not bother invoking
11873 int_of_rule_number, since rule numbers are integers.
11874
11875 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11876 rather than XMALLOC (char, N).
11877
11878 * src/files.c (filename_split): Rewrite to avoid cast.
11879
11880 * src/gram.h (symbol_number_as_item_number,
11881 item_number_as_symbol_number, rule_number_as_item_number,
11882 item_number_as_rule_number):
11883 Now inline functions rather than macros, to avoid casts.
11884 * src/state.h (state_number_as_int): Likewise.
11885 * src/tables.c (state_number_to_vector_number,
11886 symbol_number_to_vector_number): Likewise.
11887
11888 * src/gram.h (int_of_rule_number): Remove; no longer used.
11889
11890 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11891 since the resulting storage is always stored into.
11892
11893 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11894 where it's needed.
11895
11896 * src/muscle_tab.c (muscle_m4_output):
11897 Now inline. Return bool, not int.
11898 * src/state.c (state_compare): Likewise.
11899 * src/symtab.c (symbol_check_defined,
11900 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11901 hash_compare_symbol, hash_symbol):
11902 Likewise.
11903 * src/uniqstr.c (uniqstr_print): Likewise.
11904 * src/muscle_tab.c (muscle_m4_output_processor):
11905 New function, to avoid casts.
11906 * src/state.c (state_comparator, stage_hasher): Likewise.
11907 * src/symtab.c (symbol_check_defined_processor,
11908 symbol_check_alias_consistency_processor, symbol_pack_processor,
11909 symbol_translation_processor, hash_symbol_comparator,
11910 hash_symbol_hasher): Likewise.
11911 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11912 * src/muscle_tab.c (muscles_m4_output):
11913 Use new functions instead of casting old functions unportably.
11914 * src/state.c (state_hash_new): Likewise.
11915 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11916 symbols_token_translations_init):
11917 Likewise.
11918 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11919
11920 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11921 var instead of casting to long, to avoid casts.
11922 (prepare_states): Use MALLOC rather than alloca, so that we don't
11923 have to worry about alloca.
11924 * src/state.c (state_hash_lookup): Likewise.
11925
11926 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11927 local var instead of casting to unsigned char, to avoid casts.
11928
11929 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11930 STATE_ALLOC): Remove.
11931 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11932 rather than calloc, and use offsetof to avoid allocating slightly
11933 too much storage.
11934 (state_new): Initialize all members.
11935
11936 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11937
11938 * src/symtab.c (symbol_free): Remove; unused.
11939 (symbol_get): Remove cast in lhs of assignment.
11940 (symbols_do): Now static. Accept generic arguments, not
11941 hashing-related ones.
11942
11943 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11944 (symbol_processor): Remove.
11945 (symbols_do): Remove decl; now static.
11946
11947 * src/system.h (alloca): Remove; decl no longer needed.
11948 (<stddef.h>): Include, for offsetof.
11949 (<inttypes.>, <stdint.h>): Include if available.
11950 (uintptr_t): New type, if system lacks it.
11951 (CALLOC, MALLOC, REALLOC): New macros.
11952 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11953 new macros.
11954
11955 * src/tables.c (table_size): Now int, to pacify GCC.
11956 (table_grow, table_ninf_remap): Use signed table size.
11957 (save_row): Don't bother initializing locals when not needed.
11958 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11959 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11960
11961 * src/vcg.h: Correct misspellings.
11962
11963 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11964
11965
11966 * src/getargs.c (getargs): Don't assume EOF == -1.
11967
11968 2002-12-09 Paul Eggert <eggert@twinsun.com>
11969
11970 Change identifier spellings to avoid collisions with names
11971 that are reserved by POSIX.
11972
11973 Don't use names ending in _t, since POSIX reserves them.
11974 For consistency, remove _e and _s endings -- they're weren't
11975 needed to remove ambiguity. All uses changed.
11976 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11977 turn was just renamed from struniq_t.
11978 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11979 which in turn was just renamed from struniq_processor_t.
11980 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11981 in turn was renamed from hash_compare_struniq_t.
11982 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11983 (state_list): Renamed from state_list_t.
11984 * src/assoc.h (assoc): Renamed from assoc_t.
11985 * src/conflicts.c (enum conflict_resolution): Renamed from
11986 enum conflict_resolution_e.
11987 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11988 (rule_list): Renamed from rule_list_t.
11989 * src/getargs.h (enum trace): Renamed from enum trace_e.
11990 (enum report): Renamed from enum report_e.
11991 * src/gram.h (item_number): Renamed from item_number_t.
11992 (rule_number): Renamed from rule_number_t.
11993 (struct rule_s): Remove the "rule_s" part; not used.
11994 (rule): Renamed from rule_t.
11995 (rule_filter): Renamed from rule_filter_t.
11996 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11997 (goto_list): Renamed from goto_list_t.
11998 * src/lalr.h (goto_number): Renamed from goto_number_t.
11999 * src/location.h (location): Renamed from location_t.
12000 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12001 and moved here from:
12002 * src/muscle_tab.h (muscle_entry_t): here.
12003 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12004 (rule_list): Renamed from rule_list_t.
12005 * src/print_graph.c (static_graph): Renamed from graph.
12006 * src/reader.h (braced_code): Renamed from braced_code_t.
12007 Remove brace_code_e tag.
12008 * src/relation.h (relation_node): Renamed from relation_node_t.
12009 (relation_nodes): Renamed from relation_nodes_t.
12010 (relation): Renamed from relation_t.
12011 * src/state.h (state_number): Renamed from state_number_t.
12012 (struct state): Renamed from struct state_s.
12013 (state): Renamed from state_t.
12014 (transitions): Renamed from transitions_t. Unused (and
12015 misspelled) transtion_s tag removed.
12016 (errs): Renamed from errs_t. Unused errs_s tag removed.
12017 (reductions): Renamed from reductions_t. Unused tag
12018 reductions_s removed.
12019 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12020 (struct symbol_list): Renamed from struct symbol_list_s.
12021 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12022 (struct symbol): Renamed from struct symbol_s.
12023 (symbol): Renamed from symbol_t.
12024 * src/tables.c (vector_number): Renamed from vector_number_t.
12025 (action_number): Renamed from action_t.
12026 * src/tables.h (base_number): Renamed from base_t.
12027 * src/vcg.h (enum color): Renamed from enum color_e.
12028 (enum textmode): Renamed from enum textmode_e.
12029 (enum shape): Renamed from enum shape_e.
12030 (struct colorentry): Renamed from struct colorentry_s.
12031 (struct classname): Renamed from struct classname_s.
12032 (struct infoname): Renamed from struct infoname_s.
12033 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12034 (enum decision): Renamed from enum decision_e.
12035 (enum orientation): Renamed from enum orientation_e.
12036 (enum alignment): Renamed from enum alignment_e.
12037 (enum arrow_mode): Renamed from enum arrow_mode_e.
12038 (enum crossing_type): Renamed from enum crossing_type_e.
12039 (enum view): Renamed from enum view_e.
12040 (struct node): Renamed from struct node_s.
12041 (node): Renamed from node_t.
12042 (enum linestyle): Renamed from enum linestyle_e.
12043 (enum arrowstyle): Renamed from enum arrowstyle_e.
12044 (struct edge): Renamed from struct edge.
12045 (edge): Renamed from edge_t.
12046 (struct graph): Renamed from struct graph_s.
12047 (graph): Renamed from graph_t.
12048 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12049 Rename value_t -> value.
12050 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12051 value_t_as_yystype -> value_as_yystype.
12052
12053 Don't include <errno.h> in the mainstream code, since it
12054 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12055 * lib/get-errno.c, lib/get-errno.h: New files.
12056 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12057 get-errno.c.
12058 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12059 * src/output.c (output_skeleton): Likewise.
12060 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12061 instead of errno.
12062 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12063 Likewise.
12064 (handle_action_dollar, handle_action_at): Likewise.
12065 * src/system.h: Do not include <errno.h>.
12066 (TAB_EXT): Renamed from EXT_TAB.
12067 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12068
12069 Avoid str[a-z]*, since <string.h> reserves that name space.
12070 Change all instances of "struniq" in names to "uniqstr", and
12071 likewise for "STRUNIQ" and "UNIQSTR".
12072 * src/uniqstr.c: Renamed from src/struniq.c.
12073 * src/uniqstr.h: Renamed from src/struniq.h.
12074 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12075 * src/files.c (strsuffix): Remove; unused.
12076 (concat2): Renamed from stringappend. Now static.
12077 * src/files.h (strsuffix, stringappend): Remove; unused.
12078 * src/parse-gram.y (<chars>): Renamed from <string>.
12079 (<uniqstr>): Renamed from <struniq>.
12080 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12081 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12082 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12083 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12084 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12085 (N_EXPAND): Renamed from N_STRETCH.
12086
12087 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12088 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12089 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12090 Remove; unused.
12091 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12092 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12093 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12094 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12095 (BASE_MAXIMUM): Renamed from BASE_MAX.
12096 (BASE_MINIMUM): Renamed from BASE_MIN.
12097 (ACTION_MAX): Remove; unused.
12098 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12099 Unnecessary casts removed from above defines.
12100
12101
12102 Fix misspelling in names.
12103 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12104 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12105 G_NODE_ALIGNEMENT.
12106
12107
12108 * lib/timevar.c (timevar_report): Renamed from time_report,
12109 for consistency with other names.
12110 * lib/timevar.h (timevar_report): New decl.
12111 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12112
12113
12114 Sort include-file uses.
12115
12116 Reorder all include files under src to be in the order "system.h".
12117 then the ../lib include files in angle brackets (alphabetized),
12118 then the . include files in double-quotes (alphabetized). Fix
12119 dependency breakages encountered in this process, as follows:
12120 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12121 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12122 * src/state.h: Include "symtab.h".
12123
12124 2002-12-08 Paul Eggert <eggert@twinsun.com>
12125
12126 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12127 since this causes problems when __file__ contains character
12128 sequences like "@" that are treated specially by src/scan-skel.l.
12129 Instead, just use the file's basename. This fixes the bug
12130 reported by Martin Mokrejs in
12131 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12132
12133 2002-12-06 Paul Eggert <eggert@twinsun.com>
12134
12135 Add support for rules that do not have trailing semicolons, as
12136 POSIX requires. Improve the quality of locations in Bison
12137 diagnostics.
12138
12139 * src/location.c: Include <quotearg.h>.
12140 (empty_location): Now const.
12141 (location_print): New function. Follow the recommendation of the
12142 GNU Coding Standards for locations that span file boundaries.
12143 * src/location.h: Do not include <quotearg.h>; no longer needed.
12144 (boundary): New type.
12145 (location_t): Use it. This allows locations to span file boundaries.
12146 All member uses changed: file -> start.file or end.file (as needed),
12147 first_line -> start.line, first_column -> start.column,
12148 last_line -> end.line, last_column -> end.column.
12149 (equal_boundaries): New function.
12150 (LOCATION_RESET, LOCATION_STEP): Remove.
12151 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12152 (empty_location): Now const.
12153 (location_print): New decl.
12154 * src/parse-gram.y (lloc_default): New function, which handles
12155 empty locations more accurately.
12156 (YYLLOC_DEFAULT): Use it.
12157 (%token COLON): Remove.
12158 (%token ID_COLON): New token.
12159 (rules): Use it.
12160 (declarations, rules): Remove trailing semicolon.
12161 (declaration, rules_or_grammar_declaration):
12162 Allow empty (";") declaration.
12163 (symbol_def): Remove empty actions; no longer needed.
12164 (rules_or_grammar_declaration): Remove trailing semicolon.
12165 (semi_colon.opt): Remove.
12166 * src/reader.h: Include location.h.
12167 (scanner_cursor): New decl.
12168 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12169 rolling our own.
12170 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12171 of *loc.
12172 (STEP): Remove. No longer needed, now that adjust_location does
12173 the work. All uses removed.
12174 (scanner_cursor): New var.
12175 (adjust_location): Renamed from extend_location. It now sets
12176 *loc and adjusts the scanner cursor. All uses changed.
12177 Don't bother testing for CR.
12178 (handle_syncline): Remove location arg; now updates scanner cursor.
12179 All callers changed.
12180 (unexpected_end_of_file): Now accepts start boundary of token or
12181 comment, not location. All callers changed. Update scanner cursor,
12182 not the location.
12183 (SC_AFTER_IDENTIFIER): New state.
12184 (context_state): Renamed from c_context. All uses changed.
12185 (id_loc, code_start, token_start): New local vars.
12186 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12187 processing of Yacc white space and equivalents here.
12188 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12189 instead of returning ID immediately, since we need to search for
12190 a subsequent colon.
12191 (<INITIAL>"'", "\""): Save token_start.
12192 (<INITIAL>"%{", "{", "%%"): Save code_start.
12193 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12194 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12195 BEGIN context_state at end, not INITIAL.
12196 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12197 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12198 Return correct token start.
12199 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12200 the start of a character, string or multiline comment is found.
12201 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12202 Reduction): Adjust reported locations to match the more-precise
12203 results now expected.
12204 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12205 * tests/reduce.at (Useless Rules, Reduced Automaton,
12206 Underivable Rules): Likewise.
12207 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12208 or "|"' now that so many other tokens are allowed by the new grammar.
12209
12210 * src/complain.h (current_file): Remove duplicate decl;
12211 current_file is now owned by files.h.
12212 * src/complain.c, src/scan-gram.l: Include files.h.
12213
12214 2002-12-06 Paul Eggert <eggert@twinsun.com>
12215
12216 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12217 promotes to int; it might be unsigned int.
12218 * data/yacc.c (yy_reduce_print): Likewise.
12219
12220 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12221 be #defined in the prologue, not in the Bison declarations.
12222 This fixes Debian Bug 102878, reported by Shaul Karl.
12223
12224 2002-12-02 Paul Eggert <eggert@twinsun.com>
12225
12226 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12227 * lib/strtoul.c: New file, from gnulib.
12228 This fixes a porting bug reported by Peter Klein in
12229 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12230
12231 2002-11-30 Paul Eggert <eggert@twinsun.com>
12232
12233 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12234 and put only a forward declaration in the prologue. This is for
12235 consistency with the other scanner helper functions.
12236
12237 Type clashes now generate warnings, not errors, since it
12238 appears that POSIX may allow some grammars with type clashes.
12239 * src/reader.c (grammar_current_rule_check): Warn about
12240 type clashes instead of complaining.
12241 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12242
12243 Add Yacc library, since POSIX requires it.
12244 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12245 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12246 * lib/main.c, lib/yyerror.c: New files.
12247
12248 gram_error can be static; it need not be extern.
12249 * src/reader.h (gram_error): Remove decl.
12250 * src/parse-gram.y (gram_error): Now static. Add static decl.
12251 (print_token_value): Omit parameter names from forward decl,
12252 for consistency.
12253
12254 2002-11-29 Paul Eggert <eggert@twinsun.com>
12255
12256 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12257 be declared before being used. E.g., one should typically
12258 declare them in the prologue. Use GNU coding style in examples.
12259 Put "const" consistently after the type it modifies. Mention
12260 that C99 supports "inline". Mention that yyerror traditionally
12261 returns "int".
12262
12263 %parse-param and %lex-param now take just one argument, the
12264 declaration; the argument name is deduced from the declaration.
12265
12266 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12267 Reporting, Table of Symbols): Document this.
12268 * src/parse-gram.y (add_param): New function.
12269 (COMMA): Remove.
12270 (declaration): Implement new rule for %parse-param and %lex-param.
12271 * src/scan-gram.l: "," now elicits a warning, rather than being
12272 a token; this is more compatible with byacc.
12273 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12274
12275 2002-11-27 Paul Eggert <eggert@twinsun.com>
12276
12277 Rename identifiers to avoid real and potential collisions.
12278
12279 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12280 to avoid collision with lex macro described by Bruce Lilly in
12281 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12282 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12283 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12284 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12285 All uses changed.
12286 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12287 The name "yycontrol" violates the name space rules, and this stuff
12288 wasn't being used anyway.
12289 (input): Remove action; this stuff wasn't being used.
12290 (gram_error): Rename local variable yylloc -> loc.
12291 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12292 (YY_DECL): Don't use "yy" at start of local variables.
12293 All uses changed, e.g., yylloc -> loc.
12294 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12295 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12296 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12297 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12298
12299 * src/parse-gram.y (gram_error): loc is now const *.
12300 * src/reader.h (gram_error): Likewise.
12301
12302 2002-11-24 Paul Eggert <eggert@twinsun.com>
12303
12304 Version 1.75c.
12305
12306 * tests/actions.at (Actions after errors): Use an output format
12307 more similar to that of the Printers and Destructors test.
12308 Test the position of the ';' token too.
12309 (Printers and Destructors): Likewise.
12310 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12311 unnecessarily alarming people when the test fails.
12312
12313 * data/yacc.c (yyerrlab1): Move this label down, so that the
12314 parser does not discard the lookahead token if the user code
12315 invokes YYERROR. This change is required for POSIX conformance.
12316
12317 * lib/error.c: Sync with gnulib.
12318
12319 2002-11-22 Paul Eggert <eggert@twinsun.com>
12320
12321 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12322 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12323 * lib/xmalloc.c: Likewise.
12324
12325 2002-11-20 Paul Eggert <eggert@twinsun.com>
12326
12327 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12328
12329 2002-11-20 Paul Eggert <eggert@twinsun.com>
12330
12331 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12332 should use `if (! x) abort ();' rather than `assert (x);', and
12333 anyway it's one less thing to worry about configuring.
12334
12335 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12336 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12337 and replace all instances of assert with abort.
12338 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12339 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12340
12341 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12342 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12343 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12344 hash_find_entry, hash_rehash, hash_insert): Likewise.
12345 * src/conflicts.c (resolve_sr_conflict): Likewise.
12346 * src/lalr.c (set_goto_map, map_goto): Likewise.
12347 * src/nullable.c (nullable_compute): Likewise.
12348 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12349 * src/reader.c (packgram, reader): Likewise.
12350 * src/state.c (state_new, state_free, state_transitions_set,
12351 state_reduction_find): Likewise.
12352 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12353 symbol_pack): Likewise.
12354 * src/tables.c (conflict_row, pack_vector): Likewise.
12355 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12356 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12357 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12358 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12359
12360 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12361 (ARGMATCH_CONSTRAINT): New macro.
12362 (ARGMATCH_ASSERT): Use it.
12363
12364 * src/system.h (verify): New macro.
12365 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12366 rather than assert.
12367 * src/tables.c (tables_generate): Likewise.
12368
12369 * src/struniq.c (struniq_assert): Now returns void, and aborts
12370 if the assertion is false.
12371 (struniq_assert_p): Remove.
12372 * src/struniq.h: Likewise.
12373
12374 2002-11-18 Paul Eggert <eggert@twinsun.com>
12375
12376 * data/glr.c (yygetLRActions): Replace `yyindex' with
12377 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12378 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12379 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12380
12381 2002-11-18 Akim Demaille <akim@epita.fr>
12382
12383 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12384 space.
12385 From Tim Van Holder.
12386
12387 2002-11-17 Paul Eggert <eggert@twinsun.com>
12388
12389 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12390 to "SyntaxError" for consistency with my 2002-11-15 change.
12391
12392 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12393 not define to {}, since this breaks the common use of `YYDPRINTF
12394 ((...));' if a single statement is desired (e.g. before `else').
12395 Work around GCC warnings by surrounding corresponding calls with
12396 {} if needed.
12397 (yyhasResolvedValue): Remove unused function.
12398 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12399 loop body.
12400 (yyreportSyntaxError): Renamed from yyreportParseError.
12401 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12402 All uses changed.
12403 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12404 extern when possible. Remove unused initializations.
12405
12406 2002-11-16 Akim Demaille <akim@epita.fr>
12407
12408 Augment the similarity between GLR and LALR traces.
12409
12410 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12411 (YY_REDUCE_PRINT): New.
12412 (yyparse): Use them.
12413 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12414 YYDPRINT here.
12415 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12416 state reached after the reduction/recovery, since...
12417 (yyparse, yyprocessOneStack): Report the state we are entering in.
12418
12419 2002-11-16 Akim Demaille <akim@epita.fr>
12420
12421 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12422 Add support for --trace=skeleton.
12423 * src/scan-skel.l: %option debug.
12424 Scan strings of non-@ or \n instead of character by character.
12425 (scan_skel): Handle trace_skeleton.
12426 (QPUTS): New.
12427 (@output_parser_name@, @output_header_name@): ``Restore'' their
12428 support (used to be M4 macros).
12429 * data/yacc.c: Quote larger chunks, a la glr.c.
12430 * data/lalr1.cc: Likewise.
12431 The header guards are no longer available, so use some other
12432 string than `YYLSP_NEEDED'.
12433
12434 2002-11-16 Akim Demaille <akim@epita.fr>
12435
12436 Make the ``Printers and Destructors'' test more verbose, taking
12437 `yacc.c''s behavior as (possibly wrong) reference.
12438
12439 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12440 instead of fprint on stdout.
12441 Set and report the last_line of the symbols.
12442 Consistently display values and locations.
12443
12444 2002-11-16 Paul Eggert <eggert@twinsun.com>
12445
12446 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12447
12448 2002-11-15 Paul Eggert <eggert@twinsun.com>
12449
12450 * tests/actions.at (Actions after errors): New test case.
12451
12452 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12453 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12454 tests/action.at, tests/calc.at, tests/conflicts.at,
12455 tests/cxx-type.at, tests/regression.at:
12456 "parse error" -> "syntax error" for POSIX compatibility.
12457 "parsing stack overflow..." -> "parser stack overflow" so
12458 that code matches Bison documentation.
12459
12460 2002-11-15 Akim Demaille <akim@epita.fr>
12461
12462 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12463 take two BRACED_CODE, not two string_content.
12464 Free the scanner's obstack when we are done.
12465 (code_content): New.
12466 * tests/calc.at: Adjust.
12467 * doc/bison.texinfo: Adjust.
12468 Also, make sure to include the `,' for these declarations.
12469
12470 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12471
12472 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12473 definition; avoids potential autoreconf problems.
12474
12475 2002-11-15 Akim Demaille <akim@epita.fr>
12476
12477 Always check the value returned by yyparse.
12478
12479 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12480 returned by yyparse.
12481 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12482 Adjust calls.
12483 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12484 returned by yyparse.
12485
12486 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12487
12488 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12489 on input.at test.
12490
12491 2002-11-14 Paul Eggert <eggert@twinsun.com>
12492
12493 * src/output.c (output_skeleton): Call xfopen instead of
12494 duplicating xfopen's body.
12495
12496 Fix bugs reported by Nelson H. F. Beebe in
12497 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12498
12499 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12500 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12501 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12502 file twice in the grammar, as an extra check.
12503
12504 * tests/input.at (Torturing the Scanner): Surround the
12505 backslash-newline tests with "#if 0", to make it less likely that
12506 we'll run into compiler bugs. Bring back solitary \ inside
12507 comment, but add a closing comment to work around HP C bug. Don't
12508 test backslash-newline in C character constant.
12509
12510 2002-11-14 Akim Demaille <akim@epita.fr>
12511
12512 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12513 status of the compiler.
12514 Calling `exit 1' is no longer needed.
12515 Reported by Nelson H. F. Beebe.
12516
12517 2002-11-14 Akim Demaille <akim@epita.fr>
12518
12519 * tests/atlocal.in (CPPFLAGS): We have config.h.
12520 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12521 New.
12522 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12523 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12524 * tests/regression.at, tests/torture.at: Use them for all the
12525 grammars that are to be compiled.
12526 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12527 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12528 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12529
12530 2002-11-14 Akim Demaille <akim@epita.fr>
12531
12532 * doc/bison.texinfo: Various formatting changes (alignments in
12533 samples, additional @group/@end group, GCS in samples.
12534 Use @deffn instead of simple @table to define the directives,
12535 macros, variables etc.
12536
12537 2002-11-13 Paul Eggert <eggert@twinsun.com>
12538
12539 Fix some bugs reported by Albert Chin-A-Young in
12540 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12541
12542 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12543 -o c"; the HP C compiler chatters during compilation.
12544 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12545 * tests/headers.at (export YYLTYPE): Likewise.
12546
12547 * tests/input.at (Torturing the Scanner): Remove lines containing
12548 solitary backslashes, as they tickle a bug in the HP C compiler.
12549
12550 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12551 comments, since they're not portable. Use GNU coding style.
12552
12553 2002-11-13 Akim Demaille <akim@epita.fr>
12554
12555 * data/yacc.c: Leave bigger chunks of quoted text.
12556 (YYDSYMPRINTF): New.
12557 Use it to report symbol activities.
12558 * data/glr.c (YYDSYMPRINTF): New.
12559 Use it.
12560
12561 2002-11-12 Paul Eggert <eggert@twinsun.com>
12562
12563 Version 1.75b.
12564
12565 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12566 (yyglrReduce): Return yyok, not 0.
12567 This should avoid the enumerated-type warnings reported
12568 by Nelson H. F. Beebe in
12569 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12570
12571 * lib/bbitset.h (BITSET_INLINE): Remove.
12572 * lib/bitset.h [! BITSET_INLINE]: Remove.
12573 (bitset_set, bitset_reset, bitset_test): Rename local vars
12574 to avoid shadowing warnings by GCC.
12575
12576 * data/glr.c (inline): Remove #define. It's the user's
12577 responsibility to #define it away, just like 'const'.
12578 This fixes one of the bugs reported by Nelson H. F. Beebe in
12579 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12580
12581 * Makefile.maint (po-check): Scan .l and .y files instead of the
12582 .c and the .h files that they generate. This fixes the bug
12583 reported by Tim Van Holder in:
12584 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12585 Look for N_ as well as for _. Try to avoid matching #define for
12586 N_ and _.
12587 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12588 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12589 * src/scan-gram.l: Revamp regular expressions so that " and '
12590 do not confuse xgettext.
12591
12592 * src/struniq.h (struniq_new): Do not declare the return type
12593 to be 'const'; this violates the C standard.
12594 * src/struniq.c (struniq_new): Likewise.
12595
12596 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12597
12598 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12599 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12600 linker.
12601
12602 2002-11-12 Akim Demaille <akim@epita.fr>
12603
12604 * Makefile.maint: Sync with Autoconf:
12605 (local_updates): New.
12606
12607 2002-11-12 Akim Demaille <akim@epita.fr>
12608
12609 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12610
12611 2002-11-12 Akim Demaille <akim@epita.fr>
12612
12613 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12614 locations.
12615
12616 2002-11-12 Akim Demaille <akim@epita.fr>
12617
12618 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12619 not yyvalue.
12620
12621 2002-11-12 Akim Demaille <akim@epita.fr>
12622
12623 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12624 Use it to test the GLR parser.
12625
12626 2002-11-12 Akim Demaille <akim@epita.fr>
12627
12628 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12629 defines it.
12630 * data/glr.c (yystos): New.
12631 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12632 (YYDSYMPRINT): New.
12633 (yyval): Don't define it, it is handled via M4.
12634 (yyrecoverParseError): Free verbosely the discarded symbols.
12635 * data/yacc.c (yysymprint): Remove, rather...
12636 (b4_yysymprint_generate): invoke.
12637 * data/c.m4 (b4_yysymprint_generate): New.
12638 Accept pointers as arguments, as opposed to the version from
12639 yacc.c.
12640 (b4_yydestruct_generate): Likewise.
12641 * tests/cations.at (Printers and Destructors): Use Bison directives
12642 instead of CPP macros.
12643 Don't rely on internal details.
12644
12645 2002-11-12 Akim Demaille <akim@epita.fr>
12646
12647 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12648 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12649 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12650 it against YYEMPTY and so forth), work on yytoken (i.e., set
12651 it to YYEMPTY etc.).
12652 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12653 (b4_symbol_actions): Remove.
12654 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12655 for 0, end-of-input.
12656
12657 2002-11-12 Akim Demaille <akim@epita.fr>
12658
12659 * doc/bison.texinfo (Destructor Decl): New.
12660
12661 2002-11-12 Akim Demaille <akim@epita.fr>
12662
12663 * src/tables.c (tables_generate): Use free for pointers that
12664 cannot be NULL, not XFREE.
12665 (pack_vector): Use assert, not fatal, for bound violations.
12666 * src/state.c (state_new): Likewise.
12667 * src/reader.c (reader): Likewise.
12668 * src/lalr.c (set_goto_map): Likewise.
12669 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12670 the file name.
12671
12672 2002-11-12 Akim Demaille <akim@epita.fr>
12673
12674 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12675 Restore.
12676 * src/scan-gram.l (last_string): Is global to the file, not to
12677 yylex.
12678 * src/parse-gram.y (input): Don't append the epilogue here,
12679 (epilogue.opt): do it here, and free the scanner's obstack.
12680 * src/reader.c (epilogue_set): Rename as...
12681 (epilogue_augment): this.
12682 * data/c.m4 (b4_epilogue): Defaults to empty.
12683
12684 2002-11-12 Akim Demaille <akim@epita.fr>
12685
12686 * src/getargs.c (long_options): Remove duplicates.
12687 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12688 Remove.
12689 * doc/bison.rnh: Remove.
12690 * doc/bison.texinfo (VMS Invocation): Remove.
12691
12692 2002-11-12 Akim Demaille <akim@epita.fr>
12693
12694 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12695 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12696
12697 Use struniq for symbols.
12698
12699 * src/symtab.h (symbol_t): The tag member is a struniq.
12700 (symbol_type_set): Adjust.
12701 * src/symtab.c (symbol_new): Takes a struniq.
12702 (symbol_free): Don't free the tag member.
12703 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12704 (hash_compare_symbol, hash_symbol): these.
12705 Use the fact that tags as struniqs.
12706 (symbol_get): Use struniq_new.
12707 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12708 Returns a strniq.
12709 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12710 and type members are struniqs.
12711 * src/reader.c (get_merge_function)
12712 (grammar_current_rule_merge_set): Adjust.
12713 (TYPE, current_type): Are struniq.
12714
12715 Use struniq for file names.
12716
12717 * src/files.h, src/files.c (infile): Split into...
12718 (grammar_file, current_file): these.
12719 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12720 * src/reduce.c (reduce_print): Likewise.
12721 * src/getargs.c (getargs): Likewise.
12722 * src/complain.h, src/complain.c: Likewise.
12723 * src/main.c (main): Call struniqs_new early enough to use it for
12724 file names.
12725 Don't free the input file name.
12726
12727 2002-11-12 Akim Demaille <akim@epita.fr>
12728
12729 * src/symtab.c (symbol_free): Remove dead deactivated code:
12730 type_name are properly removed.
12731 Don't use XFREE to free items that cannot be NULL.
12732 * src/struniq.h, src/struniq.c: New.
12733 * src/main.c (main): Initialize/free struniqs.
12734 * src/parse-gram.y (%union): Add astruniq member.
12735 (yyprint): Adjust.
12736 * src/scan-gram.l (<{tag}>): Return a struniq.
12737 Free the obstack bit that used to store it.
12738 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12739
12740 2002-11-11 Paul Eggert <eggert@twinsun.com>
12741
12742 Revamp to fix many (but not all) of the C- and M4-related quoting
12743 problems. Among other things, this fixes the Bison bug reported
12744 by Jan Hubicka when processing the Bash grammar; see:
12745 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12746
12747 Use new @ escapes consistently. Represent brackets with @{ and @}
12748 rather than @<:@ and @:>@, since this works a bit better with dumb
12749 editors like vi. Represent @ with @@, since @ is now consistently
12750 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12751 __ofile__, to avoid unexpected expansions. Similarly, use @output
12752 rather than #output.
12753
12754 * data/c.m4 (b4_copyright): Omit file name from comment, since
12755 the file name could contain "*/".
12756 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12757 be quoted. All uses changed.
12758
12759 * data/glr.c: Use new @ escapes consistently.
12760 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12761 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12762 Remove, since they couldn't handle arbitrary characters in file
12763 names.
12764 * data/lalr1.cc: Likewise.
12765 * data/yacc.c: Likewise.
12766
12767 * src/files.c (output_infix): Remove; all uses removed.
12768 * src/files.h: Likewise.
12769
12770 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12771 mishandled funny characters in file names, and anyway it isn't
12772 needed any more.
12773 * data/yacc.c: Likewise.
12774 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12775
12776 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12777 * data/yacc.c: Likewise.
12778
12779 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12780 strings now.
12781 (muscle_init): Quote filename as a C string.
12782 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12783 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12784 * src/output.c (escaped_file_name_output): New function.
12785 (prepare_symbols): Quote tokens for M4.
12786 (prepare): Don't insert output_infix, output_prefix,
12787 output_parser_name, output_header_name; this is now down by scan-skel.
12788 Insert skeleton as a C string.
12789
12790 * src/output.c (user_actions_output, symbol_destructors_output,
12791 symbol_printers_output): Quote filenames for C and M4.
12792 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12793
12794 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12795 escapes other than \\ and \'; this simplifies the code.
12796 (<SC_STRING>): Likewise, for \\ and \".
12797 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12798 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12799 Use new escapes @{ and @} for [ and ].
12800
12801 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12802 them with auto vars.
12803 Switch to new escape scheme, where @ is the escape character uniformly.
12804 Abort if a stray escape character is found. Avoid unbounded input
12805 buffer when parsing non-escaped text.
12806
12807 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12808 __oline__, #output, $@, and @{ do not have unintended meanings.
12809
12810 2002-11-09 Paul Eggert <eggert@twinsun.com>
12811
12812 Fix the test failure due to GCC warnings described in
12813 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12814 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12815 evaluate to 0 if it's impossible for NINF to be in the respective
12816 table.
12817 (yygetLRActions, yyrecoverParseError): Use them.
12818
12819 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12820 counted in the token inserted at end of file. Now takes
12821 location_t *, not location_t, so that the location can be
12822 adjusted. All uses changed.
12823
12824 * tests/regression.at (Invalid inputs): Adjust wording in
12825 diagnostic to match the new behavior.
12826
12827 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12828 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12829 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12830 abort ();'. This reduces the runtime of the "Many lookaheads"
12831 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12832 GCC 3.2.
12833
12834 2002-11-07 Paul Eggert <eggert@twinsun.com>
12835
12836 * src/parse-gram.y (CHARACTER): Remove unused token.
12837 All uses removed.
12838
12839 * src/scan-gram.l: Remove stack option. We no longer use the
12840 stack, since the stack was never deeper than 1; instead, use the
12841 new auto var c_context to record the stacked value.
12842
12843 Remove nounput option. At an unexpected end of file, we now unput
12844 the minimal input necessary to end cleanly; this simplifies the
12845 code.
12846
12847 Avoid unbounded token sizes where this is easy.
12848
12849 (unexpected_end_of_file): New function.
12850 Use it to systematize the error message on unexpected EOF.
12851 (last-string): Now auto, not static.
12852 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12853 (scanner_last_string_free): Remove; not used.
12854 (percent_percent_count): Move decl to just before use.
12855 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12856 not the (never otherwised-used) CHARACTER.
12857
12858 2002-11-07 Akim Demaille <akim@epita.fr>
12859
12860 Let yyerror always receive the msg as last argument, so that
12861 yyerror can be variadic.
12862
12863 * data/yacc.c (b4_yyerror_args): New.
12864 Use it when calling yyerror.
12865 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12866 Use it when calling yyerror.
12867 * doc/bison.texinfo (Error Reporting): Adjust.
12868 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12869 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12870
12871 2002-11-06 Akim Demaille <akim@epita.fr>
12872
12873 #line should have quoted strings.
12874 Ideally, this should be done by m4_quotearg.
12875
12876 * src/scan-skel.l: Include quotearg.h.
12877 Quote __ofile__.
12878 * src/output.c (symbol_printers_output)
12879 (symbol_destructors_output): Quote the file name.
12880
12881 2002-11-06 Akim Demaille <akim@epita.fr>
12882
12883 * tests/regression.at (Invalid inputs): Adjust to the recent
12884 messages.
12885
12886 2002-11-06 Akim Demaille <akim@epita.fr>
12887
12888 Restore --no-lines.
12889 Reported by Jim Kent.
12890
12891 * data/c.m4 (b4_syncline): New.
12892 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12893 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12894 * src/output.c (user_actions_output): Likewise.
12895 (prepare): Define 'b4_synclines_flag'.
12896 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12897
12898 2002-11-06 Akim Demaille <akim@epita.fr>
12899
12900 * src/main.c (main): Free `infile'.
12901 * src/scan-gram.l (handle_syncline): New.
12902 Recognize `#line'.
12903 * src/output.c (user_actions_output, symbol_destructors_output)
12904 (symbol_printers_output): Use the location's file name, not
12905 infile.
12906 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12907
12908 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12909
12910 * src/tables.c (matching_state): Don't allow states to match if
12911 either has GLR conflict entries.
12912
12913 2002-11-05 Paul Eggert <eggert@twinsun.com>
12914
12915 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12916 "integer out of range" rather than "invalid value".
12917 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12918 accordingly.
12919
12920 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12921 Also, remove one static variable in the scanner.
12922
12923 * src/scan-gram.l (braces_level): Now auto, not static.
12924 Initialize to zero if the compiler is being picky.
12925 (INITIAL): Clear braces_level instead of incrementing it.
12926 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12927 as POSIX 1003.1-2001 requires.
12928 * src/system.h (IF_LINT): New macro, taken from coreutils.
12929 * configure.ac: Define "lint" if --enable-gcc-warnings.
12930
12931 2002-11-05 Akim Demaille <akim@epita.fr>
12932
12933 * src/scan-gram.l: When it starts with `%', complain about the
12934 whole directive, not just that `invalid character: %'.
12935
12936 2002-11-04 Akim Demaille <akim@epita.fr>
12937
12938 * Makefile.maint: Update from Autoconf.
12939 (update, cvs-update, po-update, do-po-update): New.
12940
12941 2002-11-04 Akim Demaille <akim@epita.fr>
12942
12943 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12944 and yyerror.
12945 Have yyerror `use' its arguments.
12946 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12947 returns true when location & yacc & pure & parse-param.
12948 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12949
12950 2002-11-04 Akim Demaille <akim@epita.fr>
12951
12952 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12953 clashes.
12954 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12955 font-lock-mode.
12956 Use complain_at.
12957 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12958 slot 0.
12959
12960 2002-11-03 Paul Eggert <eggert@twinsun.com>
12961
12962 * src/reader.c (get_merge_function, grammar_current_rule_check):
12963 Use consistent diagnostics for reporting type name clashes.
12964 Quote the types with <>, for consistency with Yacc.
12965 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12966
12967 2002-11-03 Akim Demaille <akim@epita.fr>
12968
12969 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12970 New.
12971 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12972 (b4_parse_param): Remove.
12973 Use b4_identification.
12974 Propagate b4_pure_args where needed to pass them to yyerror.
12975 * data/glr.m4 (b4_parse_param): Remove.
12976 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12977 (b4_lpure_formals): New.
12978 Use b4_identification.
12979 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12980 b4_user_formals and b4_user_args.
12981 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12982 (yyreportAmbiguity): When using a pure parser, also need
12983 the location, and the parse-params.
12984 Adjust callers.
12985 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12986 When using a pure parser, also need the parse-params.
12987 Adjust callers.
12988 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12989 (%pure-parser + %parse-param) LALR and GLR parsers.
12990 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12991 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12992 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12993 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12994 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12995 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12996 * doc/bison.texinfo: Untabify the whole file.
12997 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12998 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12999 (Error Reporting): Adjust to these new directives.
13000 Document %error-verbose, deprecate YYERROR_VERBOSE.
13001
13002 2002-11-03 Akim Demaille <akim@epita.fr>
13003
13004 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13005 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13006 command line options.
13007 * tests/cxx-type.at: Formatting changes.
13008
13009 2002-11-03 Paul Eggert <eggert@twinsun.com>
13010
13011 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13012 to count columns correctly, and to check for invalid inputs.
13013
13014 Use mbsnwidth to count columns correctly. Account for tabs, too.
13015 Include mbswidth.h.
13016 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13017 (extend_location): New function.
13018 (YY_LINES): Remove.
13019
13020 Handle CRLF in C code rather than in Lex code.
13021 (YY_INPUT): New macro.
13022 (no_cr_read): New function.
13023
13024 Scan UCNs, even though we don't fully handle them yet.
13025 (convert_ucn_to_byte): New function.
13026
13027 Handle backslash-newline correctly in C code.
13028 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13029 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13030 all uses changed.
13031 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13032 Use {splice} wherever C allows backslash-newline.
13033 YY_STEP after space, newline, vertical-tab.
13034 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13035
13036 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13037
13038 ({int}, handle_action_dollar, handle_action_at): Check for integer
13039 overflow.
13040
13041 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13042
13043 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13044 as well as \000. Check for UCHAR_MAX, not 255.
13045 Allow \x with an arbitrary positive number of digits, as in C.
13046 Check for overflow here.
13047 Allow \? and UCNs, for compatibility with C.
13048
13049 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13050 with quote slot used by complain_at.
13051
13052 * tests/input.at: Add tests for backslash-newline, m4 quotes
13053 in symbols, long literals, and funny escapes in strings.
13054
13055 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13056 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13057 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13058 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13059 * m4/mbswidth.m4: New file, from GNU coreutils.
13060
13061 * doc/bison.texinfo (Grammar Outline): Document // comments.
13062 (Symbols): Document that trigraphs have no special meaning in Bison,
13063 nor is backslash-newline allowed.
13064 (Actions): Document that trigraphs have no special meaning.
13065
13066 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13067 no longer used.
13068
13069 2002-11-02 Paul Eggert <eggert@twinsun.com>
13070
13071 * src/reader.c: Don't include quote.h; not needed.
13072 (get_merge_function): Reword warning to be consistent with
13073 type clash diagnostic in grammar_current_rule_check.
13074
13075 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13076 bug in trigraph handling.
13077
13078 * src/output.c (prepare_symbols): When printing token names,
13079 escape "[" as "@<:@" and likewise for "]".
13080
13081 * src/system.h (errno): Remove declaration, as we are now
13082 assuming C89 or better, and C89 guarantees errno.
13083
13084 2002-10-30 Paul Eggert <eggert@twinsun.com>
13085
13086 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13087 Check for close failures.
13088 * src/files.h (xfclose): Return void, not int, since it always
13089 returned zero.
13090 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13091 indicates one.
13092 * src/output.c (output_skeleton): Use xfclose rather than fclose
13093 and ferror. xfclose now checks ferror.
13094
13095 * data/glr.c (YYLEFTMOST_STATE): Remove.
13096 (yyreportTree): Use a stack-based leftmost state. This avoids
13097 our continuing battles with bogus warnings about initializers.
13098
13099 2002-10-30 Akim Demaille <akim@epita.fr>
13100
13101 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13102 #if.
13103
13104 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13105
13106 * tests/glr-regr1.at: New test for reported regressions.
13107 * tests/testsuite.at: Add glr-regr1.at test.
13108 * tests/Makefile.am: Add glr-regr1.at test.
13109
13110 2002-10-24 Paul Eggert <eggert@twinsun.com>
13111
13112 Version 1.75a.
13113
13114 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13115 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13116 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13117 Don't assume strdup exists; POSIX says its an XSI extension.
13118 Check for buffer overflow on input.
13119
13120 2002-10-24 Akim Demaille <akim@epita.fr>
13121
13122 * src/output.c (output_skeleton): Don't disable M4sugar comments
13123 too soon: it results in comments being expanded.
13124 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13125 first output.
13126
13127 2002-10-24 Akim Demaille <akim@epita.fr>
13128
13129 * data/yacc.c (m4_int_type): New.
13130 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13131 char' as only yacc.c wants K&R portability.
13132 * data/glr.c (yysigned_char): Remove.
13133 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13134 Reported by Quoc Peyrot.
13135
13136 2002-10-23 Paul Eggert <eggert@twinsun.com>
13137
13138 * src/main.c (main): With --trace=time, report times even if a
13139 non-fatal error occurs. Formerly, the times were reported in some
13140 such cases but not in others.
13141 * src/reader.c (reader): Just return if a complaint has been issued,
13142 instead of exiting, so that 'main' can report times.
13143
13144 2002-10-22 Akim Demaille <akim@epita.fr>
13145
13146 * src/system.h: Include sys/types.
13147 Reported by Bert Deknuydt.
13148
13149 2002-10-23 Paul Eggert <eggert@twinsun.com>
13150
13151 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13152 Suggested by Art Haas.
13153
13154 2002-10-22 Paul Eggert <eggert@twinsun.com>
13155
13156 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13157 decl; not needed any more.
13158 * src/main.c (main): Use return to exit, undoing yesterday's change.
13159 The last OS that we could find where this wouldn't work is
13160 SunOS 3.5, and that's too old to worry about now.
13161
13162 * data/glr.c (struct yyltype): Define members even when not
13163 doing locations. This is more consistent with yacc.c, and it
13164 works around the following bug reports:
13165 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13166 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13167
13168 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13169 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13170 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13171
13172 2002-10-22 Akim Demaille <akim@epita.fr>
13173
13174 * data/README: New.
13175
13176 2002-10-21 Paul Eggert <eggert@twinsun.com>
13177
13178 Be consistent about 'bool'; the old code used an enum in one
13179 module and an int in another, and this violates the C standard.
13180 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13181 * configure.ac (AC_HEADER_STDBOOL): Add.
13182 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13183 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13184 * src/symtab.c (hash_compare_symbol_t): Likewise.
13185 * src/system.h (bool, false, true): Use a definition consistent
13186 with ../lib/hash.c. All uses changed.
13187
13188 * src/complain.c (warning_issued): Renamed from warn_message_count,
13189 so that we needn't worry about integer overflow (!).
13190 Now of type bool. All uses changed.
13191 (complaint_issued): Renamed from complain_message_count; likewise.
13192
13193 * src/main.c (main): Use exit to exit with failure.
13194
13195 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13196 rather than 1 and 0.
13197 * src/main.c (main): Likewise.
13198 * src/getargs.c (getargs): Likewise.
13199 * src/reader.c (reader): Likewise.
13200
13201 * src/getarg.c (getargs): Remove duplicate code for
13202 "Try `bison --help'".
13203
13204 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13205 What was that "2" for?
13206
13207 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13208 * src/getargs.c (usage): Likewise.
13209
13210 * src/getargs.c (getargs): When there are too few operands, report
13211 the last one. When there are too many, report the first extra
13212 one. This is how diffutils does it.
13213
13214 2002-10-20 Paul Eggert <eggert@twinsun.com>
13215
13216 Remove K&R vestiges.
13217 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13218 * src/complain.c (VA_START): Remove. Assume prototypes.
13219 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13220 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13221 fatal): Assume prototypes.
13222 * src/complain.h: Assume prototypes.
13223 * src/system.h (PARAMS): Remove.
13224 Include <limits.h> unconditionally, since it's guaranteeed even
13225 for a freestanding C89 compiler.
13226 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13227 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13228
13229 2002-10-20 Akim Demaille <akim@epita.fr>
13230
13231 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13232 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13233 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13234 (yyresolveStates, yyresolveAction, yyresolveStack)
13235 (yyprocessOneStack): Use them.
13236 (yy_reduce_print): New.
13237 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13238
13239 2002-10-20 Akim Demaille <akim@epita.fr>
13240
13241 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13242 arguments and output `void'.
13243 (b4_c_function): Rename as...
13244 (b4_c_function_def): this.
13245 (b4_c_function_decl, b4_c_ansi_function_def)
13246 (b4_c_ansi_function_decl): New.
13247 Change the interpretation of the arguments: before `int, foo', now
13248 `int foo, foo'.
13249 * data/yacc.c (yyparse): Prototype and define thanks to these.
13250 Adjust b4_c_function_def uses.
13251 * data/glr.c (yyparse): Likewise, but ANSI only.
13252
13253 2002-10-20 Akim Demaille <akim@epita.fr>
13254
13255 * src/output.c (prepare): Move the definition of `tokens_number',
13256 `nterms_number', `undef_token_number', `user_token_number_max'
13257 to...
13258 (prepare_tokens): Here.
13259 (prepare_tokens): Rename as...
13260 (prepare_symbols): this.
13261 (prepare): Move the definition of `rules_number' to...
13262 (prepare_rules): here.
13263 (prepare): Move the definition of `last', `final_state_number',
13264 `states_number' to...
13265 (prepare_states): here.
13266 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13267
13268 2002-10-20 Akim Demaille <akim@epita.fr>
13269
13270 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13271
13272 2002-10-20 Akim Demaille <akim@epita.fr>
13273
13274 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13275 * data/c.m4: here.
13276
13277 2002-10-20 Akim Demaille <akim@epita.fr>
13278
13279 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13280 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13281 `pair'.
13282 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13283 `name' to...
13284 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13285 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13286 These.
13287
13288 2002-10-19 Paul Eggert <eggert@twinsun.com>
13289
13290 Do not create a temporary file, as that involves security and
13291 cleanup headaches. Instead, use a pair of pipes.
13292 Derived from a suggestion by Florian Krohm.
13293 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13294 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13295 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13296 (BISON_PREREQ_SUBPIPE): Add.
13297 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13298 Add subpipe.h, subpipe.c.
13299 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13300 * po/POTFILES.in: Add lib/subpipe.c.
13301 * src/output.c: Include "subpipe.h".
13302 (m4_invoke): Remove decl.
13303 (scan_skel): New decl.
13304 (output_skeleton): Use pipe rather than temporary file for m4 input.
13305 Check that m4sugar.m4 is readable, to avoid deadlock.
13306 Check for pipe I/O error.
13307 * src/scan-skel.l (readpipe): Remove decl.
13308 (scan_skel): New function, to be used in place of m4_invoke.
13309 Read from stream rather than file.
13310
13311 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13312 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13313 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13314 this generates a more-accurate value anyway.
13315
13316 * lib/timevar.c (timervar_accumulate): Rename locals to
13317 avoid confusion with similarly-named more-global.
13318 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13319
13320 * src/output.c (prepare): Use xstrdup to convert char const *
13321 to char *, to avoid GCC warning.
13322
13323 2002-10-19 Akim Demaille <akim@epita.fr>
13324
13325 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13326 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13327 Use them to have `calc.y' ready for %pure-parser.
13328 * data/yacc.c (YYLEX): Pass a yylex return type to
13329 b4_c_function_call.
13330
13331 2002-10-19 Akim Demaille <akim@epita.fr>
13332
13333 Prototype support of %lex-param and %parse-param.
13334
13335 * src/parse-gram.y: Add the definition of the %lex-param and
13336 %parse-param tokens, plus their rules.
13337 Drop the `_' version of %glr-parser.
13338 Add the "," token.
13339 * src/scan-gram.l (INITIAL): Scan them.
13340 * src/muscle_tab.c: Comment changes.
13341 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13342 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13343 (muscle_entry_s): The `value' member is no longer const.
13344 Adjust all dependencies.
13345 * src/muscle_tab.c (muscle_init): Adjust: use
13346 MUSCLE_INSERT_STRING.
13347 Initialize the obstack earlier.
13348 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13349 (muscle_pair_list_grow): New.
13350 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13351 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13352 * tests/calc.at: Use %locations, not --locations.
13353 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13354
13355 2002-10-19 Akim Demaille <akim@epita.fr>
13356
13357 * src/getargs.c (usage): Take status as argument and exit
13358 accordingly.
13359 Report the traditional `Try ... --help' message when status != 0.
13360 (usage, version): Don't take a FILE * as arg, it is pointless.
13361 (getargs): When there is an incorrect number of arguments, make it
13362 an error, and report it GNUlically thanks to `usage ()'.
13363
13364 2002-10-18 Paul Eggert <eggert@twinsun.com>
13365
13366 * data/glr.c (yyreportParseError): Don't assume that sprintf
13367 yields the length of the printed string, as this is not true
13368 on SunOS 4.1.4. Reported by Peter Klein.
13369
13370 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13371 * tests/conflicts.at (%nonassoc and eof): Likewise.
13372 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13373
13374 2002-10-17 Akim Demaille <akim@epita.fr>
13375
13376 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13377 * src/getargs.c (trace_types, trace_args): Adjust.
13378 * src/reader.c (grammar_current_rule_prec_set)
13379 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13380 Standardize error messages.
13381 And s/@prec/%prec/!
13382 (reader): Use trace_flag to enable scanner/parser debugging,
13383 instead of an adhoc scheme.
13384 * src/scan-gram.l: Remove trailing debugging code.
13385
13386 2002-10-16 Paul Eggert <eggert@twinsun.com>
13387
13388 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13389 MUSCLE_TAB_H.
13390
13391 * NEWS: Officially drop support for building Bison with K&R C,
13392 since it didn't work anyway and it's not worth worrying about.
13393 * Makefile.maint (wget_files): Remove ansi2knr.c.
13394 (ansi2knr.c-url_prefix): Remove.
13395 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13396 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13397 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13398
13399 2002-10-15 Paul Eggert <eggert@twinsun.com>
13400
13401 Stop using the "enum_" trick for K&R-style function definitions;
13402 it confused me, and I was the author! Instead, assume that people
13403 who want to use K&R C compilers (when using these modules in GCC,
13404 perhaps?) will run ansi2knr.
13405
13406 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13407 All uses of "enum_" changed to "enum ".
13408 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13409 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13410
13411 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13412 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13413 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13414 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13415 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13416 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13417 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13418 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13419 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13420 Use function prototypes; this removes the need for declaring
13421 static functions simply to provide their prototypes.
13422 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13423 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13424 bitset_count_, bitset_create, bitset_dump, bitset_first,
13425 bitset_free, bitset_init, bitset_last, bitset_next,
13426 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13427 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13428 bitset_print, bitset_release_memory, bitset_toggle_,
13429 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13430 debug_bitset): Likewise.
13431 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13432 * lib/bitset_stats.c (bitset_log_histogram_print,
13433 bitset_percent_histogram_print, bitset_stats_and,
13434 bitset_stats_and_cmp, bitset_stats_and_or,
13435 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13436 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13437 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13438 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13439 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13440 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13441 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13442 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13443 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13444 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13445 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13446 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13447 bitset_stats_zero): Likewise.
13448 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13449 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13450 bitsetv_dump, debug_bitsetv): Likewise.
13451 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13452 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13453 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13454 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13455 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13456 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13457 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13458 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13459 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13460 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13461 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13462 Likewise.
13463 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13464 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13465 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13466 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13467 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13468 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13469 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13470 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13471 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13472 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13473 lbitset_xor_cmp, lbitset_zero): Likewise.
13474
13475 2002-10-14 Akim Demaille <akim@epita.fr>
13476
13477 Version 1.75.
13478
13479 2002-10-14 Akim Demaille <akim@epita.fr>
13480
13481 * tests/Makefile.am (maintainer-check-posix): New.
13482
13483 2002-10-14 Akim Demaille <akim@epita.fr>
13484
13485 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13486 member.
13487
13488 2002-10-14 Akim Demaille <akim@epita.fr>
13489
13490 * src/tables.c (table_ninf_remap): base -> tab.
13491 Reported by Matt Rosing.
13492
13493 2002-10-14 Paul Eggert <eggert@twinsun.com>
13494
13495 * tests/action.at, tests/calc.at, tests/conflicts.at,
13496 tests/cxx-type.at, tests/headers.at, tests/input.at,
13497 tests/regression.at, tests/synclines.at, tests/torture.at:
13498 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13499 so that the tests still work even if POSIXLY_CORRECT is set.
13500 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13501
13502 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13503 for portability to K&R hosts. Fix typo: signed char is guaranteed
13504 only to 127, not to 128.
13505 * data/glr.c (yysigned_char): New type.
13506 * data/yacc.c (yysigned_char): Likewise.
13507 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13508
13509 2002-10-13 Paul Eggert <eggert@twinsun.com>
13510
13511 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13512 true due to limited range of data type" warning from GCC.
13513
13514 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13515 by wrapping enum yytokentype's definition inside #ifndef
13516 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13517
13518 2002-10-13 Akim Demaille <akim@epita.fr>
13519
13520 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13521 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13522
13523 2002-10-13 Akim Demaille <akim@epita.fr>
13524
13525 * Makefile.maint: Update from Autoconf 2.54.
13526 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13527
13528 2002-10-13 Akim Demaille <akim@epita.fr>
13529
13530 * src/print.c (print_state): Separate the list of solved conflicts
13531 from the other items.
13532 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13533
13534 2002-10-13 Akim Demaille <akim@epita.fr>
13535
13536 Let nondeterministic skeletons be usable with deterministic
13537 tables.
13538
13539 With the patch, GAWK compiled by GCC without -O2 passes its test
13540 suite using a GLR parser driven by LALR tables. It fails with -O2
13541 because `struct stat' gives two different answers on my machine:
13542 88 (definition of an auto var) and later 96 (memset on this var).
13543 Hence the stack is badly corrumpted. The headers inclusion is to
13544 blame: if I move the awk.h inclusion before GLR's system header
13545 inclusion, the two struct stat have the same size.
13546
13547 * src/tables.c (pack_table): Always create conflict_table.
13548 (token_actions): Always create conflict_list.
13549 * data/glr.c (YYFLAG): Remove, unused.
13550
13551 2002-10-13 Akim Demaille <akim@epita.fr>
13552
13553 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13554 (O0FLAGS): New.
13555 (VALGRIND, GXX): New.
13556 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13557 * tests/bison.in: Run $PREBISON a pre-command.
13558 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13559 (maintainer-check-g++): New.
13560 * Makefile.am (maintainer-check): New.
13561
13562 2002-10-13 Akim Demaille <akim@epita.fr>
13563
13564 * data/glr.c: Formatting changes.
13565 Tweak some trace messages to match yacc.c's.
13566
13567 2002-10-13 Akim Demaille <akim@epita.fr>
13568
13569 GLR parsers sometimes raise parse errors instead of performing the
13570 default reduction.
13571 Reported by Charles-Henry de Boysson.
13572
13573 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13574 check the length of the traces when %glr.
13575 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13576 GLR's traces.
13577 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13578 Test GLR parsers.
13579 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13580 (yyltype): Remove the yy prefix from the member names.
13581 (yytable): Complete its comment.
13582 (yygetLRActions): Map error action number from YYTABLE from
13583 YYTABLE_NINF to 0.
13584 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13585 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13586 not satisfying as we could compare an YYACTION computed from
13587 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13588 only value for error actions.
13589 (yyreportParseError): In verbose parse error messages, don't issue
13590 `error' in the list of expected tokens.
13591 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13592 next action to perform to match glr.c's decoding.
13593 (yytable): Complete its comment.
13594
13595 2002-10-13 Paul Eggert <eggert@twinsun.com>
13596
13597 Fix problem reported by Henrik Grubbstroem in
13598 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13599 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13600 because the Bison parser reads the second action before reducing
13601 the first one.
13602 * src/scan-gram.l (rule_length): New static var.
13603 Use it to keep track of the rule length in the scanner, since
13604 we can't expect the parser to be in lock-step sync with the scanner.
13605 (handle_action_dollar, handle_action_at): Use this var.
13606 * tests/actions.at (Exotic Dollars): Test for the problem.
13607
13608 2002-10-12 Paul Eggert <eggert@twinsun.com>
13609
13610 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13611 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13612 Include <sys/time.h> when checking for clock_t and struct tms.
13613 Use same include order as source.
13614 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13615 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13616
13617 * lib/timevar.c: Update copyright date and clarify comments.
13618 (get_time) [IN_GCC]: Keep the GCC version for reference.
13619
13620 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13621 GCC version as of today, then merge Bison's changes.
13622 Change "GCC" to "Bison" in copyright notice. timevar.def's
13623 author is Akim, so change that too.
13624
13625 * src/reader.c (grammar_current_rule_check):
13626 Don't worry about the default action if $$ is untyped.
13627 Prevents bogus warnings reported by Jim Gifford in
13628 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13629
13630 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13631 * data/glr.c, data/lalr1.cc, data/yacc.c:
13632 Output token definitions before the first part of user declarations.
13633 Fixes compatibility problem reported by Jim Gifford for kbd in
13634 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13635
13636 2002-10-11 Paul Eggert <eggert@twinsun.com>
13637
13638 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13639 (yyparse): here. This undoes some of the 2002-07-25 change.
13640 Compatibility problem reported by Ralf S. Engelschall with
13641 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13642
13643 2002-10-11 Akim Demaille <akim@epita.fr>
13644
13645 * tests/regression.at Characters Escapes): New.
13646 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13647 characters.
13648 Reported by Jan Nieuwenhuizen.
13649
13650 2002-10-11 Akim Demaille <akim@epita.fr>
13651
13652 * po/id.po: New.
13653
13654 2002-10-10 Paul Eggert <eggert@twinsun.com>
13655
13656 Portability fixes for bitsets; this also avoids several GCC
13657 warnings.
13658
13659 * lib/abitset.c: Include <stddef.h>, for offsetof.
13660 * lib/lbitset.c: Likewise.
13661
13662 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13663 properly for vectors of objects. Do not assume that adding a
13664 header size to a multiple of a word size yields a value that is
13665 properly aligned for the whole union.
13666 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13667
13668 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13669 unique names for structures.
13670 * lib/ebitset.c (ebitset_bytes): Likewise.
13671 * lib/lbitset.c (lbitset_bytes): Likewise.
13672
13673 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13674 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13675 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13676 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13677 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13678 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13679 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13680 to improve the type-checking that GCC can do.
13681 * lib/bitset.c (bitset_op4_cmp): Likewise.
13682 * lib/bitset_stats.c (bitset_stats_count,
13683 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13684 bitset_stats_copy, bitset_stats_disjoint_p,
13685 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13686 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13687 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13688 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13689 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13690 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13691 bitset_stats_or_and_cmp): Likewise.
13692 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13693 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13694 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13695 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13696
13697 * lib/abitset.h: Include bitset.h, not bbitset.h.
13698 * lib/ebitset.h: Likewise.
13699 * lib/lbitset.h: Likewise.
13700
13701 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13702 All instances of parameters of type enum bitset_opts are now of
13703 type enum_bitset_opts, to conform to the C Standard, and similarly
13704 for enum_bitset_type.
13705 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13706 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13707
13708 Do not use "struct bitset_struct" to mean different things in
13709 different modules. Not only is this confusing, it violates
13710 the C Standard, which requires that structure types in different
13711 modules must be compatible if one is to be passed to the other.
13712 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13713 All instances of "struct bitset_struct *" replaced with "bitset".
13714 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13715 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13716 struct lbitset_struct, struct bitset_stats_struct): New types.
13717 All uses of struct bitset_struct changed to union bitset_union,
13718 etc.
13719 * lib/abitset.c (struct abitset_struct, abitset,
13720 struct bitset_struct): Remove.
13721 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13722 struct bitset_struct): Remove.
13723 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13724 bitset_struct): Remove.
13725 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13726 Likewise.
13727
13728 Do not call a function of type T using a call that assumes the
13729 function is of a different type U. Standard C requires that a
13730 function must be called with a type that is compatible with its
13731 definition.
13732 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13733 New decls.
13734 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13735 New functions.
13736 * lib/ebitset.c (PFV): Remove.
13737 * lib/lbitset.c (PFV): Likewise.
13738 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13739 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13740 decls.
13741 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13742 (ebitset_vtable): Use them.
13743 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13744 lbitset_xor): New functions.
13745 (lbitset_vtable): Use them.
13746
13747 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13748 Declare.
13749
13750 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13751 GCC warning.
13752 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13753 Use offsetof, for simplicity.
13754
13755 2002-10-06 Paul Eggert <eggert@twinsun.com>
13756
13757 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13758 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13759 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13760 which was inadvertently undone by the 2002-09-30 patch.
13761 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13762 the same width as int.
13763
13764 2002-10-04 Paul Eggert <eggert@twinsun.com>
13765
13766 Version 1.50.
13767
13768 * configure.ac (AC_INIT), NEWS: Increment version number.
13769
13770 * doc/bison.texinfo: Minor spelling, grammar, and white space
13771 fixes.
13772 (Symbols): Mention that any negative value returned from yylex
13773 signifies end-of-input. Warn about negative chars. Mention
13774 the portable Standard C character set.
13775
13776 The GNU coding standard says CFLAGS and YFLAGS are reserved
13777 for the installer to set.
13778 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13779 * src/Makefile.am (AM_CFLAGS): Likewise.
13780 (AM_YFLAGS): Renamed from YFLAGS.
13781
13782 Fix some MAX and MIN problems.
13783 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13784 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13785 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13786 * src/reader.c (reader): Use it.
13787
13788 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13789 POSIX 1003.1-2001 has removed fgrep.
13790
13791 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13792
13793 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13794 interpreted as signed.
13795 * lib/ebitset.c (ebitset_list): Fix bug.
13796
13797 2002-10-01 Paul Eggert <eggert@twinsun.com>
13798
13799 More fixes for 64-bit hosts and large bitsets.
13800
13801 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13802 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13803 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13804 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13805 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13806 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13807 bitset_count_): Likewise.
13808 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13809 bitset_first, bitset_last): Likewise.
13810 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13811 bitset_stats_list_reverse, bitset_stats_size,
13812 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13813 Likewise.
13814 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13815 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13816 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13817 bitsetv_reflexive_transitive_closure): Likewise.
13818 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13819 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13820 Likewise.
13821 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13822 Likewise.
13823
13824 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13825 Use size_t, not unsigned int, to count bytes.
13826 * lib/abitset.h (abitset_bytes): Likewise.
13827 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13828 Likewise.
13829 * lib/bitset.h (bitset_bytes): Likewise.
13830 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13831 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13832 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13833 * lib/ebitset.c (ebitset_bytes): Likewise.
13834 * lib/ebitset.h (ebitset_bytes): Likewise.
13835 * lib/lbitset.c (lbitset_bytes): Likewise.
13836 * lib/lbitset.h (lbitset_bytes): Likewise.
13837
13838 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13839 abitset_subset_p, abitset_disjoint_p, abitset_and,
13840 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13841 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13842 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13843 abitset_or_and, abitset_or_and_cmp):
13844 Use bitset_windex instead of unsigned int.
13845 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13846 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13847 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13848 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13849 Likewise.
13850 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13851
13852 * lib/bitset.c (bitset_print):
13853 Use proper printf formats for widths of integer types.
13854 * lib/bitset_stats.c (bitset_percent_histogram_print,
13855 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13856 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13857 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13858 * lib/lbitset.c (lbitset_bytes): Likewise.
13859
13860 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13861 BITSET_SIZE_MAX): New macros.
13862 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13863 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13864 to BITSET_WINDEX_MAX.
13865
13866 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13867 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13868 since we now return the bitset_bindex type (not int).
13869
13870 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13871 when computing sizes.
13872 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13873
13874 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13875 and avoid cast to unsigned.
13876
13877 2002-09-30 Akim Demaille <akim@epita.fr>
13878
13879 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13880 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13881 Updates from Michael Hayes.
13882
13883 2002-09-30 Art Haas <ahaas@neosoft.com>
13884
13885 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13886 invocations.
13887 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13888 defined.
13889
13890 2002-09-27 Akim Demaille <akim@epita.fr>
13891
13892 Version 1.49c.
13893
13894 2002-09-27 Akim Demaille <akim@epita.fr>
13895
13896 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13897 (Because of AC_LIBSOURCE).
13898
13899 2002-09-27 Akim Demaille <akim@epita.fr>
13900
13901 Playing with Autoscan.
13902
13903 * configure.ac: Remove the old LIBOBJ tweaks.
13904 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13905 * lib/strrchr.c: New.
13906 * lib/strtol.c: New, from the Coreutils 4.5.1.
13907
13908 2002-09-27 Akim Demaille <akim@epita.fr>
13909
13910 Playing with Autoscan.
13911
13912 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13913 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13914 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13915 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13916 Coreutils 4.5.1.
13917
13918 2002-09-24 Akim Demaille <akim@epita.fr>
13919
13920 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13921 (Frequently Asked Questions, Parser Stack Overflow): New.
13922
13923 2002-09-13 Akim Demaille <akim@epita.fr>
13924
13925 Playing with autoscan.
13926
13927 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13928 * src/files.c (skeleton_find): Remove, unused.
13929 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13930 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13931
13932 2002-09-13 Akim Demaille <akim@epita.fr>
13933
13934 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13935 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13936
13937 2002-09-13 Akim Demaille <akim@epita.fr>
13938
13939 * configure.ac: Require 2.54.
13940 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13941 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13942 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13943 Remove, provided by Autoconf macros.
13944
13945 2002-09-12 Akim Demaille <akim@epita.fr>
13946
13947 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13948
13949 2002-09-12 Akim Demaille <akim@epita.fr>
13950
13951 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13952 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13953 Reported by Martin Mokrejs.
13954
13955 2002-09-10 Akim Demaille <akim@epita.fr>
13956
13957 * src/parse-gram.y: Associate a human readable string to each
13958 token type.
13959 * tests/regression.at (Invalid inputs): Adjust.
13960
13961 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13962
13963 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13964 with an Autoconf-2.5x style configure.ac.
13965
13966 2002-09-06 Paul Eggert <eggert@twinsun.com>
13967
13968 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13969 exception applies only to yacc.c. This is a modification of a
13970 patch originally suggested by Akim Demaille.
13971
13972 2002-09-06 Akim Demaille <akim@epita.fr>
13973
13974 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13975 here to...
13976 * data/yacc.c: here.
13977
13978 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13979 LocationType.
13980 (b4_ltype): Default to yy::Location from location.hh.
13981
13982 2002-09-04 Jim Meyering <jim@meyering.net>
13983
13984 * data/yacc.c: Guard the declaration of yytoknum also with
13985 `#ifdef YYPRINT', so it is declared only when used.
13986
13987 2002-09-04 Akim Demaille <akim@epita.fr>
13988
13989 * configure.in: Rename as...
13990 * configure.ac: this.
13991 Bump to 1.49c.
13992
13993 2002-09-04 Akim Demaille <akim@epita.fr>
13994
13995 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13996 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13997 translate maintainer only messages.
13998
13999 2002-08-12 Paul Eggert <eggert@twinsun.com>
14000
14001 Version 1.49b.
14002
14003 * Makefile.am (SUBDIRS): Remove intl.
14004 (DISTCLEANFILES): Remove.
14005 * NEWS: Mention that GNU M4 is now required. Clarify what is
14006 meant by "larger grammars". Mention the pt_BR translation.
14007 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14008 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14009 Bump version from 0.11.2 to 0.11.5.
14010 (BISON_PREREQ_STAGE): Remove.
14011 (AM_GNU_GETTEXT): Use external gettext.
14012 (AC_OUTPUT): Remove intl/Makefile.
14013
14014 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14015
14016 * data/glr.c: Include string.h, for strlen.
14017 (yyreportParseError): Use size_t for yysize.
14018 (yy_yypstack): No longer nested inside yypstates, as nested
14019 functions are not portable. Do not assume size_t is the
14020 same width as int.
14021 (yypstates): Do not assume that ptrdiff_t is the same width
14022 as int, and similarly for yyposn and YYINDEX.
14023
14024 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14025
14026 * lib/Makefile.am (INCLUDES): Do not include from the intl
14027 directory, which has been removed.
14028 * src/Makefile.am (INCLUDES): Likewise.
14029
14030 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14031 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14032 New vars.
14033
14034 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14035 * tests/Makefile.am (EXTRA_DIST): Likewise.
14036
14037 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14038 Do not assume that bitset_windex is the same width as unsigned.
14039
14040 * lib/abitset.c (abitset_unused_clear): Do not assume that
14041 bitset_word is the same width as int.
14042 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14043 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14044 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14045 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14046 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14047
14048 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14049 portability to one's complement hosts!).
14050 * lib/ebitset.c (ebitset_op1): Likewise.
14051 * lib/lbitset.c (lbitset_op1): Likewise.
14052
14053 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14054 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14055 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14056 Sync with fileutils.
14057 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14058 lib/gettext.h: Sync with diffutils.
14059
14060 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14061 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14062
14063 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14064 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14065 check for void *.
14066
14067 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14068 size_t; the old version tried to do this but casted improperly.
14069 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14070 (bitset_test): Now returns int, not unsigned long.
14071
14072 * lib/bitset_stats.c: Include "gettext.h".
14073 (_): New macro.
14074 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14075 name locals "index", as it generates unnecessary warnings on some
14076 hosts that have an "index" function.
14077
14078 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14079 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14080 they need translation.
14081 * src/LR0.c (state_list_append, new_itemsets, get_state,
14082 append_states, generate_states): Likewise.
14083 * src/assoc.c (assoc_to_string): Likewise.
14084 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14085 * src/gram.c (grammar_dump): Likewise.
14086 * src/injections.c (injections_compute): Likewise.
14087 * src/lalr.c (lookaheads_print): Likewise.
14088 * src/relation.c (relation_transpose): Likewise.
14089 * src/scan-gram.l: Likewise.
14090 * src/tables.c (table_grow, pack_vector): Likewise.
14091
14092 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14093 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14094 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14095 * m4/mbstate_t.m4: Sync with fileutils.
14096 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14097
14098 * po/LINGUAS: Add pt_BR.
14099 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14100 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14101 lib/timevar.c.
14102 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14103 manual recommends.
14104 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14105
14106 * src/complain.c (strerror_r): Remove decl; not needed.
14107 (strerror): Use same pattern as ../lib/error.c.
14108
14109 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14110
14111 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14112
14113 * src/main.c (main): Cast result of bindtextdomain and textdomain
14114 to void, to avoid a GCC warning when --disable-nls is in effect.
14115
14116 * src/scan-gram.l: Use strings rather than escapes when possible,
14117 to minimize the number of warnings from xgettext.
14118 (handle_action_dollar, handle_action_at): Don't use isdigit,
14119 as it mishandles negative chars and it may not work as expected
14120 outside the C locale.
14121
14122 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14123 this is a GCC extension and is not portable to other compilers.
14124
14125 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14126 Do not include <ctype.h>; no longer needed.
14127 Do not include <malloc.h>; no longer needed (and generates
14128 warnings on OpenBSD 3.0).
14129
14130 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14131 it's not portable.
14132
14133 * tests/regression.at: Do not use 'cc -c input.c -o input';
14134 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14135
14136 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14137 exit status as failure, not just exit status 1. Sun C exits
14138 with status 2 sometimes.
14139
14140 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14141 Use it for the two large tests.
14142
14143 2002-08-02 Akim Demaille <akim@epita.fr>
14144
14145 * src/conflicts.c (conflicts_output): Don't output rules never
14146 reduced here, since anyway that computation doesn't work.
14147 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14148 (rule_useless_p, rule_never_reduced_p): New.
14149 (grammar_rules_partial_print): Use a filter instead of a range.
14150 Display the title only if needed.
14151 (grammar_rules_print): Adjust.
14152 (grammar_rules_never_reduced_report): New.
14153 * src/tables.c (action_row): Move the computation of rules never
14154 reduced to...
14155 (token_actions): here.
14156 * src/main.c (main): Make the parser before making the report, so
14157 that rules never reduced are computed.
14158 Call grammar_rules_never_reduced_report.
14159 * src/print.c (print_results): Report rules never reduced.
14160 * tests/conflicts.at, tests/reduce.at: Adjust.
14161
14162 2002-08-01 Akim Demaille <akim@epita.fr>
14163
14164 Instead of attaching lookaheads and duplicating the rules being
14165 reduced by a state, attach the lookaheads to the reductions.
14166
14167 * src/state.h (state_t): Remove the `lookaheads',
14168 `lookaheads_rule' member.
14169 (reductions_t): Add a `lookaheads' member.
14170 Use a regular array for the `rules'.
14171 * src/state.c (reductions_new): Initialize the lookaheads member
14172 to 0.
14173 (state_rule_lookaheads_print): Adjust.
14174 * src/state.h, src/state.c (state_reductions_find): New.
14175 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14176 (count_rr_conflicts): Adjust.
14177 * src/lalr.c (LArule): Remove.
14178 (add_lookback_edge): Adjust.
14179 (state_lookaheads_count): New.
14180 (states_lookaheads_initialize): Merge into...
14181 (initialize_LA): this.
14182 (lalr_free): Adjust.
14183 * src/main.c (main): Don't free nullable and derives too early: it
14184 is used by --verbose.
14185 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14186
14187 2002-08-01 Akim Demaille <akim@epita.fr>
14188
14189 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14190 `rule_number_t**'.
14191 (set_derives, free_derives): Rename as...
14192 (derives_compute, derives_free): this.
14193 Adjust all dependencies.
14194 * src/nullable.c (set_nullable, free_nullable): Rename as...
14195 (nullable_compute, nullable_free): these.
14196 (rule_list_t): Store rule_t *, not rule_number_t.
14197 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14198 pointers, instead of their numbers.
14199 * src/main.c (main): Call nullable_free, and derives_free earlier,
14200 as they were lo longer used.
14201
14202 2002-08-01 Akim Demaille <akim@epita.fr>
14203
14204 * lib/timevar.c (get_time): Include children time.
14205 * src/lalr.h (LA, LArule): Don't export them: used with the
14206 state_t.
14207 * src/lalr.c (LA, LArule): Static.
14208 * src/lalr.h, src/lalr.c (lalr_free): New.
14209 * src/main.c (main): Call it.
14210 * src/tables.c (pack_vector): Check whether loc is >= to the
14211 table_size, not >.
14212 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14213 (tables_generate): do it, since that's also it which allocates
14214 them.
14215 Don't free LA and LArule, main does.
14216
14217 2002-07-31 Akim Demaille <akim@epita.fr>
14218
14219 Separate parser tables computation and output.
14220
14221 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14222 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14223 (yydefgoto, yydefact, high): Move to...
14224 * src/tables.h, src/tables.c: here.
14225 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14226 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14227 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14228 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14229 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14230 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14231 (action_row, save_row, token_actions, save_column, default_goto)
14232 (goto_actions, sort_actions, matching_state, pack_vector)
14233 (table_ninf_remap, pack_table, prepare_actions): Move to...
14234 * src/tables.c: here.
14235 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14236 * src/output.c (token_actions, output_base, output_conflicts)
14237 (output_check): Merge into...
14238 (prepare_actions): this.
14239 (actions_output): Rename as...
14240 (user_actions_output): this.
14241 * src/main.c (main): Call tables_generate and tables_free.
14242
14243 2002-07-31 Akim Demaille <akim@epita.fr>
14244
14245 Steal GCC's --time-report support.
14246
14247 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14248 stolen/adjusted from GCC.
14249 * m4/stage.m4: Remove time related checks.
14250 * m4/timevar.m4: New.
14251 * configure.in: Adjust.
14252 * src/system.h: Adjust to using timevar.h.
14253 * src/getargs.h, src/getargs.c: Support trace_time for
14254 --trace=time.
14255 * src/main.c (stage): Remove.
14256 (main): Replace `stage' invocations with timevar calls.
14257 * src/output.c: Insert pertinent timevar calls.
14258
14259 2002-07-31 Akim Demaille <akim@epita.fr>
14260
14261 Let --trace have arguments.
14262
14263 * src/getargs.h (enum trace_e): New.
14264 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14265 (long_options, short_options): --trace/-T takes an optional
14266 argument.
14267 Change all the uses of trace_flag to reflect the new flags.
14268 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14269
14270 Strengthen `stage' portability.
14271
14272 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14273 * configure.in: Use it.
14274 Don't check for malloc.h and sys/times.h.
14275 * src/system.h: Include them when appropriate.
14276 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14277 times and struct tms are available.
14278
14279 2002-07-30 Akim Demaille <akim@epita.fr>
14280
14281 In verbose parse error message, don't report `error' as an
14282 expected token.
14283 * tests/actions.at (Printers and Destructors): Adjust.
14284 * tests/calc.at (Calculator $1): Adjust.
14285 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14286 error message, do not report the parser accepts the error token in
14287 that state.
14288
14289 2002-07-30 Akim Demaille <akim@epita.fr>
14290
14291 Normalize conflict related messages.
14292
14293 * src/complain.h, src/complain.c (warn, complain): New.
14294 * src/conflicts.c (conflicts_print): Use them.
14295 (conflict_report_yacc): New, extracted from...
14296 (conflicts_print): here.
14297 * tests/conflicts.at, tests/existing.at: Adjust.
14298
14299 2002-07-30 Akim Demaille <akim@epita.fr>
14300
14301 Report rules which are never reduced by the parser: those hidden
14302 by conflicts.
14303
14304 * src/LR0.c (save_reductions): Don't make the final state too
14305 different: save its reduction (accept) instead of having a state
14306 without any action (no shift or goto, no reduce).
14307 Note: the final state is now a ``regular'' state, i.e., the
14308 parsers now contain `reduce 0' as default reduction.
14309 Nevertheless, since they decide to `accept' when yystate =
14310 final_state, they still will not reduce rule 0.
14311 * src/print.c (print_actions, print_reduction): Adjust.
14312 * src/output.c (action_row): Track reduced rules.
14313 (token_actions): Report rules never reduced.
14314 * tests/conflicts.at, tests/regression.at: Adjust.
14315
14316 2002-07-30 Akim Demaille <akim@epita.fr>
14317
14318 `stage' was accidently included in a previous patch.
14319 Initiate its autoconfiscation.
14320
14321 * configure.in: Look for malloc.h and sys/times.h.
14322 * src/main.c (stage): Adjust.
14323 Report only when trace_flag.
14324
14325 2002-07-29 Akim Demaille <akim@epita.fr>
14326
14327 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14328 state_number_t.
14329 (errs_t): symbol_t*, not symbol_number_t.
14330 (reductions_t): rule_t*, not rule_number_t.
14331 (FOR_EACH_SHIFT): New.
14332 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14333 * src/print.c, src/print_graph.c: Adjust.
14334
14335 2002-07-29 Akim Demaille <akim@epita.fr>
14336
14337 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14338
14339 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14340 (endtoken, accept): these.
14341 * src/reader.c (reader): Set endtoken's default tag to "$end".
14342 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14343 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14344 Adjust.
14345
14346 2002-07-29 Akim Demaille <akim@epita.fr>
14347
14348 * src/reduce.c (reduce_grammar): When the language is empty,
14349 complain about the start symbol, not the axiom.
14350 Use its location.
14351 * tests/reduce.at (Empty Language): New.
14352
14353 2002-07-26 Akim Demaille <akim@epita.fr>
14354
14355 * src/reader.h, src/reader.c (gram_error): ... can't get
14356 yycontrol without making too strong assumptions on the parser
14357 itself.
14358 * src/output.c (prepare_tokens): Use the real 0th value of
14359 token_translations instead of `0'.
14360 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14361 visible here.
14362 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14363 for the time being: %locations ought to provide it to yyerror.
14364
14365 2002-07-25 Akim Demaille <akim@epita.fr>
14366
14367 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14368 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14369 * tests/regression.at (Web2c Actions): Adjust.
14370
14371 2002-07-25 Akim Demaille <akim@epita.fr>
14372
14373 Stop storing rules from 1 to nrules + 1.
14374
14375 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14376 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14377 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14378 Iterate from 0 to nrules.
14379 Use rule_number_as_item_number and item_number_as_rule_number.
14380 Adjust to `derive' now containing possibly 0.
14381 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14382 Handle the `- 1' part in rule numbers from/to item numbers.
14383 * src/conflicts.c (log_resolution): Fix the message which reversed
14384 shift and reduce.
14385 * src/output.c (action_row): Initialize default_rule to -1.
14386 (token_actions): Adjust.
14387 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14388 expected output.
14389 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14390
14391 2002-07-25 Akim Demaille <akim@epita.fr>
14392
14393 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14394 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14395 (b4_c_knr_arg_decl): New.
14396 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14397 yyreport_parse_error.
14398
14399 2002-07-25 Akim Demaille <akim@epita.fr>
14400
14401 * data/yacc.c (yyreport_parse_error): New, extracted from...
14402 (yyparse): here.
14403 (yydestruct, yysymprint): Move above yyparse.
14404 Be K&R compliant.
14405
14406 2002-07-25 Akim Demaille <akim@epita.fr>
14407
14408 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14409 replace...
14410 (b4_sint_type, b4_uint_type): these.
14411 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14412 * tests/regression.at (Web2c Actions): Adjust.
14413
14414 2002-07-25 Akim Demaille <akim@epita.fr>
14415
14416 * src/gram.h (TIEM_NUMBER_MAX): New.
14417 (item_number_of_rule_number, rule_number_of_item_number): Rename
14418 as...
14419 (rule_number_as_item_number, item_number_as_rule_number): these.
14420 Adjust dependencies.
14421 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14422 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14423 (symbol_number_to_vector_number): New.
14424 (order): Of vector_number_t* type.
14425 (base_t, BASE_MAX, BASE_MIN): New.
14426 (froms, tos, width, pos, check): Of base_t type.
14427 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14428 (actrow): Of action_number_t type.
14429 (conflrow): Of unsigned int type.
14430 (table_ninf, base_ninf): New.
14431 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14432 (muscle_insert_int_table, muscle_insert_base_table)
14433 (muscle_insert_rule_number_table): New.
14434 (prepare_tokens): Output `toknum' as int_table.
14435 (action_row): Returns a rule_number_t.
14436 Use ACTION_MIN, not SHRT_MIN.
14437 (token_actions): yydefact is rule_number_t*.
14438 (table_ninf_remap): New.
14439 (pack_table): Use it for `base' and `table'.
14440 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14441 replaced with...
14442 (YYPACT_NINF, YYTABLE_NINF): these.
14443 (yypact, yytable): Compute their types instead of hard-coded
14444 `short'.
14445 * tests/regression.at (Web2c Actions): Adjust.
14446
14447 2002-07-19 Akim Demaille <akim@epita.fr>
14448
14449 * src/scan-gram.l (id): Can start with an underscore.
14450
14451 2002-07-16 Akim Demaille <akim@epita.fr>
14452
14453 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14454 Adjust all former `associativity' dependencies.
14455 * src/symtab.c (symbol_new): Default associativity is `undef', not
14456 `right'.
14457 (symbol_check_alias_consistence): Adjust.
14458
14459 2002-07-09 Akim Demaille <akim@epita.fr>
14460
14461 * doc/bison.texinfo: Properly set the ``header'' part.
14462 Use @dircategory ``GNU programming tools'' as per Texinfo's
14463 documentation.
14464 Use @copying.
14465
14466 2002-07-09 Akim Demaille <akim@epita.fr>
14467
14468 * lib/quotearg.h: Protect against multiple inclusions.
14469 * src/location.h (location_t): Add a `file' member.
14470 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14471 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14472 `error_one_per_line' support.
14473
14474 2002-07-09 Akim Demaille <akim@epita.fr>
14475
14476 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14477 * src/reader.c (lineno): Remove.
14478 Adjust all dependencies.
14479 (get_merge_function): Take a location and use complain_at.
14480 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14481 * tests/regression.at (Invalid inputs, Mixing %token styles):
14482 Adjust.
14483
14484 2002-07-09 Akim Demaille <akim@epita.fr>
14485
14486 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14487 recovery rule, and forbid extensions when --yacc.
14488 (gram_error): Use complain_at.
14489 * src/reader.c (reader): Exit if there were parse errors.
14490
14491 2002-07-09 Akim Demaille <akim@epita.fr>
14492
14493 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14494 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14495 Reported by R Blake <blakers@mac.com>.
14496
14497 2002-07-09 Akim Demaille <akim@epita.fr>
14498
14499 * data/yacc.c: Output the copyright notive in the header.
14500
14501 2002-07-03 Akim Demaille <akim@epita.fr>
14502
14503 * src/output.c (froms, tos): Are state_number_t.
14504 (save_column): sp, sp1, and sp2 are state_number_t.
14505 (prepare): Rename `final' as `final_state_number', `nnts' as
14506 `nterms_number', `nrules' as `rules_number', `nstates' as
14507 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14508 unused.
14509 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14510 * data/lalr1.cc (nsym_): Remove, unused.
14511
14512 2002-07-03 Akim Demaille <akim@epita.fr>
14513
14514 * src/lalr.h, src/lalr.c (goto_number_t): New.
14515 * src/lalr.c (goto_list_t): New.
14516 Propagate them.
14517 * src/nullable.c (rule_list_t): New.
14518 Propagate.
14519 * src/types.h: Remove.
14520
14521 2002-07-03 Akim Demaille <akim@epita.fr>
14522
14523 * src/closure.c (print_fderives): Use rule_rhs_print.
14524 * src/derives.c (print_derives): Use rule_rhs_print.
14525 (rule_list_t): New, replaces `shorts'.
14526 (set_derives): Add comments.
14527 * tests/sets.at (Nullable, Firsts): Adjust.
14528
14529 2002-07-03 Akim Demaille <akim@epita.fr>
14530
14531 * src/output.c (prepare_actions): Free `tally' and `width'.
14532 (prepare_actions): Allocate and free `order'.
14533 * src/symtab.c (symbols_free): Free `symbols'.
14534 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14535 * src/output.c (m4_invoke): Move to...
14536 * src/scan-skel.l: here.
14537 (<<EOF>>): Close yyout, and free its name.
14538
14539 2002-07-03 Akim Demaille <akim@epita.fr>
14540
14541 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14542
14543 * src/LR0.c (new_state): Merge into...
14544 (state_list_append): this.
14545 (new_states): Merge into...
14546 (generate_states): here.
14547 (set_states): Don't ensure a proper `errs' state member here, do it...
14548 * src/conflicts.c (conflicts_solve): here.
14549 * src/state.h, src/state.c: Comment changes.
14550 (state_t): Rename member `shifts' as `transitions'.
14551 Adjust all dependencies.
14552 (errs_new): For consistency, also take the values as argument.
14553 (errs_dup): Remove.
14554 (state_errs_set): New.
14555 (state_reductions_set, state_transitions_set): Assert that no
14556 previous value was assigned.
14557 (state_free): New.
14558 (states_free): Use it.
14559 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14560 temporary storage: use `errs' and `nerrs' as elsewhere.
14561 (set_conflicts): Allocate and free this `errs'.
14562
14563 2002-07-02 Akim Demaille <akim@epita.fr>
14564
14565 * lib/libiberty.h: New.
14566 * lib: Update the bitset implementation from upstream.
14567 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14568 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14569 * src/main.c: Adjust bitset stats calls.
14570
14571 2002-07-01 Paul Eggert <eggert@twinsun.com>
14572
14573 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14574 char, so that negative chars don't collide with $.
14575
14576 2002-06-30 Akim Demaille <akim@epita.fr>
14577
14578 Have the GLR tests be `warning' checked, and fix the warnings.
14579
14580 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14581 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14582 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14583 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14584 (yyaddDeferredAction): static.
14585 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14586 (yyreportParseError): yyprefix is const.
14587 yytokenp is used only when verbose.
14588 (yy__GNUC__): Replace with __GNUC__.
14589 (yypdumpstack): yyi is size_t.
14590 (yypreference): Un-yy local variables and arguments, to avoid
14591 clashes with `yyr1'. Anyway, we are not in the user name space.
14592 (yytname_size): be an int, as is compared with ints.
14593 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14594 Use them.
14595 * tests/cxx-gram.at: Use quotation to protect $1.
14596 Use AT_COMPILE to enable warnings hunts.
14597 Prototype yylex and yyerror.
14598 `Use' argc.
14599 Include `string.h', not `strings.h'.
14600 Produce and prototype stmtMerge only when used.
14601 yylex takes a location.
14602
14603 2002-06-30 Akim Demaille <akim@epita.fr>
14604
14605 We spend a lot of time in quotearg, in particular when --verbose.
14606
14607 * src/symtab.c (symbol_get): Store a quoted version of the key.
14608 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14609 Adjust all callers.
14610
14611 2002-06-30 Akim Demaille <akim@epita.fr>
14612
14613 * src/state.h (reductions_t): Rename member `nreds' as num.
14614 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14615 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14616
14617 2002-06-30 Akim Demaille <akim@epita.fr>
14618
14619 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14620 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14621 (shifts_to): Rename as...
14622 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14623 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14624 (TRANSITION_IS_DISABLED, transitions_to): these.
14625
14626 2002-06-30 Akim Demaille <akim@epita.fr>
14627
14628 * src/print.c (print_shifts, print_gotos): Merge into...
14629 (print_transitions): this.
14630 (print_transitions, print_errs, print_reductions): Align the
14631 lookaheads columns.
14632 (print_core, print_transitions, print_errs, print_state,
14633 print_grammar): Output empty lines separator before, not after.
14634 (state_default_rule_compute): Rename as...
14635 (state_default_rule): this.
14636 * tests/conflicts.at (Defaulted Conflicted Reduction),
14637 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14638 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14639
14640 2002-06-30 Akim Demaille <akim@epita.fr>
14641
14642 Display items as we display rules.
14643
14644 * src/gram.h, src/gram.c (rule_lhs_print): New.
14645 * src/gram.c (grammar_rules_partial_print): Use it.
14646 * src/print.c (print_core): Likewise.
14647 * tests/conflicts.at (Defaulted Conflicted Reduction),
14648 (Unresolved SR Conflicts): Adjust.
14649 (Unresolved SR Conflicts): Adjust and rename as...
14650 (Resolved SR Conflicts): this, as was meant.
14651 * tests/regression.at (Web2c Report): Adjust.
14652
14653 2002-06-30 Akim Demaille <akim@epita.fr>
14654
14655 * src/print.c (state_default_rule_compute): New, extracted from...
14656 (print_reductions): here.
14657 Pessimize, but clarify the code.
14658 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14659
14660 2002-06-30 Akim Demaille <akim@epita.fr>
14661
14662 * src/output.c (action_row): Let default_rule be always a rule
14663 number.
14664
14665 2002-06-30 Akim Demaille <akim@epita.fr>
14666
14667 * src/closure.c (print_firsts, print_fderives, closure):
14668 Use BITSET_EXECUTE.
14669 * src/lalr.c (lookaheads_print): Likewise.
14670 * src/state.c (state_rule_lookaheads_print): Likewise.
14671 * src/print_graph.c (print_core): Likewise.
14672 * src/print.c (print_reductions): Likewise.
14673 * src/output.c (action_row): Likewise.
14674 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14675
14676 2002-06-30 Akim Demaille <akim@epita.fr>
14677
14678 * src/print_graph.c: Use report_flag.
14679
14680 2002-06-30 Akim Demaille <akim@epita.fr>
14681
14682 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14683 to...
14684 * src/relation.h, src/relation.c (traverse, relation_digraph)
14685 (relation_print, relation_transpose): New.
14686
14687 2002-06-30 Akim Demaille <akim@epita.fr>
14688
14689 * src/state.h, src/state.c (shifts_to): New.
14690 * src/lalr.c (build_relations): Use it.
14691
14692 2002-06-30 Akim Demaille <akim@epita.fr>
14693
14694 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14695 (item_number_of_rule_number, rule_number_of_item_number): New.
14696 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14697 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14698 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14699 Propagate their use.
14700 Much remains to be done, in particular wrt `shorts' from types.h.
14701
14702 2002-06-30 Akim Demaille <akim@epita.fr>
14703
14704 * src/symtab.c (symbol_new): Initialize the `printer' member.
14705
14706 2002-06-30 Akim Demaille <akim@epita.fr>
14707
14708 * src/LR0.c (save_reductions): Remove, replaced by...
14709 * src/state.h, src/state.c (state_reductions_set): New.
14710 (reductions, errs): Rename as...
14711 (reductions_t, errs_t): these.
14712 Adjust all dependencies.
14713
14714 2002-06-30 Akim Demaille <akim@epita.fr>
14715
14716 * src/LR0.c (state_list_t, state_list_append): New.
14717 (first_state, last_state): Now symbol_list_t.
14718 (this_state): Remove.
14719 (new_itemsets, append_states, save_reductions): Take a state_t as
14720 argument.
14721 (set_states, generate_states): Adjust.
14722 (save_shifts): Remove, replaced by...
14723 * src/state.h, src/state.c (state_shifts_set): New.
14724 (shifts): Rename as...
14725 (shifts_t): this.
14726 Adjust all dependencies.
14727 * src/state.h (state_t): Remove the `next' member.
14728
14729 2002-06-30 Akim Demaille <akim@epita.fr>
14730
14731 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14732 escaped in slot 0.
14733
14734 2002-06-30 Akim Demaille <akim@epita.fr>
14735
14736 Use hash.h for the state hash table.
14737
14738 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14739 (allocate_storage): Use state_hash_new.
14740 (free_storage): Use state_hash_free.
14741 (new_state, get_state): Adjust.
14742 * src/lalr.h, src/lalr.c (states): Move to...
14743 * src/states.h (state_t): Remove the `link' member, no longer
14744 used.
14745 * src/states.h, src/states.c: here.
14746 (state_hash_new, state_hash_free, state_hash_lookup)
14747 (state_hash_insert, states_free): New.
14748 * src/states.c (state_table, state_compare, state_hash): New.
14749 * src/output.c (output_actions): Do not free states now, since we
14750 still need to know the final_state number in `prepare', called
14751 afterwards. Do it...
14752 * src/main.c (main): here: call states_free after `output'.
14753
14754 2002-06-30 Akim Demaille <akim@epita.fr>
14755
14756 * src/state.h, src/state.c (state_new): New, extracted from...
14757 * src/LR0.c (new_state): here.
14758 * src/state.h (STATE_ALLOC): Move to...
14759 * src/state.c: here.
14760 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14761 * src/state.h, src/state.c: here.
14762
14763 2002-06-30 Akim Demaille <akim@epita.fr>
14764
14765 * src/reader.c (gensym): Rename as...
14766 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14767 (getsym): Rename as...
14768 (symbol_get): this.
14769
14770 2002-06-30 Akim Demaille <akim@epita.fr>
14771
14772 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14773 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14774 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14775 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14776
14777 2002-06-30 Akim Demaille <akim@epita.fr>
14778
14779 Make the test suite pass with warnings checked.
14780
14781 * tests/actions.at (Printers and Destructors): Improve.
14782 Avoid unsigned vs. signed issues.
14783 * tests/calc.at: Don't exercise the scanner here, do it...
14784 * tests/input.at (Torturing the Scanner): here.
14785
14786 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14787
14788 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14789 reorganize first lines parallel to yacc.c.
14790
14791 2002-06-28 Akim Demaille <akim@epita.fr>
14792
14793 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14794 (b4_token_enum, b4_token_defines): New, factored from...
14795 * data/lalr1.cc, data/yacc.c, glr.c: here.
14796
14797 2002-06-28 Akim Demaille <akim@epita.fr>
14798
14799 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14800 unused variables.
14801 * src/output.c (merger_output): static.
14802
14803 2002-06-28 Akim Demaille <akim@epita.fr>
14804
14805 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14806 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14807 pacify GCC.
14808 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14809
14810 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14811
14812 Accumulated changelog for new GLR parsing features.
14813
14814 * src/conflicts.c (count_total_conflicts): Change name to
14815 conflicts_total_count.
14816 * src/conflicts.h: Ditto.
14817 * src/output.c (token_actions): Use the new name.
14818 (output_conflicts): Change conflp => conflict_list_heads, and
14819 confl => conflict_list for better readability.
14820 * data/glr.c: Use the new names.
14821 * NEWS: Add self to GLR announcement.
14822
14823 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14824
14825 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14826 Akim Demaille.
14827
14828 * data/bison.glr: Change name to glr.c
14829 * data/glr.c: Renamed from bison.glr.
14830 * data/Makefile.am: Add glr.c
14831
14832 * src/getargs.c:
14833
14834 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14835 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14836
14837 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14838
14839 * data/bison.glr: Be sure to restore the
14840 current #line when returning to the skeleton contents after having
14841 exposed the input file's #line.
14842
14843 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14844
14845 * data/bison.glr: Bring up to date with changes to bison.simple.
14846
14847 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14848
14849 * data/bison.glr: Correct definitions that use b4_prefix.
14850 Various reformatting.
14851 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14852 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14853 yytokenp argument; now part of stack.
14854 (yychar): Define to behave as documented.
14855 (yyclearin): Ditto.
14856
14857 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14858
14859 * src/reader.h: Add declaration for free_merger_functions.
14860
14861 * src/reader.c (merge_functions): New variable.
14862 (get_merge_function): New function.
14863 (free_merger_functions): New function.
14864 (readgram): Check for %prec that is not followed by a symbol.
14865 Handle %dprec and %merge declarations.
14866 (packgram): Initialize dprec and merger fields in rules array.
14867
14868 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14869 conflict_list_cnt, conflict_list_free): New variables.
14870 (table_grow): Also grow conflict_table.
14871 (prepare_rules): Output dprec and merger tables.
14872 (conflict_row): New function.
14873 (action_row): Output conflict lists for GLR parser. Don't use
14874 default reduction in conflicted states for GLR parser so that there
14875 are spaces for the conflict lists.
14876 (save_row): Also save conflict information.
14877 (token_actions): Allocate conflict list.
14878 (merger_output): New function.
14879 (pack_vector): Pack conflict table, too.
14880 (output_conflicts): New function to output yyconflp and yyconfl.
14881 (output_check): Allocate conflict_tos.
14882 (output_actions): Output conflict tables, also.
14883 (output_skeleton): Output b4_mergers definition.
14884 (prepare): Output b4_max_rhs_length definition.
14885 Use 'bison.glr' as default skeleton for GLR parsers.
14886
14887 * src/gram.c (glr_parser): New flag.
14888 (grammar_free): Call free_merger_functions.
14889
14890 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14891 all pairs of conflicting reductions, rather than just all tokens
14892 causing conflicts. Needed to size conflict tables.
14893 (conflicts_output): Modify call to count_rr_conflicts for new
14894 interface.
14895 (conflicts_print): Ditto.
14896 (count_total_conflicts): New function.
14897
14898 * src/reader.h (merger_list): New type.
14899 (merge_functions): New variable.
14900
14901 * src/lex.h (tok_dprec, tok_merge): New token types.
14902
14903 * src/gram.h (rule_s): Add dprec and merger fields.
14904 (glr_parser): New flag.
14905
14906 * src/conflicts.h (count_total_conflicts): New function.
14907
14908 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14909
14910 * doc/bison.texinfo (Generalized LR Parsing): New section.
14911 (GLR Parsers): New section.
14912 (Language and Grammar): Mention GLR parsing.
14913 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14914 Correct typo ("tge" -> "the").
14915
14916 * data/bison.glr: New skeleton for GLR parsing.
14917
14918 * tests/cxx-gram.at: New tests for GLR parsing.
14919
14920 * tests/testsuite.at: Include cxx-gram.at.
14921
14922 * tests/Makefile.am: Add cxx-gram.at.
14923
14924 * src/parse-gram.y:
14925
14926 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14927
14928 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14929
14930 2002-06-27 Akim Demaille <akim@epita.fr>
14931
14932 * src/options.h, src/options.c: Remove.
14933 * src/getargs.c (short_options, long_options): New.
14934
14935 2002-06-27 Akim Demaille <akim@epita.fr>
14936
14937 * data/bison.simple, data/bison.c++: Rename as...
14938 * data/yacc.c, data/lalr1.cc: these.
14939 * doc/bison.texinfo (Environment Variables): Remove.
14940
14941 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14942
14943 * src/getargs.c (report_argmatch): Initialize strtok().
14944
14945 2002-06-20 Akim Demaille <akim@epita.fr>
14946
14947 * data/bison.simple (b4_symbol_actions): New, replaces...
14948 (b4_symbol_destructor, b4_symbol_printer): these.
14949 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14950 user token numbers.
14951
14952 2002-06-20 Akim Demaille <akim@epita.fr>
14953
14954 * data/bison.simple (yydestructor): Rename as...
14955 (yydestruct): this.
14956
14957 2002-06-20 Akim Demaille <akim@epita.fr>
14958
14959 * src/symtab.h, src/symtab.c (symbol_type_set)
14960 (symbol_destructor_set, symbol_precedence_set): The location is
14961 the last argument.
14962 Adjust all callers.
14963
14964 2002-06-20 Akim Demaille <akim@epita.fr>
14965
14966 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14967 internals.
14968 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14969 Takes a location.
14970 * src/symtab.h, src/symtab.c (symbol_class_set)
14971 (symbol_user_token_number_set): Likewise.
14972 Adjust all callers.
14973 Promote complain_at.
14974 * tests/input.at (Type Clashes): Adjust.
14975
14976 2002-06-20 Akim Demaille <akim@epita.fr>
14977
14978 * data/bison.simple (YYLEX): Fix the declaration when
14979 %pure-parser.
14980
14981 2002-06-20 Akim Demaille <akim@epita.fr>
14982
14983 * data/bison.simple (yysymprint): Don't print the token number,
14984 just its name.
14985 * tests/actions.at (Destructors): Rename as...
14986 (Printers and Destructors): this.
14987 Also exercise %printer.
14988
14989 2002-06-20 Akim Demaille <akim@epita.fr>
14990
14991 * data/bison.simple (YYDSYMPRINT): New.
14992 Use it to remove many of the #if YYDEBUG/if (yydebug).
14993
14994 2002-06-20 Akim Demaille <akim@epita.fr>
14995
14996 * src/symtab.h, src/symtab.c (symbol_t): printer and
14997 printer_location are new members.
14998 (symbol_printer_set): New.
14999 * src/parse-gram.y (PERCENT_PRINTER): New token.
15000 Handle its associated rule.
15001 * src/scan-gram.l: Adjust.
15002 (handle_destructor_at, handle_destructor_dollar): Rename as...
15003 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15004 * src/output.c (symbol_printers_output): New.
15005 (output_skeleton): Call it.
15006 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15007 since there are already many grammar files with a user `yyprint'.
15008 Replace the calls to YYPRINT to calls to yysymprint.
15009 * tests/calc.at: Adjust.
15010 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15011 taking advantage of parser very internal details (stack size!).
15012
15013 2002-06-20 Akim Demaille <akim@epita.fr>
15014
15015 * src/scan-gram.l: Complete the scanner with the missing patterns
15016 to pacify Flex.
15017 Use `quote' and `symbol_tag_get' where appropriate.
15018
15019 2002-06-19 Akim Demaille <akim@epita.fr>
15020
15021 * tests/actions.at (Destructors): Augment to test locations.
15022 * data/bison.simple (yydestructor): Pass it the current location
15023 if locations are enabled.
15024 Prototype only when __STDC__ or C++.
15025 Change the argument names to move into the yy name space: there is
15026 user code here.
15027
15028 2002-06-19 Akim Demaille <akim@epita.fr>
15029
15030 * data/bison.simple (b4_pure_if): New.
15031 Use it instead of #ifdef YYPURE.
15032
15033 2002-06-19 Akim Demaille <akim@epita.fr>
15034
15035 * data/bison.simple (b4_location_if): New.
15036 Use it instead of #ifdef YYLSP_NEEDED.
15037
15038 2002-06-19 Akim Demaille <akim@epita.fr>
15039
15040 Prepare @$ in %destructor, but currently don't bind it in the
15041 skeleton, as %location use is not cleaned up yet.
15042
15043 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15044 (handle_action_at): New.
15045 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15046 a braced_code_t and a location as additional arguments.
15047 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15048 unquote one when outputting `b4_dollar_dollar'.
15049 Adjust callers.
15050 * data/bison.simple (b4_eval): Remove.
15051 (b4_symbol_destructor): Adjust.
15052 * tests/input.at (Invalid @n): Adjust.
15053
15054 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15055
15056 * doc/bison.texinfo: Document ability to have multiple
15057 prologue sections.
15058
15059 2002-06-18 Akim Demaille <akim@epita.fr>
15060
15061 * src/files.c (compute_base_names): When computing the output file
15062 names from the input file name, strip the directory part.
15063
15064 2002-06-18 Akim Demaille <akim@epita.fr>
15065
15066 * data/bison.simple.new: Comment changes.
15067 Reported by Andreas Schwab.
15068
15069 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15070
15071 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15072 there are no `label `yyoverflowlab' defined but not used' warnings
15073 when yyoverflow is defined.
15074
15075 2002-06-18 Akim Demaille <akim@epita.fr>
15076
15077 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15078 new member.
15079 (symbol_destructor_set): Adjust.
15080 * src/output.c (symbol_destructors_output): Output the destructor
15081 locations.
15082 Output the symbol name.
15083 * data/bison.simple (b4_symbol_destructor): Adjust.
15084
15085 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15086 and Akim Demaille <akim@epita.fr>
15087
15088 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15089 what's left on the stack when the error recovery hits EOF.
15090 * tests/actions.at (Destructors): Complete to exercise this case.
15091
15092 2002-06-17 Akim Demaille <akim@epita.fr>
15093
15094 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15095 arguments is really empty, not only equal to `[]'.
15096 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15097 member.
15098 (symbol_destructor_set): New.
15099 * src/output.c (symbol_destructors_output): New.
15100 * src/reader.h (brace_code_t, current_braced_code): New.
15101 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15102 (handle_dollar): Rename as...
15103 (handle_action_dollar): this.
15104 (handle_destructor_dollar): New.
15105 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15106 (grammar_declaration): Use it.
15107 * data/bison.simple (yystos): Is always defined.
15108 (yydestructor): New.
15109 * tests/actions.at (Destructors): New.
15110 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15111
15112 2002-06-17 Akim Demaille <akim@epita.fr>
15113
15114 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15115 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15116 rule_length only when needed.
15117 * src/output.c (actions_output, token_definitions_output): Output
15118 the full M4 block.
15119 * src/symtab.c: Don't access directly to the symbol tag, use
15120 symbol_tag_get.
15121 * src/parse-gram.y: Use symbol_list_free.
15122
15123 2002-06-17 Akim Demaille <akim@epita.fr>
15124
15125 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15126 (symbol_list_prepend, get_type_name): Move to...
15127 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15128 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15129 Adjust all callers.
15130 (symbol_list_free): New.
15131 * src/scan-gram.l (handle_dollar): Takes a location.
15132 * tests/input.at (Invalid $n): Adjust.
15133
15134 2002-06-17 Akim Demaille <akim@epita.fr>
15135
15136 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15137 (symbol_list_prepend): New.
15138 * src/parse-gram.y (%union): `list' is a new member.
15139 (symbols.1): New, replaces...
15140 (terms_to_prec.1, nterms_to_type.1): these.
15141 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15142 Take a location as additional argument.
15143 Adjust all callers.
15144
15145 2002-06-15 Akim Demaille <akim@epita.fr>
15146
15147 * src/parse-gram.y: Move %token in the declaration section so that
15148 we don't depend upon CVS Bison.
15149
15150 2002-06-15 Akim Demaille <akim@epita.fr>
15151
15152 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15153 * src/print.c (print_core): Use it.
15154
15155 2002-06-15 Akim Demaille <akim@epita.fr>
15156
15157 * src/conflicts.c (log_resolution): Accept the rule involved in
15158 the sr conflicts instead of the lookahead number that points to
15159 that rule.
15160 (flush_reduce): Accept the current lookahead vector as argument,
15161 instead of the index in LA.
15162 (resolve_sr_conflict): Accept the current number of lookahead
15163 bitset to consider for the STATE, instead of the index in LA.
15164 (set_conflicts): Adjust.
15165 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15166
15167 2002-06-15 Akim Demaille <akim@epita.fr>
15168
15169 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15170 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15171 Adjust all dependencies.
15172 * src/lalr.c (initialize_lookaheads): Split into...
15173 (states_lookaheads_count, states_lookaheads_initialize): these.
15174 (lalr): Adjust.
15175
15176 2002-06-15 Akim Demaille <akim@epita.fr>
15177
15178 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15179 out of...
15180 (grammar_rules_print): here.
15181 * src/reduce.c (reduce_output): Use it.
15182 * tests/reduce.at (Useless Rules, Reduced Automaton)
15183 (Underivable Rules): Adjust.
15184
15185 2002-06-15 Akim Demaille <akim@epita.fr>
15186
15187 Copy BYacc's nice way to report the grammar.
15188
15189 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15190 New.
15191 Don't print the rules' location, it is confusing and useless.
15192 (rule_print): Use grammar_rhs_print.
15193 * src/print.c (print_grammar): Use grammar_rules_print.
15194
15195 2002-06-15 Akim Demaille <akim@epita.fr>
15196
15197 Complete and rationalize `useless thing' warnings.
15198
15199 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15200 (symbol_tag_print): New.
15201 Use them everywhere in place of accessing directly the tag member.
15202 * src/gram.h, src/gram.c (rule_print): New.
15203 Use it where a rule used to be printed `by hand'.
15204 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15205 (reduce_grammar_tables): Report the useless rules.
15206 (reduce_print): Useless things are a warning, not an error.
15207 Report it as such.
15208 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15209 (Reduced Automaton, Underivable Rules): Adjust.
15210 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15211 * tests/conflicts.at (Unresolved SR Conflicts)
15212 (Solved SR Conflicts): Adjust.
15213
15214 2002-06-15 Akim Demaille <akim@epita.fr>
15215
15216 Let symbols have a location.
15217
15218 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15219 (getsym): Adjust.
15220 Adjust all callers.
15221 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15222 Use location_t, not int.
15223 * src/symtab.c (symbol_check_defined): Take advantage of the
15224 location.
15225 * tests/regression.at (Invalid inputs): Adjust.
15226
15227 2002-06-15 Akim Demaille <akim@epita.fr>
15228
15229 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15230 (input): Don't try to initialize yylloc here, do it in the
15231 scanner.
15232 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15233 * src/gram.h (rule_t): Change line and action_line into location
15234 and action_location, of location_t type.
15235 Adjust all dependencies.
15236 * src/location.h, src/location.c (empty_location): New.
15237 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15238 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15239 (grammar_current_rule_symbol_append)
15240 (grammar_current_rule_action_append): Expect a location as argument.
15241 * src/reader.c (grammar_midrule_action): Adjust to attach an
15242 action's location as dummy symbol location.
15243 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15244 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15245 the line numbers.
15246
15247 2002-06-14 Akim Demaille <akim@epita.fr>
15248
15249 Grammar declarations may be found in the grammar section.
15250
15251 * src/parse-gram.y (rules_or_grammar_declaration): New.
15252 (declarations): Each declaration may end with a semicolon, not
15253 just...
15254 (grammar_declaration): `"%union"'.
15255 (grammar): Branch to rules_or_grammar_declaration.
15256
15257 2002-06-14 Akim Demaille <akim@epita.fr>
15258
15259 * src/main.c (main): Invoke scanner_free.
15260
15261 2002-06-14 Akim Demaille <akim@epita.fr>
15262
15263 * src/output.c (m4_invoke): Extracted from...
15264 (output_skeleton): here.
15265 Free tempfile.
15266
15267 2002-06-14 Akim Demaille <akim@epita.fr>
15268
15269 * src/parse-gram.y (directives, directive, gram)
15270 (grammar_directives, precedence_directives, precedence_directive):
15271 Rename as...
15272 (declarations, declaration, grammar, grammar_declaration)
15273 (precedence_declaration, precedence_declarator): these.
15274 (symbol_declaration): New.
15275
15276 2002-06-14 Akim Demaille <akim@epita.fr>
15277
15278 * src/files.c (action_obstack): Remove, unused.
15279 (output_obstack): Remove it, and all its dependencies, as it is no
15280 longer needed.
15281 * src/reader.c (epilogue_set): Build the epilogue in the
15282 muscle_obstack.
15283 * src/output.h, src/output.c (muscle_obstack): Move to...
15284 * src/muscle_tab.h, src/muscle_tab.h: here.
15285 (muscle_init): Initialize muscle_obstack.
15286 (muscle_free): New.
15287 * src/main.c (main): Call it.
15288
15289 2002-06-14 Akim Demaille <akim@epita.fr>
15290
15291 * src/location.h: New, extracted from...
15292 * src/reader.h: here.
15293 * src/Makefile.am (noinst_HEADERS): Merge into
15294 (bison_SOURCES): this.
15295 Add location.h.
15296 * src/parse-gram.y: Use location_t instead of Bison's.
15297 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15298 Use location_t instead of ints.
15299
15300 2002-06-14 Akim Demaille <akim@epita.fr>
15301
15302 * data/bison.simple, data/bison.c++: Be sure to restore the
15303 current #line when returning to the skeleton contents after having
15304 exposed the input file's #line.
15305
15306 2002-06-12 Akim Demaille <akim@epita.fr>
15307
15308 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15309 eager.
15310 * tests/actions.at (Exotic Dollars): New.
15311
15312 2002-06-12 Akim Demaille <akim@epita.fr>
15313
15314 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15315 ['"/] too eagerly.
15316 * tests/input.at (Torturing the Scanner): New.
15317
15318 2002-06-11 Akim Demaille <akim@epita.fr>
15319
15320 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15321 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15322 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15323 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15324 * src/reader.c (reader): Use it.
15325
15326 2002-06-11 Akim Demaille <akim@epita.fr>
15327
15328 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15329 Adjust all callers.
15330 (scanner_last_string_free): New.
15331
15332 2002-06-11 Akim Demaille <akim@epita.fr>
15333
15334 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15335 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15336 (last_string, YY_OBS_FREE): New.
15337 Use them when returning an ID.
15338
15339 2002-06-11 Akim Demaille <akim@epita.fr>
15340
15341 Have Bison grammars parsed by a Bison grammar.
15342
15343 * src/reader.c, src/reader.h (prologue_augment): New.
15344 * src/reader.c (copy_definition): Remove.
15345
15346 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15347 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15348 (grammar_current_rule_prec_set, grammar_current_rule_check)
15349 (grammar_current_rule_symbol_append)
15350 (grammar_current_rule_action_append): Export.
15351 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15352 (symbol_list_action_append): Remove.
15353 Hook the routines from reader.
15354 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15355 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15356
15357 * src/reader.c (read_declarations): Remove, unused.
15358
15359 * src/parse-gram.y: Handle the epilogue.
15360 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15361 (grammar_start_symbol_set): this.
15362 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15363 * src/reader.c (readgram): Remove, unused.
15364 (reader): Adjust to insert eoftoken and axiom where appropriate.
15365
15366 * src/reader.c (copy_dollar): Replace with...
15367 * src/scan-gram.h (handle_dollar): this.
15368 * src/parse-gram.y: Remove `%thong'.
15369
15370 * src/reader.c (copy_at): Replace with...
15371 * src/scan-gram.h (handle_at): this.
15372
15373 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15374 New.
15375
15376 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15377 time being.
15378
15379 * src/reader.h, src/reader.c (grammar_rule_end): New.
15380
15381 * src/parse.y (current_type, current_class): New.
15382 Implement `%nterm', `%token' support.
15383 Merge `%term' into `%token'.
15384 (string_as_id): New.
15385 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15386 type name.
15387
15388 * src/parse-gram.y: Be sure to handle properly the beginning of
15389 rules.
15390
15391 * src/parse-gram.y: Handle %type.
15392 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15393
15394 * src/parse-gram.y: More directives support.
15395 * src/options.c: No longer handle source directives.
15396
15397 * src/parse-gram.y: Fix %output.
15398
15399 * src/parse-gram.y: Handle %union.
15400 Use the prologue locations.
15401 * src/reader.c (parse_union_decl): Remove.
15402
15403 * src/reader.h, src/reader.c (epilogue_set): New.
15404 * src/parse-gram.y: Use it.
15405
15406 * data/bison.simple, data/bison.c++: b4_stype is now either not
15407 defined, then default to int, or to the contents of %union,
15408 without `union' itself.
15409 Adjust.
15410 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15411
15412 * src/output.c (actions_output): Don't output braces, as they are
15413 already handled by the scanner.
15414
15415 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15416 characters to themselves.
15417
15418 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15419 that the epilogue has a proper #line.
15420
15421 * src/parse-gram.y: Handle precedence/associativity.
15422
15423 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15424 a terminal.
15425 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15426 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15427 at all to define terminals that cannot be emitted.
15428
15429 * src/scan-gram.l: Escape M4 characters.
15430
15431 * src/scan-gram.l: Working properly with escapes in user
15432 strings/characters.
15433
15434 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15435 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15436 grammar.
15437 Use more modest sizes, as for the time being the parser does not
15438 release memory, and therefore the process swallows a huge amount
15439 of memory.
15440
15441 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15442 stricter %token grammar.
15443
15444 * src/symtab.h (associativity): Add `undef_assoc'.
15445 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15446 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15447
15448 * tests/regression.at (Invalid %directive): Remove, as it is now
15449 meaningless.
15450 (Invalid inputs): Adjust to the new error messages.
15451 (Token definitions): The new grammar doesn't allow too many
15452 eccentricities.
15453
15454 * src/lex.h, src/lex.c: Remove.
15455 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15456 (copy_character, copy_string2, copy_string, copy_identifier)
15457 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15458 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15459 (parse_action): Remove.
15460 * po/POTFILES.in: Adjust.
15461
15462 2002-06-11 Akim Demaille <akim@epita.fr>
15463
15464 * src/reader.c (parse_action): Don't store directly into the
15465 rule's action member: return the action as a string.
15466 Don't require `rule_length' as an argument: compute it.
15467 (grammar_current_rule_symbol_append)
15468 (grammar_current_rule_action_append): New, eved out from
15469 (readgram): here.
15470 Remove `action_flag', `rulelength', unused now.
15471
15472 2002-06-11 Akim Demaille <akim@epita.fr>
15473
15474 * src/reader.c (grammar_current_rule_prec_set).
15475 (grammar_current_rule_check): New, eved out from...
15476 (readgram): here.
15477 Remove `xaction', `first_rhs': useless.
15478 * tests/input.at (Type clashes): New.
15479 * tests/existing.at (GNU Cim Grammar): Adjust.
15480
15481 2002-06-11 Akim Demaille <akim@epita.fr>
15482
15483 * src/reader.c (grammar_midrule_action): New, Eved out from
15484 (readgram): here.
15485
15486 2002-06-11 Akim Demaille <akim@epita.fr>
15487
15488 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15489 New.
15490 (readgram): Use them as replacement of inlined code, crule and
15491 crule1.
15492
15493 2002-06-11 Akim Demaille <akim@epita.fr>
15494
15495 * src/reader.c (grammar_end, grammar_symbol_append): New.
15496 (readgram): Use them.
15497 Make the use of `p' as local as possible.
15498
15499 2002-06-10 Akim Demaille <akim@epita.fr>
15500
15501 GCJ's parser requires the tokens to be defined before the prologue.
15502
15503 * data/bison.simple: Output the token definition before the user's
15504 prologue.
15505 * tests/regression.at (Braces parsing, Duplicate string)
15506 (Mixing %token styles): Check the output from bison.
15507 (Early token definitions): New.
15508
15509 2002-06-10 Akim Demaille <akim@epita.fr>
15510
15511 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15512 assigning twice the same user number to a token, so that we can
15513 use it in...
15514 * src/lex.c (lex): here.
15515 Also use `symbol_class_set' instead of hand written code.
15516 * src/reader.c (parse_assoc_decl): Likewise.
15517
15518 2002-06-10 Akim Demaille <akim@epita.fr>
15519
15520 * src/symtab.c, src/symtab.c (symbol_class_set)
15521 (symbol_user_token_number_set): New.
15522 * src/reader.c (parse_token_decl): Use them.
15523 Use a switch instead of ifs.
15524 Use a single argument.
15525
15526 2002-06-10 Akim Demaille <akim@epita.fr>
15527
15528 Remove `%thong' support as it is undocumented, unused, duplicates
15529 `%token's job, and creates useless e-mail traffic with people who
15530 want to know what it is, why it is undocumented, unused, and
15531 duplicates `%token's job.
15532
15533 * src/reader.c (parse_thong_decl): Remove.
15534 * src/options.c (option_table): Remove "thong".
15535 * src/lex.h (tok_thong): Remove.
15536
15537 2002-06-10 Akim Demaille <akim@epita.fr>
15538
15539 * src/symtab.c, src/symtab.c (symbol_type_set)
15540 (symbol_precedence_set): New.
15541 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15542 (value_components_used): Remove, unused.
15543
15544 2002-06-09 Akim Demaille <akim@epita.fr>
15545
15546 Move symbols handling code out of the reader.
15547
15548 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15549 (axiom): Move to...
15550 * src/symtab.h, src/symtab.c: here.
15551
15552 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15553 * src/reader.c (startval): Rename as...
15554 * src/symtab.h, src/symtab.c (startsymbol): this.
15555 * src/reader.c: Adjust.
15556
15557 * src/reader.c (symbol_check_defined, symbol_make_alias)
15558 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15559 (token_translations_init)
15560 Move to...
15561 * src/symtab.c: here.
15562 * src/reader.c (packsymbols): Move to...
15563 * src/symtab.h, src/symtab.c (symbols_pack): here.
15564 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15565 argument.
15566
15567 2002-06-03 Akim Demaille <akim@epita.fr>
15568
15569 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15570 then statements.
15571
15572 2002-06-03 Akim Demaille <akim@epita.fr>
15573
15574 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15575 structs with non literals.
15576 * src/scan-skel.l: never-interactive.
15577 * src/conflicts.c (enum conflict_resolution_e): No trailing
15578 comma.
15579 * src/getargs.c (usage): Split long literal strings.
15580 Reported by Hans Aberg.
15581
15582 2002-05-28 Akim Demaille <akim@epita.fr>
15583
15584 * data/bison.c++: Use C++ ostreams.
15585 (cdebug_): New member.
15586
15587 2002-05-28 Akim Demaille <akim@epita.fr>
15588
15589 * src/output.c (output_skeleton): Be sure to allocate enough room
15590 for `/' _and_ for `\0' in full_skeleton.
15591
15592 2002-05-28 Akim Demaille <akim@epita.fr>
15593
15594 * data/bison.c++: Catch up with bison.simple:
15595 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15596 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15597 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15598 and popping traces.
15599
15600 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15601
15602 * src/output.c (output_skeleton): Put an explicit path in front of
15603 the skeleton file name, rather than relying on the -I directory,
15604 to partially alleviate effects of having a skeleton file lying around
15605 in the current directory.
15606
15607 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15608
15609 * src/conflicts.c (log_resolution): Correct typo:
15610 obstack_printf should be obstack_fgrow1.
15611
15612 2002-05-26 Akim Demaille <akim@epita.fr>
15613
15614 * src/state.h (state_t): `solved_conflicts' is a new member.
15615 * src/LR0.c (new_state): Set it to 0.
15616 * src/conflicts.h, src/conflicts.c (print_conflicts)
15617 (free_conflicts, solve_conflicts): Rename as...
15618 (conflicts_print, conflicts_free, conflicts_solve): these.
15619 Adjust callers.
15620 * src/conflicts.c (enum conflict_resolution_e)
15621 (solved_conflicts_obstack): New, used by...
15622 (log_resolution): this.
15623 Adjust to attach the conflict resolution to each state.
15624 Complete the description with the precedence/associativity
15625 information.
15626 (resolve_sr_conflict): Adjust.
15627 * src/print.c (print_state): Output its solved_conflicts.
15628 * tests/conflicts.at (Unresolved SR Conflicts)
15629 (Solved SR Conflicts): Exercise --report=all.
15630
15631 2002-05-26 Akim Demaille <akim@epita.fr>
15632
15633 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15634 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15635 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15636 (token_number_t, item_number_as_token_number)
15637 (token_number_as_item_number, muscle_insert_token_number_table):
15638 Rename as...
15639 (symbol_number_t, item_number_as_symbol_number)
15640 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15641 these, since it is more appropriate.
15642
15643 2002-05-26 Akim Demaille <akim@epita.fr>
15644
15645 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15646 `Error:' lines.
15647 * data/bison.simple (yystos) [YYDEBUG]: New.
15648 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15649 error recovery.
15650 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15651
15652 2002-05-25 Akim Demaille <akim@epita.fr>
15653
15654 * doc/bison.texinfo (Debugging): Split into...
15655 (Tracing): this new section, its former contents, and...
15656 (Understanding): this new section.
15657 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15658 by...
15659 (report_flag): this.
15660 Adjust all dependencies.
15661 (report_args, report_types, report_argmatch): New.
15662 (usage, getargs): Report/support -r, --report.
15663 * src/options.h
15664 (struct option_table_struct): Rename as..,
15665 (struct option_table_s): this.
15666 Rename the `set_flag' member to `flag' to match with getopt_long's
15667 struct.
15668 * src/options.c (option_table): Split verbose into an entry for
15669 %verbose, and another for --verbose.
15670 Support --report/-r, so remove -r from the obsolete --raw.
15671 * src/print.c: Attach full item sets and lookaheads reports to
15672 report_flag instead of trace_flag.
15673 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15674
15675 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15676 and Paul Eggert <eggert@twinsun.com>
15677
15678 * data/bison.simple (yyparse): Correct error handling to conform to
15679 POSIX and yacc. Specifically, after syntax error is discovered,
15680 do not reduce further before shifting the error token.
15681 Clean up the code a bit by removing the labels yyerrdefault,
15682 yyerrhandle, yyerrpop.
15683 * NEWS: Document the above.
15684
15685 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15686
15687 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15688 type; it isn't always big enough, since it doesn't necessarily
15689 include non-terminals.
15690 (yytranslate): Expand definition of yy_token_number_type, so that
15691 the latter can be removed.
15692 (yy_token_number_type): Remove, only one use.
15693 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15694 don't use TokenNumberType as element type.
15695
15696 * tests/regression.at: Modify expected output to agree with change
15697 to yyr1 and yytranslate.
15698
15699 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15700
15701 * src/reader.c (parse_action): Use copy_character instead of
15702 obstack_1grow.
15703
15704 2002-05-13 Akim Demaille <akim@epita.fr>
15705
15706 * tests/regression.at (Token definitions): Prototype yylex and
15707 yyerror.
15708
15709 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15710
15711 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15712 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15713 32-bit arithmetic.
15714 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15715
15716 2002-05-07 Akim Demaille <akim@epita.fr>
15717
15718 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15719 avoid GCC warnings.
15720
15721 2002-05-07 Akim Demaille <akim@epita.fr>
15722
15723 Kill GCC warnings.
15724
15725 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15726 over the RHS of each rule.
15727 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15728 * src/state.h (state_t): Member `nitems' is unsigned short.
15729 * src/LR0.c (get_state): Adjust.
15730 * src/reader.c (packgram): Likewise.
15731 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15732 `Type'.
15733 (muscle_insert_int_table): Remove, unused.
15734 (prepare_rules): Remove `max'.
15735
15736 2002-05-06 Akim Demaille <akim@epita.fr>
15737
15738 * src/closure.c (print_firsts): Display of the symbol tags.
15739 (bitmatrix_print): Move to...
15740 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15741 here.
15742 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15743
15744 2002-05-06 Akim Demaille <akim@epita.fr>
15745
15746 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15747 hash_do_for_each.
15748
15749 2002-05-06 Akim Demaille <akim@epita.fr>
15750
15751 * src/LR0.c (new_state, get_state): Instead of using the global
15752 `kernel_size' and `kernel_base', have two new arguments:
15753 `core_size' and `core'.
15754 Adjust callers.
15755
15756 2002-05-06 Akim Demaille <akim@epita.fr>
15757
15758 * src/reader.c (packgram): No longer end `ritem' with a 0
15759 sentinel: it is not used.
15760
15761 2002-05-05 Akim Demaille <akim@epita.fr>
15762
15763 New experimental feature: display the lookaheads in the report and
15764 graph.
15765
15766 * src/print (print_core): When --trace-flag, display the rules
15767 lookaheads.
15768 * src/print_graph.c (print_core): Likewise.
15769 Swap the arguments.
15770 Adjust caller.
15771
15772 2002-05-05 Akim Demaille <akim@epita.fr>
15773
15774 * tests/torture.at (Many lookaheads): New test.
15775
15776 2002-05-05 Akim Demaille <akim@epita.fr>
15777
15778 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15779 (GENERATE_MUSCLE_INSERT_TABLE): this.
15780 (output_int_table, output_unsigned_int_table, output_short_table)
15781 (output_token_number_table, output_item_number_table): Replace with...
15782 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15783 (muscle_insert_short_table, muscle_insert_token_number_table)
15784 (muscle_insert_item_number_table): these.
15785 Adjust all callers.
15786 (prepare_tokens): Don't free `translations', since...
15787 * src/reader.h, src/reader.c (grammar_free): do it.
15788 Move to...
15789 * src/gram.h, src/gram.c (grammar_free): here.
15790 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15791 b4_translate_max.
15792
15793 2002-05-05 Akim Demaille <akim@epita.fr>
15794
15795 * src/output.c (output_unsigned_int_table): New.
15796 (prepare_rules): `i' is unsigned.
15797 `prhs', `rline', `r2' are unsigned int.
15798 Rename muscle `rhs_number_max' as `rhs_max'.
15799 Output muscles `prhs_max', `rline_max', and `r2_max'.
15800 Free rline and r1.
15801 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15802 to compute types instead of constant types.
15803 * tests/regression.at (Web2c Actions): Adjust.
15804
15805 2002-05-04 Akim Demaille <akim@epita.fr>
15806
15807 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15808 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15809 Adjust dependencies.
15810 * src/output.c (token_definitions_output): Be sure not to output a
15811 `#define 'a'' when fed with `%token 'a' "a"'.
15812 * tests/regression.at (Token definitions): New.
15813
15814 2002-05-03 Paul Eggert <eggert@twinsun.com>
15815
15816 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15817 for K&R C.
15818
15819 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15820
15821 * Makefile.am (SUBDIRS): Remove intl.
15822 (EXTRA_DIST): Add config/config.rpath.
15823
15824 2002-05-03 Akim Demaille <akim@epita.fr>
15825
15826 * data/bison.simple (m4_if): Don't output empty enums.
15827 And actually, output valid enum definitions :(.
15828
15829 2002-05-03 Akim Demaille <akim@epita.fr>
15830
15831 * configure.bat: Remove, completely obsolete.
15832 * Makefile.am (EXTRA_DIST): Adjust.
15833 Don't distribute config.rpath...
15834 * config/Makefile.am (EXTRA_DIST): Do it.
15835
15836 2002-05-03 Akim Demaille <akim@epita.fr>
15837
15838 * configure.in (GETTEXT_VERSION): New.
15839 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15840
15841 2002-05-03 Akim Demaille <akim@epita.fr>
15842
15843 * data/bison.simple (b4_token_enum): New.
15844 (b4_token_defines): Use it to output tokens both as #define and
15845 enums.
15846 Suggested by Paul Eggert.
15847 * src/output.c (token_definitions_output): Don't output spurious
15848 white spaces.
15849
15850 2002-05-03 Akim Demaille <akim@epita.fr>
15851
15852 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15853
15854 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15855
15856 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15857 Update the stack class, give a try to deque as the default container.
15858
15859 2002-05-02 Akim Demaille <akim@epita.fr>
15860
15861 * data/bison.simple (yyparse): Do not implement @$ = @1.
15862 (YYLLOC_DEFAULT): Adjust to do it.
15863 * doc/bison.texinfo (Location Default Action): Fix.
15864
15865 2002-05-02 Akim Demaille <akim@epita.fr>
15866
15867 * src/reader.c (parse_braces): Merge into...
15868 (parse_action): this.
15869
15870 2002-05-02 Akim Demaille <akim@epita.fr>
15871
15872 * configure.in (ALL_LINGUAS): Remove.
15873 * po/LINGUAS, hr.po: New.
15874
15875 2002-05-02 Akim Demaille <akim@epita.fr>
15876
15877 Remove the so called hairy (semantic) parsers.
15878
15879 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15880 * src/gram.h, src/gram.c (semantic_parser): Remove.
15881 (rule_t): Remove the guard and guard_line members.
15882 * src/lex.h (token_t): remove tok_guard.
15883 * src/options.c (option_table): Remove %guard and %semantic_parser
15884 support.
15885 * src/output.c, src/output.h (guards_output): Remove.
15886 (prepare): Adjust.
15887 (token_definitions_output): Don't output the `T'
15888 tokens (???).
15889 (output_skeleton): Don't output the guards.
15890 * src/files.c, src/files.c (attrsfile): Remove.
15891 * src/reader.c (symbol_list): Remove the guard and guard_line
15892 members.
15893 Adjust dependencies.
15894 (parse_guard): Remove.
15895 * data/bison.hairy: Remove.
15896 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15897 BISON_HAIRY.
15898
15899 2002-05-02 Akim Demaille <akim@epita.fr>
15900
15901 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15902 (parse_guard): Rename the formal argument `stack_offset' as
15903 `rule_length', which is more readable.
15904 Adjust callers.
15905 (copy_at, copy_dollar): Instead of outputting the hard coded
15906 values of $$, $n and so forth, output invocation to b4_lhs_value,
15907 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15908 Note: this patch partially drops `semantic-parser' support: it
15909 always does `rule_length - n', where semantic parsers ought to
15910 always use `-n'.
15911 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15912 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15913
15914 2002-05-02 Akim Demaille <akim@epita.fr>
15915
15916 * configure.in (AC_INIT): Bump to 1.49b.
15917 (AM_INIT_AUTOMAKE): Short invocation.
15918
15919 2002-05-02 Akim Demaille <akim@epita.fr>
15920
15921 Version 1.49a.
15922
15923 2002-05-01 Akim Demaille <akim@epita.fr>
15924
15925 * src/skeleton.h: Remove.
15926
15927 2002-05-01 Akim Demaille <akim@epita.fr>
15928
15929 * src/skeleton.h: Fix the #endif.
15930 Reported by Magnus Fromreide.
15931
15932 2002-04-26 Paul Eggert <eggert@twinsun.com>
15933
15934 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15935 Define if we define YYSTYPE and YYLTYPE, respectively.
15936 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15937
15938 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15939
15940 * src/scan-skel.l: Postprocess quadrigraphs.
15941
15942 * src/reader.c (copy_character): New function, used to output
15943 single characters while replacing `[' and `]' with quadrigraphs, to
15944 avoid troubles with M4 quotes.
15945 (copy_comment): Output characters with copy_character.
15946 (read_additionnal_code): Likewise.
15947 (copy_string2): Likewise.
15948 (copy_definition): Likewise.
15949
15950 * tests/calc.at: Exercise M4 quoting.
15951
15952 2002-04-25 Akim Demaille <akim@epita.fr>
15953
15954 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15955 between `!' and the command.
15956 Reported by Paul Eggert.
15957
15958 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15959
15960 * tests/calc.at: Exercise prologue splitting.
15961
15962 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15963 `b4_post_prologue' instead of `b4_prologue'.
15964
15965 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15966 muscles.
15967 (output): Free pre_prologue_obstack and post_prologue_obstack.
15968 * src/files.h, src/files.c (attrs_obstack): Remove.
15969 (pre_prologue_obstack, post_prologue_obstack): New.
15970 * src/reader.c (copy_definition): Add a parameter to specify the
15971 obstack to fill, instead of using attrs_obstack unconditionally.
15972 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15973 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15974
15975 2002-04-23 Paul Eggert <eggert@twinsun.com>
15976
15977 * data/bison.simple: Remove unnecessary commentary and white
15978 space differences from 1_29-branch.
15979 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15980
15981 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15982 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15983 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15984 constructors or destructors.
15985
15986 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15987
15988 2002-04-23 Akim Demaille <akim@epita.fr>
15989
15990 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15991 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15992 location with columns.
15993 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15994 All reported by Paul Eggert.
15995
15996 2002-04-22 Akim Demaille <akim@epita.fr>
15997
15998 * src/reduce.c (dump_grammar): Move to...
15999 * src/gram.h, src/gram.c (grammar_dump): here.
16000 Be sure to separate long item numbers.
16001 Don't read the members of a rule's prec if its nil.
16002
16003 2002-04-22 Akim Demaille <akim@epita.fr>
16004
16005 * src/output.c (table_size, table_grow): New.
16006 (MAXTABLE): Remove, replace uses with table_size.
16007 (pack_vector): Instead of dying when the table is too big, grow it.
16008
16009 2002-04-22 Akim Demaille <akim@epita.fr>
16010
16011 * data/bison.simple (yyr1): Its type is that of a token number.
16012 * data/bison.c++ (r1_): Likewise.
16013 * tests/regression.at (Web2c Actions): Adjust.
16014
16015 2002-04-22 Akim Demaille <akim@epita.fr>
16016
16017 * src/reader.c (token_translations_init): 256 is now the default
16018 value for the error token, i.e., it will be assigned another
16019 number if the user assigned 256 to one of her tokens.
16020 (reader): Don't force 256 to error.
16021 * doc/bison.texinfo (Symbols): Adjust.
16022 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16023 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16024 etc. instead of 10, 20, 30 (which was used to `jump' over error
16025 (256) and undefined (2)).
16026
16027 2002-04-22 Akim Demaille <akim@epita.fr>
16028
16029 Propagate more token_number_t.
16030
16031 * src/gram.h (token_number_as_item_number)
16032 (item_number_as_token_number): New.
16033 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16034 Use it to create output_item_number_table and
16035 output_token_number_table.
16036 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16037 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16038 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16039 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16040
16041 2002-04-22 Akim Demaille <akim@epita.fr>
16042
16043 * src/output.h, src/output.c (get_lines_number): Remove.
16044
16045 2002-04-19 Akim Demaille <akim@epita.fr>
16046
16047 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16048 as Lex/Flex'.
16049 (Debugging): More details about enabling the debugging features.
16050 (Table of Symbols): Describe $$, $n, @$, and @n.
16051 Suggested by Tim Josling.
16052
16053 2002-04-19 Akim Demaille <akim@epita.fr>
16054
16055 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16056
16057 2002-04-10 Akim Demaille <akim@epita.fr>
16058
16059 * src/system.h: Rely on HAVE_LIMITS_H.
16060 Suggested by Paul Eggert.
16061
16062 2002-04-09 Akim Demaille <akim@epita.fr>
16063
16064 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16065 full stderr, and strip it according to the bison options, instead
16066 of composing the error message from different bits.
16067 This makes it easier to check for several error messages.
16068 Adjust all the invocations.
16069 Add an invocation exercising the error token.
16070 Add an invocation demonstrating a stupid error message.
16071 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16072 Adjust the tests.
16073 Error message are for stderr, not stdout.
16074
16075 2002-04-09 Akim Demaille <akim@epita.fr>
16076
16077 * src/gram.h, src/gram.c (error_token_number): Remove, use
16078 errtoken->number.
16079 * src/reader.c (reader): Don't specify the user token number (2)
16080 for $undefined, as it uselessly prevents using it.
16081 * src/gram.h (token_number_t): Move to...
16082 * src/symtab.h: here.
16083 (state_t.number): Is a token_number_t.
16084 * src/print.c, src/reader.c: Use undeftoken->number instead of
16085 hard coded 2.
16086 (Even though this 2 is not the same as above: the number of the
16087 undeftoken remains being 2, it is its user token number which
16088 might not be 2).
16089 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16090 `user_token_number_max'.
16091 Output `undef_token_number'.
16092 * data/bison.simple, data/bison.c++: Use them.
16093 Be sure to map invalid yylex return values to
16094 `undef_token_number'. This saves us from gratuitous SEGV.
16095
16096 * tests/conflicts.at (Solved SR Conflicts)
16097 (Unresolved SR Conflicts): Adjust.
16098 * tests/regression.at (Web2c Actions): Adjust.
16099
16100 2002-04-08 Akim Demaille <akim@epita.fr>
16101
16102 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16103 Adding #line.
16104 Remove the duplicate `typedefs'.
16105 (RhsNumberType): Fix the declaration and various other typos.
16106 Use __ofile__.
16107 * data/bison.simple: Use __ofile__.
16108 * src/scan-skel.l: Handle __ofile__.
16109
16110 2002-04-08 Akim Demaille <akim@epita.fr>
16111
16112 * src/gram.h (item_number_t): New, the type of item numbers in
16113 RITEM. Note that it must be able to code symbol numbers as
16114 positive number, and the negation of rule numbers as negative
16115 numbers.
16116 Adjust all dependencies (pretty many).
16117 * src/reduce.c (rule): Remove this `short *' pointer: use
16118 item_number_t.
16119 * src/system.h (MINSHORT, MAXSHORT): Remove.
16120 Include `limits.h'.
16121 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16122 (shortcpy): Remove.
16123 (MAXTABLE): Move to...
16124 * src/output.c (MAXTABLE): here.
16125 (prepare_rules): Use output_int_table to output rhs.
16126 * data/bison.simple, data/bison.c++: Adjust.
16127 * tests/torture.at (Big triangle): Move the limit from 254 to
16128 500.
16129 * tests/regression.at (Web2c Actions): Ajust.
16130
16131 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16132 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16133 passes, but produces negative #line number, once fixed, GCC is
16134 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16135 C), it passes.
16136 * src/state.h (state_h): Code input lines on ints, not shorts.
16137
16138 2002-04-08 Akim Demaille <akim@epita.fr>
16139
16140 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16141 and then the grammar.
16142
16143 2002-04-08 Akim Demaille <akim@epita.fr>
16144
16145 * src/system.h: No longer using strndup.
16146
16147 2002-04-07 Akim Demaille <akim@epita.fr>
16148
16149 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16150 * src/output.c (output_table_data): Return the longest number.
16151 (prepare_tokens): Output `token_number_max').
16152 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16153 New.
16154 Use them to define yy_token_number_type/TokenNumberType.
16155 Use this type for yytranslate.
16156 * tests/torture.at (Big triangle): Push the limit from 124 to
16157 253.
16158 * tests/regression.at (Web2c Actions): Adjust.
16159
16160 2002-04-07 Akim Demaille <akim@epita.fr>
16161
16162 * tests/torture.at (Big triangle): New.
16163 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16164 * tests/existing.at: here.
16165
16166 2002-04-07 Akim Demaille <akim@epita.fr>
16167
16168 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16169 nritems.
16170 Adjust dependencies.
16171
16172 2002-04-07 Akim Demaille <akim@epita.fr>
16173
16174 * src/reader.c: Normalize increments to prefix form.
16175
16176 2002-04-07 Akim Demaille <akim@epita.fr>
16177
16178 * src/reader.c, symtab.c: Remove debugging code.
16179
16180 2002-04-07 Akim Demaille <akim@epita.fr>
16181
16182 Rename all the `bucket's as `symbol_t'.
16183
16184 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16185 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16186 * src/symtab.c, src/symtab.h (bucket): Rename as...
16187 (symbol_t): this.
16188 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16189 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16190 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16191 (buckets_new, buckets_free, buckets_do): Rename as...
16192 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16193 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16194 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16195 (symbols_new, symbols_free, symbols_do): these.
16196
16197 2002-04-07 Akim Demaille <akim@epita.fr>
16198
16199 Use lib/hash for the symbol table.
16200
16201 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16202 EOF.
16203 * src/lex.c (lex): Set the `number' member of new terminals.
16204 * src/reader.c (bucket_check_defined, bucket_make_alias)
16205 (bucket_check_alias_consistence, bucket_translation): New.
16206 (reader, grammar_free, readgram, token_translations_init)
16207 (packsymbols): Adjust.
16208 (reader): Number the predefined tokens.
16209 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16210 for predefined tokens.
16211 * src/symtab.h (bucket): Remove all the hash table related
16212 members.
16213 * src/symtab.c (symtab): Replace by...
16214 (bucket_table): this.
16215 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16216 (buckets_new, buckets_do): New.
16217
16218 2002-04-07 Akim Demaille <akim@epita.fr>
16219
16220 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16221 (start_symbol, max_user_token_number, semantic_parser)
16222 (error_token_number): Initialize.
16223 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16224 Initialize.
16225 (reader): Don't.
16226 (errtoken, eoftoken, undeftoken, axiom): Extern.
16227
16228 2002-04-07 Akim Demaille <akim@epita.fr>
16229
16230 * src/gram.h (rule_s): prec and precsym are now pointers
16231 to the bucket giving the priority/associativity.
16232 Member `associativity' removed: useless.
16233 * src/reduce.c, src/conflicts.c: Adjust.
16234
16235 2002-04-07 Akim Demaille <akim@epita.fr>
16236
16237 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16238 Properly escape the symbols' TAG when outputting them.
16239
16240 2002-04-07 Akim Demaille <akim@epita.fr>
16241
16242 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16243
16244 2002-04-07 Akim Demaille <akim@epita.fr>
16245
16246 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16247 (LArule): this, which is an array to rule_t*.
16248 * src/print.c, src/conflicts.c: Adjust.
16249
16250 2002-04-07 Akim Demaille <akim@epita.fr>
16251
16252 * src/gram.h (rule_t): Rename `number' as `user_number'.
16253 `number' is a new member.
16254 Adjust dependencies.
16255 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16256
16257 2002-04-07 Akim Demaille <akim@epita.fr>
16258
16259 As a result of the previous patch, it is no longer needed
16260 to reorder ritem itself.
16261
16262 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16263
16264 2002-04-07 Akim Demaille <akim@epita.fr>
16265
16266 Be sure never to walk through RITEMS, but use only data related to
16267 the rules themselves. RITEMS should be banished.
16268
16269 * src/output.c (output_token_translations): Rename as...
16270 (prepare_tokens): this.
16271 In addition to `translate', prepare the muscles `tname' and
16272 `toknum', which were handled by...
16273 (output_rule_data): this.
16274 Remove, and move the remainder of its outputs into...
16275 (prepare_rules): this new routines, which also merges content from
16276 (output_gram): this.
16277 (prepare_rules): Be sure never to walk through RITEMS.
16278 (output_stos): Rename as...
16279 (prepare_stos): this.
16280 (output): Always invoke prepare_states, after all, just don't use it
16281 in the output if you don't need it.
16282
16283 2002-04-07 Akim Demaille <akim@epita.fr>
16284
16285 * src/LR0.c (new_state): Display `nstates' as the name of the
16286 newly created state.
16287 Adjust to initialize first_state and last_state if needed.
16288 Be sure to distinguish the initial from the final state.
16289 (new_states): Create the itemset of the initial state, and use
16290 new_state.
16291 * src/closure.c (closure): Now that the initial state has its
16292 items properly set, there is no need for a special case when
16293 creating `ruleset'.
16294
16295 As a result, now the rule 0, reducing to $axiom, is visible in the
16296 outputs. Adjust the test suite.
16297
16298 * tests/conflicts.at (Solved SR Conflicts)
16299 (Unresolved SR Conflicts): Adjust.
16300 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16301 * tests/conflicts.at (S/R in initial): New.
16302
16303 2002-04-07 Akim Demaille <akim@epita.fr>
16304
16305 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16306 the RHS of the rules.
16307 * src/output.c (output_gram): Likewise.
16308
16309 2002-04-07 Akim Demaille <akim@epita.fr>
16310
16311 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16312 bucket.
16313 Adjust all dependencies.
16314 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16315 `number' of the buckets too.
16316 * src/gram.h: Include `symtab.h'.
16317 (associativity): Move to...
16318 * src/symtab.h: here.
16319 No longer include `gram.h'.
16320
16321 2002-04-07 Akim Demaille <akim@epita.fr>
16322
16323 * src/gram.h, src/gram.c (rules_rhs_length): New.
16324 (ritem_longest_rhs): Use it.
16325 * src/gram.h (rule_t): `number' is a new member.
16326 * src/reader.c (packgram): Set it.
16327 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16328 the end of `rules', and count them out of `nrules'.
16329 (reduce_output, dump_grammar): Adjust.
16330 * src/print.c (print_grammar): It is no longer needed to check for
16331 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16332 * tests/reduce.at (Reduced Automaton): New test.
16333
16334 2002-04-07 Akim Demaille <akim@epita.fr>
16335
16336 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16337 lacking `+ 1' to nrules, Bison reported as useless a token if it
16338 was used solely to set the precedence of the last rule...
16339
16340 2002-04-07 Akim Demaille <akim@epita.fr>
16341
16342 * data/bison.c++, data/bison.simple: Don't output the current file
16343 name in #line, to avoid useless diffs between two identical
16344 outputs under different names.
16345
16346 2002-04-07 Akim Demaille <akim@epita.fr>
16347
16348 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16349 Normalize loops to using `< nrules + 1', not `<= nrules'.
16350
16351 2002-04-07 Akim Demaille <akim@epita.fr>
16352
16353 * TODO: Update.
16354
16355 2002-04-07 Akim Demaille <akim@epita.fr>
16356
16357 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16358 bucket.value as bucket.number.
16359
16360 2002-04-07 Akim Demaille <akim@epita.fr>
16361
16362 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16363 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16364 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16365 RHS, instead of being an index in RITEMS.
16366
16367 2002-04-04 Paul Eggert <eggert@twinsun.com>
16368
16369 * doc/bison.texinfo: Update copyright date.
16370 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16371 (Symbols): Warn about running Bison in one character set,
16372 but compiling and/or running in an incompatible one.
16373 Warn about character code 256, too.
16374
16375 2002-04-03 Paul Eggert <eggert@twinsun.com>
16376
16377 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16378 YYERROR_VERBOSE is nonzero, not whether it is defined.
16379
16380 Merge changes from bison-1_29-branch.
16381
16382 2002-03-20 Paul Eggert <eggert@twinsun.com>
16383
16384 Merge fixes from Debian bison_1.34-1.diff.
16385
16386 * configure.in (AC_PREREQ): 2.53.
16387
16388 2002-03-20 Akim Demaille <akim@epita.fr>
16389
16390 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16391
16392 2002-03-19 Paul Eggert <eggert@twinsun.com>
16393
16394 * src/bison.simple (YYCOPY): New macro.
16395 (YYSTACK_RELOCATE): Use it.
16396 Remove Type arg; no longer needed. All callers changed.
16397 (yymemcpy): Remove; no longer needed.
16398
16399 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16400 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16401
16402 2002-03-19 Akim Demaille <akim@epita.fr>
16403
16404 Test and fix the #line outputs.
16405
16406 * tests/atlocal.at (GCC): New.
16407 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16408 (Prologue synch line, %union synch line, Postprologue synch line)
16409 (Action synch line, Epilogue synch line): New tests.
16410 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16411 * data/bison.simple, data/bison.c++: Use it.
16412
16413 2002-03-19 Akim Demaille <akim@epita.fr>
16414
16415 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16416 (Solved SR Conflicts, %expect not enough, %expect right)
16417 (%expect too much): Move to...
16418 * tests/conflicts.at: this new file.
16419
16420 2002-03-19 Akim Demaille <akim@epita.fr>
16421
16422 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16423 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16424 that we can move to enums for instance.
16425 * src/output.c (token_definitions_output): Output a list of
16426 `token-name, token-number' instead of the #define.
16427 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16428
16429 2002-03-14 Akim Demaille <akim@epita.fr>
16430
16431 Use Gettext 0.11.1.
16432
16433 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16434
16435 * data/bison.c++: Make the user able to add members to the generated
16436 parser by subclassing.
16437
16438 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16439
16440 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16441 a character.
16442 Reported by Nicolas Tisserand and Nicolas Burrus.
16443
16444 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16445
16446 * src/reader.c: Warn about lacking semi-colons, do not complain.
16447
16448 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16449
16450 * data/bison.c++: Remove a debug line.
16451
16452 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16453
16454 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16455 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16456 provide a default implementation.
16457
16458 2002-03-04 Akim Demaille <akim@epita.fr>
16459
16460 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16461 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16462 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16463 * tests/semantic.at (Parsing Guards): Similarly.
16464 * src/reader.at (readgram): Complain if the last rule is not ended
16465 with a semi-colon.
16466
16467 2002-03-04 Akim Demaille <akim@epita.fr>
16468
16469 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16470 * src/closure.c: here.
16471 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16472 RTC.
16473 * src/warshall.h, src/warshall.c: Remove.
16474 * tests/sets.at (Broken Closure): Adjust.
16475
16476 2002-03-04 Akim Demaille <akim@epita.fr>
16477
16478 * src/output.c (output_skeleton): tempdir is const.
16479 bytes_read is unused.
16480
16481 2002-03-04 Akim Demaille <akim@epita.fr>
16482
16483 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16484 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16485 Update.
16486 From Michael Hayes.
16487
16488 2002-03-04 Akim Demaille <akim@epita.fr>
16489
16490 * src/closure.c (closure): `r' is unused.
16491
16492 2002-03-04 Akim Demaille <akim@epita.fr>
16493
16494 * tests/sets.at (Broken Closure): Add the ending `;'.
16495 * src/reader.at (readgram): Complain if a rule is not ended with a
16496 semi-colon.
16497
16498 2002-03-04 Akim Demaille <akim@epita.fr>
16499
16500 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16501 (count_sr_conflicts): Use bitset_count.
16502 * src/reduce.c (inaccessable_symbols): Ditto.
16503 (bits_size): Remove.
16504 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16505
16506 2002-03-04 Akim Demaille <akim@epita.fr>
16507
16508 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16509 * src/reduce.c: Remove the `bitset_zero's following the
16510 `bitset_create's, as now it is performed by the latter.
16511
16512 2002-03-04 Akim Demaille <akim@epita.fr>
16513
16514 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16515 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16516 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16517 latest sources from Michael.
16518
16519 2002-03-04 Akim Demaille <akim@epita.fr>
16520
16521 * src/output.c (output): Don't free the grammar.
16522 * src/reader.c (grammar_free): New.
16523 * src/main.c (main): Call it and don't free symtab here.
16524
16525 2002-03-04 Akim Demaille <akim@epita.fr>
16526
16527 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16528 before returning.
16529 Reported by Benoit Perrot.
16530
16531 2002-03-04 Akim Demaille <akim@epita.fr>
16532
16533 Use bitset operations when possible, not loops over bits.
16534
16535 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16536 bitset_or.
16537 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16538 * src/reduce.c (useless_nonterminals): Formatting changes.
16539 * src/warshall.c (TC): Use bitset_or.
16540
16541 2002-03-04 Akim Demaille <akim@epita.fr>
16542
16543 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16544 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16545 Ditto.
16546
16547 2002-03-04 Akim Demaille <akim@epita.fr>
16548
16549 * src/lalr.c (F): Now a bitset*.
16550 Adjust all dependencies.
16551
16552 2002-03-04 Akim Demaille <akim@epita.fr>
16553
16554 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16555 Adjust all dependencies.
16556
16557 2002-03-04 Akim Demaille <akim@epita.fr>
16558
16559 * src/L0.c, src/LR0.h (nstates): Be size_t.
16560 Adjust comparisons (signed vs unsigned).
16561 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16562 bitset*.
16563 Adjust all dependencies.
16564
16565 2002-03-04 Akim Demaille <akim@epita.fr>
16566
16567 * src/closure.c (firsts): Now, also a bitset.
16568 Adjust all dependencies.
16569 (varsetsize): Remove, now unused.
16570 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16571
16572 2002-03-04 Akim Demaille <akim@epita.fr>
16573
16574 * src/print.c: Convert to use bitset.h, not hand coded iterations
16575 over ints.
16576
16577 2002-03-04 Akim Demaille <akim@epita.fr>
16578
16579 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16580
16581 2002-03-04 Akim Demaille <akim@epita.fr>
16582
16583 * src/closure.c (ruleset): Be a bitset.
16584 (rulesetsize): Remove.
16585
16586 2002-03-04 Akim Demaille <akim@epita.fr>
16587
16588 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16589 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16590 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16591 * src/closure.c (fderives): Be an array of bitsets.
16592
16593 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16594
16595 * data/bison.c++: Merge the two generated headers. Insert a copyright
16596 notice in each output file.
16597
16598 2002-02-28 Akim Demaille <akim@epita.fr>
16599
16600 * data/bison.c++: Copy the prologue of bison.simple to fetch
16601 useful M4 definitions, such as b4_header_guard.
16602
16603 2002-02-25 Akim Demaille <akim@epita.fr>
16604
16605 * src/getargs.c (version): Give the name of the authors, and use a
16606 translator friendly scheme for the bgr
16607 copyright notice.
16608
16609 2002-02-25 Akim Demaille <akim@epita.fr>
16610
16611 * src/output.c (header_output): Remove, now handled completely via
16612 M4.
16613
16614 2002-02-25 Akim Demaille <akim@epita.fr>
16615
16616 * m4/m4.m4: New, from CVS Autoconf.
16617 * configure.in: Invoke it.
16618 * src/output.c (output_skeleton): Use its result instead of the
16619 hard coded name.
16620
16621 2002-02-25 Akim Demaille <akim@epita.fr>
16622
16623 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16624 Fileutils 4.1.5.
16625 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16626 * src/output.c (output_skeleton): Use mkstemp to create a real
16627 temporary file.
16628 Move the filling of `skeleton' and its muscle to...
16629 (prepare): here.
16630 (output): Move the definition of the prologue muscle to...
16631 (prepare): here.
16632 * src/system.h (DEFAULT_TMPDIR): New.
16633
16634 2002-02-14 Paul Eggert <eggert@twinsun.com>
16635
16636 Remove the support for C++ namespace cleanliness; it was
16637 causing more problems than it was curing, since it didn't work
16638 properly on some nonstandard C++ compilers. This can wait
16639 for a proper C++ parser.
16640
16641 * NEWS: Document this.
16642 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16643 of C++, as it's treated like C now.
16644 * src/bison.simple (YYSTD): Remove.
16645 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16646 Treat C++ just like Standard C instead of trying to support
16647 namespace cleanliness.
16648
16649 2002-02-14 Akim Demaille <akim@epita.fr>
16650
16651 * tests/regression.at (else): Adjust to Andreas' change.
16652
16653 2002-02-14 Akim Demaille <akim@epita.fr>
16654
16655 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16656
16657 2002-02-13 Andreas Schwab <schwab@suse.de>
16658
16659 * src/output.c (output_rule_data): Don't output NULL, it might
16660 not be defined yet.
16661
16662 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16663
16664 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16665 (Copyright notice): Update.
16666
16667 2002-02-11 Akim Demaille <akim@epita.fr>
16668
16669 * tests/regression.at (%nonassoc and eof): Don't include
16670 nonportable headers.
16671
16672 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16673
16674 * data/bison.c++: Correct error recovery. Make the user able to
16675 initialize the starting location.
16676
16677 2002-02-07 Akim Demaille <akim@epita.fr>
16678
16679 * tests/input.at: New.
16680
16681 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16682
16683 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16684 more consistent when naming methods and variables. Put preprocessor
16685 directives around tables only needed for debugging.
16686
16687 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16688
16689 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16690 C++ parsers.
16691 (yy::b4_name::parse): Use print_.
16692
16693 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16694
16695 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16696
16697 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16698
16699 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16700 C++ parsers.
16701 (yy::b4_name::parse): Build verbose error messages, and use error_.
16702
16703 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16704
16705 * data/bison.c++: Fix m4 quoting in comments.
16706
16707 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16708
16709 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16710 not expanded by m4.
16711
16712 2002-02-05 Akim Demaille <akim@epita.fr>
16713
16714 * data/bison.c++: Adjust to the M4 back end.
16715 More is certainly needed.
16716
16717 2002-02-05 Akim Demaille <akim@epita.fr>
16718
16719 Give a try to M4 as a back end.
16720
16721 * lib/readpipe.c: New, from wdiff.
16722 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16723 BISON_HAIRY.
16724 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16725 specific values. Now it is m4 that performs the lookup.
16726 * src/parse-skel.y: Remove.
16727 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16728 * src/output.c (actions_output, guards_output)
16729 (token_definitions_output): No longer keeps track of the output
16730 line number, hence remove the second argument.
16731 (guards_output): Check against the guard member of a rule, not the
16732 action member.
16733 Adjust callers.
16734 (output_skeleton): Don't look for the skeleton location, let m4 do
16735 that.
16736 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16737 file will be used.
16738 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16739 (prepare): Given that for the time being changesyntax is not
16740 usable in M4, rename the muscles using `-' to `_'.
16741 Define `defines_flag', `output_parser_name' and `output_header_name'.
16742 * src/output.h (actions_output, guards_output)
16743 (token_definitions_output): Adjust prototypes.
16744 * src/scan-skel.l: Instead of scanning the skeletons, it now
16745 processes the output of m4: `__oline__' and `#output'.
16746 * data/bison.simple: Adjust to be used by M4(sugar).
16747 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16748 to date.
16749 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16750 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16751 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16752 shamelessly stolen from CVS Autoconf.
16753
16754 2002-02-05 Akim Demaille <akim@epita.fr>
16755
16756 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16757 * configure.in: Check for the declarations of free and malloc.
16758 * src/muscle_tab.c: Adjust.
16759
16760 2002-02-05 Akim Demaille <akim@epita.fr>
16761
16762 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16763 which have no values.
16764
16765 2002-02-05 Akim Demaille <akim@epita.fr>
16766
16767 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16768 * data/: here.
16769
16770 2002-01-29 Paul Eggert <eggert@twinsun.com>
16771
16772 * src/bison.simple (YYSIZE_T): Do not define merely because
16773 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16774 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16775
16776 2002-01-27 Akim Demaille <akim@epita.fr>
16777
16778 Fix `%nonassoc and eof'.
16779
16780 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16781 which were not properly copied! Replace
16782 memcpy (res->errs, src->errs, src->nerrs);
16783 with
16784 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16785 !!!
16786 * tests/regression.at (%nonassoc and eof): Adjust to newest
16787 Autotest: `.' is not in the PATH.
16788
16789 2002-01-27 Akim Demaille <akim@epita.fr>
16790
16791 * tests/sets.at (AT_EXTRACT_SETS): New.
16792 (Nullable): Use it.
16793 (Firsts): New.
16794
16795 2002-01-26 Akim Demaille <akim@epita.fr>
16796
16797 * tests/actions.at, tests/calc.at, tests/headers.at,
16798 * tests/torture.at: Adjust to the newest Autotest which no longer
16799 forces `.' in the PATH.
16800
16801 2002-01-25 Akim Demaille <akim@epita.fr>
16802
16803 * tests/regression.at (%nonassoc and eof): New.
16804 Suggested by Robert Anisko.
16805
16806 2002-01-24 Akim Demaille <akim@epita.fr>
16807
16808 Bison dumps core when trying to complain about broken input files.
16809 Reported by Cris van Pelt.
16810
16811 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16812 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16813 into...
16814 (Invalid inputs): Strengthen: exercise parse_percent_token.
16815
16816 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16817
16818 * src/Makefile.am: Add bison.c++.
16819 * src/bison.c++: New skeleton.
16820
16821 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16822
16823 * po/it.po: New.
16824
16825 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16826
16827 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16828
16829 2002-01-20 Marc Autret <marc@gnu.org>
16830
16831 * src/files.c (compute_output_file_names): Fix
16832
16833 2002-01-20 Marc Autret <marc@gnu.org>
16834
16835 * tests/output.at: New test.
16836 * src/files.c (compute_base_names): Don't map extensions when
16837 the YACC flag is set, use defaults.
16838 Reported by Evgeny Stambulchik.
16839
16840 2002-01-20 Marc Autret <marc@gnu.org>
16841
16842 * src/system.h: Need to define __attribute__ away for non-GCC
16843 compilers as well (i.e., the vendor C compiler).
16844 Suggested by Albert Chin-A-Young.
16845
16846 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16847
16848 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16849 canonical definition.
16850 * src/system.h: Use the canonical definition for PARAMS (avoids
16851 a conflict with the macro from lib/hash.h).
16852
16853 2002-01-11 Akim Demaille <akim@epita.fr>
16854
16855 * configure.in: Use AC_FUNC_STRNLEN.
16856 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16857
16858 2002-01-09 Akim Demaille <akim@epita.fr>
16859
16860 * src/files.c, src/files.h (output_infix): New.
16861 (tab_extension): Remove.
16862 (compute_base_names): Compute the former, drop the latter.
16863 * src/output.c (prepare): Insert the muscles `output-infix', and
16864 `output-suffix'.
16865 * src/parse-skel.y (string, string.1): New.
16866 (section.header): Use it.
16867 (section.yacc): Remove.
16868 (prefix): Remove too.
16869 * src/scan-skel.l: Adjust.
16870 * src/bison.simple, src/bison.hairy: Adjust.
16871
16872 2002-01-09 Akim Demaille <akim@epita.fr>
16873
16874 * configure.in (WERROR_CFLAGS): Compute it.
16875 * src/Makefile.am (CFLAGS): Pass it.
16876 * tests/atlocal.in (CFLAGS): Idem.
16877 * src/files.c: Fix a few warnings.
16878 (get_extension_index): Remove, unused.
16879
16880 2002-01-08 Akim Demaille <akim@epita.fr>
16881
16882 * src/getargs.c (AS_FILE_NAME): New.
16883 (getargs): Use it to convert DOSish file names.
16884 * src/files.c (base_name): Rename as full_base_name to avoid
16885 clashes with `base_name ()'.
16886 (filename_split): New.
16887 (compute_base_names): N-th rewrite, using filename_split.
16888
16889 2002-01-08 Akim Demaille <akim@epita.fr>
16890
16891 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16892 New, stolen from the Fileutils 4.1.
16893 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16894 * configure.in: Check for the presence of memrchr, and of its
16895 prototype.
16896
16897 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16898
16899 * lib/hash.h (__P): Added definition for this macro.
16900 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16901 BUILT_SOURCES, to ensure they are generated first.
16902 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16903 %error-verbose to allow bootstrapping with bison 1.30x.
16904
16905 2002-01-06 Akim Demaille <akim@epita.fr>
16906
16907 * src/reader.c (parse_braces): Don't fetch the next char, the
16908 convention is to fetch on entry.
16909 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16910 'switch' without a following semicolon.
16911 * tests/regression.at (braces parsing): New.
16912
16913 2002-01-06 Akim Demaille <akim@epita.fr>
16914
16915 Bison is dead wrong in its RR conflict reports.
16916
16917 * tests/torture.at (GNU Cim Grammar): New.
16918 * src/conflicts.c (count_rr_conflicts): Fix.
16919
16920 2002-01-06 Akim Demaille <akim@epita.fr>
16921
16922 Creating package.m4 from configure.ac causes too many problems.
16923
16924 * tests/Makefile.am (package.m4): Create it by hand,
16925 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16926
16927 2002-01-06 Akim Demaille <akim@epita.fr>
16928
16929 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16930 skeleton.h.
16931
16932 2002-01-04 Paul Eggert <eggert@twinsun.com>
16933
16934 * doc/bison.texinfo (Debugging):
16935 Remove YYSTDERR; it's no longer defined or used.
16936 Also, s/cstdio.h/cstdio/.
16937
16938 2002-01-03 Akim Demaille <akim@epita.fr>
16939
16940 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16941
16942 2002-01-03 Akim Demaille <akim@epita.fr>
16943
16944 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16945 tracing code to --trace, wait for a better --trace option, with
16946 args.
16947
16948 2002-01-03 Akim Demaille <akim@epita.fr>
16949
16950 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16951 The ISO C++ standard is extremely clear about it: stderr is
16952 considered a macro, not a regular symbol (see table 94 `Header
16953 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16954 Therefore std:: does not apply to it. It still does with fprintf.
16955 Also, s/cstdio.h/cstdio/.
16956
16957 2002-01-03 Akim Demaille <akim@epita.fr>
16958
16959 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16960 for non system headers.
16961
16962 2002-01-02 Akim Demaille <akim@epita.fr>
16963
16964 Equip the skeleton chain with location tracking, runtime trace,
16965 pure parser and scanner.
16966
16967 * src/parse-skel.y: Request a pure parser, locations, and prefix
16968 renaming.
16969 (%union): Having several members with the same type does not help
16970 type mismatches, simplify.
16971 (YYPRINT, yyprint): New.
16972 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16973 (skel_error): this.
16974 Handle locations.
16975 * src/scan-skel.l: Adjust to these changes.
16976 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16977 (LOCATION_PRINT, skel_control_t): New.
16978
16979 2001-12-30 Akim Demaille <akim@epita.fr>
16980
16981 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16982 replace `gb' with BLANKS.
16983 * src/scan-skel.l: Adjust.
16984
16985 2001-12-30 Akim Demaille <akim@epita.fr>
16986
16987 * src/system.h: We don't need nor want bcopy.
16988 Throw away MS-DOS crap: we don't need getpid.
16989 * configure.in: We don't need strndup. It was even causing
16990 problems: because Flex includes the headers *before* us,
16991 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16992 not visible.
16993 * lib/xstrndup.c: New.
16994 * src/scan-skel.l: Use it.
16995 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16996 * src/parse-skel.y: Use %directives instead of #defines.
16997
16998 2001-12-30 Akim Demaille <akim@epita.fr>
16999
17000 * src/skeleton.h: New.
17001 * src/output.c (output_parser, output_master_parser): Remove, dead
17002 code.
17003 * src/output.h (get_lines_number, actions_output, guards_output)
17004 (token_definitions_output): Prototype them.
17005 * src/parse-skel.y: Add the license notice.
17006 Include output.h and skeleton.h.
17007 (process_skeleton): Returns void, and takes a single parameter.
17008 * src/scan-skel.l: Add the license notice.
17009 Include skeleton.h.
17010 Don't use %option yylineno: it seems that then Flex imagines
17011 REJECT has been used, and therefore it won't reallocate its
17012 buffers (which makes no other sense to me than a bug). It results
17013 in warnings for `unused: yy_flex_realloc'.
17014
17015 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17016
17017 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17018 (MUSCLE_INSERT_PREFIX): ...to there.
17019 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17020 (MUSCLE_INSERT_PREFIX): Move from here...
17021
17022 * src/bison.hairy: Add a section directive. Put braces around muscle
17023 names. This parser skeleton is still broken, but Bison should not
17024 choke on a bad muscle 'syntax'.
17025 * src/bison.simple: Add a section directive. Put braces around muscle
17026 names.
17027
17028 * src/files.h (strsuffix, stringappend): Add declarations.
17029 (tab_extension): Add declaration.
17030 (short_base_name): Add declaration.
17031
17032 * src/files.c (strsuffix, stringappend): No longer static. These
17033 functions are used in the skeleton parser.
17034 (tab_extension): New.
17035 (compute_base_names): Use the computations done in this function
17036 to guess if the generated parsers should have '.tab' in their
17037 names.
17038 (short_base_name): No longer static.
17039
17040 * src/output.c (output_skeleton): New.
17041 (output): Disable call to output_master_parser, and give a try to
17042 a new skeleton handling system.
17043 (guards_output, actions_output): No longer static.
17044 (token_definitions_output, get_lines_number): No longer static.
17045
17046 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17047
17048 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17049 parse-skel.y.
17050
17051 * src/parse-skel.y: New file.
17052 * src/scan-skel.l: New file.
17053
17054 2001-12-29 Akim Demaille <akim@epita.fr>
17055
17056 %name-prefix is broken.
17057
17058 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17059 Adjust all dependencies.
17060 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17061 %name-prefix.
17062
17063 Renaming yylval but not yylloc is not consistent. Now we do.
17064
17065 * src/bison.simple: Prefix yylloc if used.
17066 * doc/bison.texinfo (Decl Summary): Document that.
17067
17068 2001-12-29 Akim Demaille <akim@epita.fr>
17069
17070 * doc/bison.texinfo: Promote `%long-directive' over
17071 `%long_directive'.
17072 Remove all references to fixed-output-files, yacc is enough.
17073
17074 2001-12-29 Akim Demaille <akim@epita.fr>
17075
17076 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17077 user prologue. These are defaults.
17078 * tests/actions.at (Mid-rule actions): Make sure the user can
17079 define YYDEBUG and YYERROR_VERBOSE.
17080
17081 2001-12-29 Akim Demaille <akim@epita.fr>
17082
17083 * src/output.c (header_output): Don't forget to export YYLTYPE and
17084 yylloc.
17085 * tests/headers.at (export YYLTYPE): New, make sure it does.
17086 * tests/regression.at (%union and --defines, Invalid CPP headers):
17087 Move to...
17088 * tests/headers.at: here.
17089
17090 2001-12-29 Akim Demaille <akim@epita.fr>
17091
17092 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17093
17094 2001-12-29 Akim Demaille <akim@epita.fr>
17095
17096 * tests/actions.at (Mid-rule actions): Output on a single line
17097 instead of several.
17098
17099 2001-12-29 Akim Demaille <akim@epita.fr>
17100
17101 * doc/bison.texinfo: Formatting changes.
17102
17103 2001-12-29 Akim Demaille <akim@epita.fr>
17104
17105 Don't store the token defs in a muscle, just be ready to output it
17106 on command. Now possible via `symbols'. Fixes a memory leak.
17107
17108 * src/output.c (token_definitions_output): New.
17109 (output_parser, header_output): Use it.
17110 * src/reader.c (symbols_save): Remove.
17111
17112 2001-12-29 Akim Demaille <akim@epita.fr>
17113
17114 * src/bison.simple: Do not provide a default for YYSTYPE and
17115 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17116 default.
17117
17118 2001-12-29 Akim Demaille <akim@epita.fr>
17119
17120 Mid-rule actions are simply... ignored!
17121
17122 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17123 the empty-rule associated to the dummy symbol, not to the host
17124 rule.
17125 * tests/actions.at (Mid-rule actions): New.
17126
17127 2001-12-29 Akim Demaille <akim@epita.fr>
17128
17129 Memory leak.
17130
17131 * src/reader.c (reader): Free grammar.
17132
17133 2001-12-29 Akim Demaille <akim@epita.fr>
17134
17135 Memory leak.
17136
17137 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17138 since it allocates it for each state, although only one is needed.
17139 (allocate_storage): Do it here.
17140
17141 2001-12-29 Akim Demaille <akim@epita.fr>
17142
17143 * src/options.h, src/options.c (create_long_option_table): Rename
17144 as...
17145 (long_option_table_new): this, with a clearer prototype.
17146 (percent_table): Remove, unused,
17147 * src/getargs.c (getargs): Adjust.
17148
17149 2001-12-29 Akim Demaille <akim@epita.fr>
17150
17151 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17152 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17153 as states.
17154
17155 2001-12-29 Akim Demaille <akim@epita.fr>
17156
17157 * src/lalr.c (build_relations): Rename `states' as `states1'.
17158 Sorry, I don't understand exactly what it is, no better name...
17159
17160 2001-12-29 Akim Demaille <akim@epita.fr>
17161
17162 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17163 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17164 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17165 as rules.
17166
17167 2001-12-29 Akim Demaille <akim@epita.fr>
17168
17169 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17170 ago.
17171
17172 2001-12-29 Akim Demaille <akim@epita.fr>
17173
17174 * src/reader.c, src/reader.h (user_toknums): Remove.
17175 Adjust all users to use symbols[i]->user_token_number.
17176
17177 2001-12-29 Akim Demaille <akim@epita.fr>
17178
17179 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17180 Adjust all users to use symbols[i]->prec or ->assoc.
17181
17182 2001-12-29 Akim Demaille <akim@epita.fr>
17183
17184 * src/reader.c, src/reader.h (tags): Remove.
17185 Adjust all users to use symbols[i]->tag.
17186
17187 2001-12-29 Akim Demaille <akim@epita.fr>
17188
17189 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17190 and rule_table.
17191 * src/reader.c (packsymbols): Fill this table.
17192 Drop sprec.
17193 * src/conflicts.c (resolve_sr_conflict): Adjust.
17194 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17195 single table.
17196 Use symbols[i]->tag instead of tags[i].
17197
17198 2001-12-29 Akim Demaille <akim@epita.fr>
17199
17200 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17201 In addition, put a comment in there, to replace...
17202 * tests/regression.at (%union and C comments): Remove.
17203
17204 2001-12-29 Akim Demaille <akim@epita.fr>
17205
17206 * tests/regression.at (Web2c Actions): Blindly move the actual
17207 output as expected output. The contents *seem* right to me, but I
17208 can't pretend reading perfectly parser tables... Nonetheless, all
17209 the other tests pass correctly, the table look OK, even though the
17210 presence of `$axiom' is to be noted: AFAICS it is useless (but
17211 harmless).
17212
17213 2001-12-29 Akim Demaille <akim@epita.fr>
17214
17215 * src/reader.c (readgram): Don't add the rule 0 if there were no
17216 rules read. In other words, add it _after_ having performed
17217 grammar sanity checks.
17218 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17219
17220 2001-12-29 Akim Demaille <akim@epita.fr>
17221
17222 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17223 visible, and some states have now a different number.
17224
17225 2001-12-29 Akim Demaille <akim@epita.fr>
17226
17227 * src/reader.c (readgram): Bind the initial rule's lineno to that
17228 of the first rule.
17229 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17230 (Solved SR Conflicts): Adjust rule 0's line number.
17231
17232 2001-12-29 Akim Demaille <akim@epita.fr>
17233
17234 Fix the `GAWK Grammar' failure.
17235
17236 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17237 the reductions of the first state which was mistakenly confused
17238 with the final state because precisely final_state was initialized
17239 to 0.
17240 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17241 now noticed by Bison.
17242 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17243 have a reduction on $default.
17244
17245 2001-12-29 Akim Demaille <akim@epita.fr>
17246
17247 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17248 rule line numbers.
17249 * src/closure.c (print_closure): Likewise.
17250 * src/derives.c (print_derives): Likewise.
17251 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17252 now.
17253
17254 2001-12-29 Akim Demaille <akim@epita.fr>
17255
17256 * src/lalr.c (lookaheads_print): New.
17257 (lalr): Call it when --trace-flag.
17258 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17259 are dumped.
17260
17261 2001-12-29 Akim Demaille <akim@epita.fr>
17262
17263 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17264 when walking through ritem, even via rule->rhs.
17265 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17266 (useful_production, useless_nonterminals): Likewise.
17267 (reduce_grammar_tables): Likewise, plus update nritems.
17268 * src/nullable.c (set_nullable): Likewise.
17269 * src/lalr.c (build_relations): Likewise.
17270 * tests/sets.at (Nullable): Adjust.
17271 Fortunately, now, the $axiom is no longer nullable.
17272
17273 2001-12-29 Akim Demaille <akim@epita.fr>
17274
17275 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17276 the 0-sentinel.
17277 * src/gram.c (ritem_longest_rhs): Likewise.
17278 * src/reduce.c (nonterminals_reduce): Likewise.
17279 * src/print_graph.c (print_graph): Likewise.
17280 * src/output.c (output_rule_data): Likewise.
17281 * src/nullable.c (set_nullable): Likewise.
17282
17283 2001-12-29 Akim Demaille <akim@epita.fr>
17284
17285 * src/output.c: Comment changes.
17286
17287 2001-12-27 Paul Eggert <eggert@twinsun.com>
17288
17289 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17290 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17291 Sparc, as they were causing more porting problems than the
17292 (minor) performance improvement was worth.
17293
17294 Also, catch up with 1.31's YYSTD.
17295
17296 2001-12-27 Akim Demaille <akim@epita.fr>
17297
17298 * src/output.c (output_gram): Rely on nritems, not the
17299 0-sentinel. See below.
17300 Use -1 as separator, not 0.
17301 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17302 Rely on -1 as separator in yyrhs, instead of 0.
17303 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17304 twice `Now at end of input', therefore there are two lines less to
17305 expect.
17306
17307 2001-12-27 Akim Demaille <akim@epita.fr>
17308
17309 * tests/regression.at (Unresolved SR Conflicts):
17310 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17311 below.
17312
17313 2001-12-27 Akim Demaille <akim@epita.fr>
17314
17315 * src/LR0.c (new_state): Recognize the final state by the fact it
17316 is reached by eoftoken.
17317 (insert_start_shifting_state, insert_eof_shifting_state)
17318 (insert_accepting_state, augment_automaton): Remove, since now
17319 these states are automatically computed from the initial state.
17320 (generate_states): Adjust.
17321 * src/print.c: When reporting a rule number to the user, substract
17322 1, so that the axiom rule is rule 0, and the first user rule is 1.
17323 * src/reduce.c: Likewise.
17324 * src/print_graph.c (print_core): For the time being, just as for
17325 the report, depend upon --trace-flags to dump the full set of
17326 items.
17327 * src/reader.c (readgram): Once the grammar read, insert the rule
17328 0: `$axiom: START-SYMBOL $'.
17329 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17330 number of the states has changed (the final state is no longer
17331 necessarily the last), catch up.
17332
17333 2001-12-27 Akim Demaille <akim@epita.fr>
17334
17335 Try to make the use of the eoftoken valid. Given that its value
17336 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17337 is used instead of > 0 where appropriate, (ii), depend upon nritems
17338 instead of the 0-sentinel.
17339
17340 * src/gram.h, src/gram.c (nritems): New.
17341 Expected to be duplication of nitems, but for the time being...
17342 * src/reader.c (packgram): Assert nritems and nitems are equal.
17343 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17344 * src/closure.c (print_closure, print_fderives): Likewise.
17345 * src/gram.c (ritem_print): Likewise.
17346 * src/print.c (print_core, print_grammar): Likewise.
17347 * src/print_graph.c: Likewise.
17348
17349 2001-12-27 Akim Demaille <akim@epita.fr>
17350
17351 * src/main.c (main): If there are complains after grammar
17352 reductions, then output the report anyway if requested, then die.
17353 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17354 * src/reader.c (eoftoken): New.
17355 (parse_token_decl): If the token being defined has value `0', it
17356 is the eoftoken.
17357 (packsymbols): No longer hack `tags' to insert `$' by hand.
17358 Be sure to preserve the value of the eoftoken.
17359 (reader): Make sure eoftoken is defined.
17360 Initialize nsyms to 0: now eoftoken is created just like the others.
17361 * src/print.c (print_grammar): Don't special case the eof token.
17362 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17363 lie anyway, albeit pleasant.
17364 * tests/calc.at: Exercise error messages with eoftoken.
17365 Change the grammar so that empty input is invalid.
17366 Adjust expectations.
17367 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17368
17369 2001-12-27 Akim Demaille <akim@epita.fr>
17370
17371 * configure.in: Check the protos of strchr ans strspn.
17372 Replace strchr if needed.
17373 * src/system.h: Provide the protos of strchr, strspn and memchr if
17374 missing.
17375 * lib/strchr.c: New.
17376 * src/reader.c (symbols_save): Use strchr.
17377
17378 2001-12-27 Akim Demaille <akim@epita.fr>
17379
17380 * src/print.c, src/print_graph.c (escape): New.
17381 Use it to quote the TAGS outputs.
17382 * src/print_graph.c (print_state): Now errors are in red, and
17383 reductions in green.
17384 Prefer high to wide: output the state number on a line of its own.
17385
17386 2001-12-27 Akim Demaille <akim@epita.fr>
17387
17388 * src/state.h, src/state.c (reductions_new): New.
17389 * src/LR0.c (set_state_table): Let all the states have a
17390 `reductions', even if reduced to 0.
17391 (save_reductions): Adjust.
17392 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17393 * src/print.c (print_reductions, print_actions): Adjust.
17394 * src/output.c (action_row): Adjust.
17395
17396 2001-12-27 Akim Demaille <akim@epita.fr>
17397
17398 * src/state.h, src/state.c (errs_new, errs_dup): New.
17399 * src/LR0.c (set_state_table): Let all the states have an errs,
17400 even if reduced to 0.
17401 * src/print.c (print_errs, print_reductions): Adjust.
17402 * src/output.c (output_actions, action_row): Adjust.
17403 * src/conflicts.c (resolve_sr_conflict): Adjust.
17404
17405 2001-12-27 Akim Demaille <akim@epita.fr>
17406
17407 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17408
17409 2001-12-27 Akim Demaille <akim@epita.fr>
17410
17411 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17412 * src/print.c: here.
17413 (lookaheadset, shiftset): New, used as additional storage by
17414 print_reductions.
17415 (print_results): Adjust.
17416 (print_shifts, print_gotos, print_errs): New, extracted from...
17417 (print_actions): here.
17418 * src/print_graph.c (print_actions): Remove dead code.
17419
17420 2001-12-27 Akim Demaille <akim@epita.fr>
17421
17422 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17423 `$n' and `@n'.
17424
17425 2001-12-27 Akim Demaille <akim@epita.fr>
17426
17427 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17428 (build_relations): Adjust.
17429
17430 2001-12-27 Akim Demaille <akim@epita.fr>
17431
17432 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17433 duplication.
17434
17435 2001-12-27 Akim Demaille <akim@epita.fr>
17436
17437 * src/reader.c (packgram): Catch nitems overflows.
17438
17439 2001-12-27 Akim Demaille <akim@epita.fr>
17440
17441 * src/files.c, src/files.h (guard_obstack): Remove.
17442 * src/output.c (output): Adjust.
17443 * src/reader.c (parse_braces): New, factoring...
17444 (copy_action, copy_guard): these two which are renamed as...
17445 (parse_action, parse_guard): these.
17446 As a voluntary consequence, using braces around guards is now
17447 mandatory.
17448
17449 2001-12-27 Akim Demaille <akim@epita.fr>
17450
17451 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17452 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17453 members.
17454 (symbol_list_new): Adjust.
17455 (copy_action): action_line is the first line, not the last.
17456 (copy_guard): Just as for actions, store the `action' only, not
17457 the switch/case/break flesh.
17458 Don't parse the user action that might follow the guard, let...
17459 (readgram): do it, i.e., now, there can be an action after a
17460 guard.
17461 In other words the guard is just explicitly optional.
17462 (packgram): Adjust.
17463 * src/output.c (guards_output): New.
17464 (output_parser): Call it when needed.
17465 (output): Also free the guard and attrs obstacks.
17466 * src/files.c, src/files.h (obstack_save): Remove.
17467 (output_files): Remove.
17468 As a result, if one needs the former `.act' file, using an
17469 appropriate skeleton which requires actions and guards is now
17470 required.
17471 * src/main.c (main): Adjust.
17472 * tests/semantic.at: New.
17473 * tests/regression.at: Use `input.y' as input file name.
17474 Avoid 8+3 problems by requiring input.c when the test needs the
17475 parser.
17476
17477 2001-12-27 Akim Demaille <akim@epita.fr>
17478
17479 * src/reader.c (symbol_list_new): Be sure to initialize all the
17480 fields.
17481
17482 2001-12-27 Akim Demaille <akim@epita.fr>
17483
17484 All the hacks using a final pseudo state are now useless.
17485
17486 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17487 * src/lalr.c (nLA): New.
17488 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17489 instead of lookaheadsp from the pseudo state (nstate + 1).
17490
17491 2001-12-27 Akim Demaille <akim@epita.fr>
17492
17493 * src/output.c (action_row, token_actions): Use a state_t instead
17494 of a integer, and nlookaheads instead of the following state's
17495 lookaheadsp.
17496
17497 2001-12-27 Akim Demaille <akim@epita.fr>
17498
17499 * src/conflicts.c (log_resolution, flush_shift)
17500 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17501 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17502 (conflicts_print, print_reductions): Use a state_t instead of an
17503 integer when referring to a state.
17504 As much as possible, depend upon nlookaheads, instead of the
17505 `lookaheadsp' member of the following state (since lookaheads of
17506 successive states are successive, the difference between state n + 1
17507 and n served as the number of lookaheads for state n).
17508 * src/lalr.c (add_lookback_edge): Likewise.
17509 * src/print.c (print_core, print_actions, print_state)
17510 (print_results): Likewise.
17511 * src/print_graph.c (print_core, print_actions, print_state)
17512 (print_graph): Likewise.
17513 * src/conflicts.h: Adjust.
17514
17515 2001-12-27 Akim Demaille <akim@epita.fr>
17516
17517 * src/bison.hairy: Formatting/comment changes.
17518 ANSIfy.
17519 Remove `register' indications.
17520 Add plenty of `static'.
17521
17522 2001-12-27 Akim Demaille <akim@epita.fr>
17523
17524 * src/output.c (prepare): Drop the muscle `ntbase' which
17525 duplicates ntokens.
17526 * src/bison.simple: Formatting/comment changes.
17527 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17528 is an undocumented synonym.
17529
17530 2001-12-22 Akim Demaille <akim@epita.fr>
17531
17532 * src/output.c (output_table_data): Change the prototype to use
17533 `int' for array ranges: some invocations do pass an int, not a
17534 short.
17535 Reported by Wayne Green.
17536
17537 2001-12-22 Akim Demaille <akim@epita.fr>
17538
17539 Some actions of web2c.y are improperly triggered.
17540 Reported by Mike Castle.
17541
17542 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17543 * tests/regression.at (Web2c): Rename as...
17544 (Web2c Report): this.
17545 (Web2c Actions): New.
17546
17547 2001-12-22 Akim Demaille <akim@epita.fr>
17548
17549 Reductions in web2c.y are improperly reported.
17550 Reported by Mike Castle.
17551
17552 * src/conflicts.c (print_reductions): Fix.
17553 * tests/regression.at (Web2c): New.
17554
17555 2001-12-18 Akim Demaille <akim@epita.fr>
17556
17557 Some host fail on `assert (!"foo")', which expands to
17558 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17559 Reported by Nelson Beebee.
17560
17561 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17562 `#define it_succeeded 0' and `assert (it_succeeded)'.
17563
17564 2001-12-17 Marc Autret <autret_m@epita.fr>
17565
17566 * src/bison.simple: Don't hard code the skeleton line and filename.
17567 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17568 New line counter 'skeleton_line' (skeleton-line muscle).
17569
17570 2001-12-17 Paul Eggert <eggert@twinsun.com>
17571
17572 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17573 YYDEBUG must be defined to a nonzero value.
17574
17575 * src/bison.simple (yytname): Do not assume that the user defines
17576 YYDEBUG to a properly parenthesized expression.
17577
17578 2001-12-17 Akim Demaille <akim@epita.fr>
17579
17580 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17581 nlookaheads is a new member.
17582 Adjust all users.
17583 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17584 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17585 state.
17586
17587 2001-12-17 Akim Demaille <akim@epita.fr>
17588
17589 * src/files.h, src/files.c (open_files, close_files): Remove.
17590 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17591 let...
17592 * src/reader.c (reader): Do it.
17593
17594 2001-12-17 Akim Demaille <akim@epita.fr>
17595
17596 * src/conflicts.c (print_reductions): Formatting changes.
17597
17598 2001-12-17 Akim Demaille <akim@epita.fr>
17599
17600 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17601 (flush_reduce): New.
17602 (resolve_sr_conflict): Adjust.
17603
17604 2001-12-17 Akim Demaille <akim@epita.fr>
17605
17606 * src/output.c (output_obstack): Be static and rename as...
17607 (format_obstack): this, to avoid any confusion with files.c's
17608 output_obstack.
17609 * src/reader.h (muscle_obstack): Move to...
17610 * src/output.h: here, since it's defined in output.c.
17611
17612 2001-12-17 Akim Demaille <akim@epita.fr>
17613
17614 * src/output.c (action_row, save_column, default_goto)
17615 (sort_actions, matching_state, pack_vector): Better variable
17616 locality.
17617
17618 2001-12-17 Akim Demaille <akim@epita.fr>
17619
17620 * src/output.c: Various formatting changes.
17621
17622 2001-12-17 Akim Demaille <akim@epita.fr>
17623
17624 * src/files.c (output_files): Free the output_obstack.
17625 * src/main.c (main): Call print and print_graph conditionally.
17626 * src/print.c (print): Work unconditionally.
17627 * src/print_graph.c (print_graph): Work unconditionally.
17628 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17629
17630 2001-12-16 Marc Autret <autret_m@epita.fr>
17631
17632 * src/output.c (actions_output): Fix. When we use %no-lines,
17633 there is one less line per action.
17634
17635 2001-12-16 Marc Autret <autret_m@epita.fr>
17636
17637 * src/bison.simple: Remove a useless #line directive.
17638 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17639 * src/output.c (get_lines_number): New.
17640 (output_parser): Adjust, now takes care about the lines of a
17641 output muscles.
17642 Fix line numbering.
17643 (actions_output): Computes the number of lines taken by actions.
17644 (output_master_parser): Insert new skeleton which is the name of
17645 the output parser file name.
17646
17647 2001-12-15 Marc Autret <autret_m@epita.fr>
17648
17649 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17650
17651 2001-12-15 Marc Autret <autret_m@epita.fr>
17652
17653 * src/output.c (output_gram): Keep track of the hairy one.
17654
17655 2001-12-15 Akim Demaille <akim@epita.fr>
17656
17657 Make `make distcheck' work.
17658
17659 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17660 system.h which uses libgettext.h.
17661
17662 2001-12-15 Akim Demaille <akim@epita.fr>
17663
17664 * src/nullable.c (set_nullable): Useless rules must be skipped,
17665 otherwise, since we range over their symbols, we might look at a
17666 nonterminal which no longer ``exists'', i.e., it is not counted in
17667 `nvars', hence we overflow our arrays.
17668
17669 2001-12-15 Akim Demaille <akim@epita.fr>
17670
17671 The header can also be produced directly, without any obstack!
17672 Yahoo!
17673
17674 * src/files.c, src/files.h (defines_obstack): Remove.
17675 (compute_header_macro): Global.
17676 (defines_obstack_save): Remove.
17677 * src/reader.c (parse_union_decl): No longer output to
17678 defines_obstack: its content can be found in the `stype' muscle
17679 anyway.
17680 (output_token_translations): Merge into...
17681 (symbols_output): this.
17682 Rename as...
17683 (symbols_save): this.
17684 (reader): Adjust.
17685 * src/output.c (header_output): New.
17686 (output): Call it.
17687
17688 2001-12-15 Akim Demaille <akim@epita.fr>
17689
17690 * src/reader.c (parse_union_decl): Instead of handling two obstack
17691 simultaneously, use one to define the `stype' muscle, and use the
17692 value of the latter to fill defines_obstack.
17693 (copy_comment): Remove.
17694 (copy_comment2): Work for a single obstack.
17695 Rename as...
17696 (copy_comment): this.
17697
17698 2001-12-15 Akim Demaille <akim@epita.fr>
17699
17700 * src/lex.c, src/lex.h (xgetc): No longer static.
17701 * src/reader.c (parse_union_decl): Revamp.
17702
17703 2001-12-15 Akim Demaille <akim@epita.fr>
17704
17705 Still making progress in separating Bison into (i) input, (ii)
17706 process, (iii) output: now we can directly output the parser file
17707 without using table_obstack at all.
17708
17709 * src/files.c, src/files.h (table_obstack): Bye bye.
17710 (parser_file_name): New.
17711 * src/files.c (compute_output_file_names): Compute it.
17712 * src/output.c (actions_output, output_parser)
17713 (output_master_parser): To a file instead of an obstack.
17714
17715 2001-12-15 Akim Demaille <akim@epita.fr>
17716
17717 Attach actions to rules, instead of pre-outputting them to
17718 actions_obstack.
17719
17720 * src/gram.h (rule_t): action and action_line are new members.
17721 * src/reader.c (symbol_list): Likewise.
17722 (copy_action): Save the actions within the rule.
17723 (packgram): Save them in rule_table.
17724 * src/output.c (actions_output): New.
17725 (output_parser): Use it on `%%actions'.
17726 (output_rule_data): Don't free rule_table.
17727 (output): Do it.
17728 (prepare): Don't save the `action' muscle.
17729 * src/bison.simple: s/%%action/%%actions/.
17730
17731 2001-12-15 Akim Demaille <akim@epita.fr>
17732
17733 * src/reader.c (copy_action): When --yacc, don't append a `;'
17734 to the user action: let it fail if lacking.
17735 Suggested by Arnold Robbins and Tom Tromey.
17736
17737 2001-12-14 Akim Demaille <akim@epita.fr>
17738
17739 * src/lex.c (literalchar): Simply return the char you decoded, non
17740 longer mess around with obstacks and int pointers.
17741 Adjust all callers.
17742
17743 2001-12-14 Akim Demaille <akim@epita.fr>
17744
17745 * src/lex.c (literalchar): Don't escape the special characters,
17746 just decode them, and keep them as char (before, eol was output as
17747 the 2 char string `\n' etc.).
17748 * src/output.c (output_rule_data): Use quotearg to output the
17749 token strings.
17750
17751 2001-12-13 Paul Eggert <eggert@twinsun.com>
17752
17753 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17754 Do not infringe on the global user namespace when using C++.
17755 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17756 All uses of `fprintf' and `stderr' changed.
17757
17758 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17759
17760 2001-12-13 Akim Demaille <akim@epita.fr>
17761
17762 The computation of nullable is broken: it doesn't handle empty
17763 RHS's properly.
17764
17765 * tests/torture.at (GNU AWK Grammar): New.
17766 * tests/sets.at (Nullable): New.
17767 * src/nullable.c (set_nullable): Instead of blindly looping over
17768 `ritems', loop over the rules, and then over their rhs's.
17769
17770 Work around Autotest bugs.
17771
17772 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17773 frame, because Autotest understand lines starting with a `+' as
17774 traces from the shell. Then, they are not processed properly.
17775 Admittedly an Autotest bug, but we don't have time to wait for
17776 Autotest to catch up.
17777 * tests/regression.at (Broken Closure): Adjust to the new table
17778 frames.
17779 Move to...
17780 * tests/sets.at: here.
17781
17782 2001-12-13 Akim Demaille <akim@epita.fr>
17783
17784 * src/closure.c (closure): Use nrules instead of playing tricks
17785 with BITS_PER_WORD.
17786
17787 2001-12-13 Akim Demaille <akim@epita.fr>
17788
17789 * src/print.c (print_actions): Output the handling of `$' as the
17790 traces do: shifting the token EOF. Before EOF was treated as a
17791 nonterminal.
17792 * tests/regression.at: Adjust some tests.
17793 * src/print_graph.c (print_core): Complete the set of items via
17794 closure. The next-to-final and final states are still unsatisfying,
17795 but that's to be addressed elsewhere.
17796 No longer output the rule numbers, but do output the state number.
17797 A single loop for the shifts + gotos is enough, but picked a
17798 distinct color for each.
17799 (print_graph): Initialize and finalize closure.
17800
17801 2001-12-13 Akim Demaille <akim@epita.fr>
17802
17803 * src/reader.c (readgram): Remove dead code, an strip useless
17804 braces.
17805 (get_type): Remove, unused.
17806
17807 2001-12-12 Akim Demaille <akim@epita.fr>
17808
17809 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17810 on that of lib/error.c.
17811
17812 2001-12-12 Akim Demaille <akim@epita.fr>
17813
17814 Some hosts don't like `/' in includes.
17815
17816 * src/system.h: Include libgettext.h without qualifying the path.
17817 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17818 $(top_srcdir).
17819
17820 2001-12-11 Marc Autret <autret_m@epita.fr>
17821
17822 * src/output.c (output_parser): Remove useless muscle.
17823
17824 2001-12-11 Marc Autret <autret_m@epita.fr>
17825
17826 * src/bison.simple: Remove #line just before %%epilogue. It
17827 is now handled in ...
17828 * src/reader.c (read_additionnal_code): Add the output of a
17829 #line for the epilogue.
17830
17831 2001-12-10 Marc Autret <autret_m@epita.fr>
17832
17833 * src/reader.c (copy_definition): Re-use CPP-outed code which
17834 replace precedent remove.
17835 * src/bison.simple: Remove #line before %%prologue because
17836 %%input-line is wrong at this time.
17837
17838 2001-12-10 Marc Autret <autret_m@epita.fr>
17839
17840 * src/reader.c (symbols_output): Clean up.
17841 * src/output.c (output_gram, output): Clean up.
17842
17843 2001-12-10 Akim Demaille <akim@epita.fr>
17844
17845 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17846 * src/LR0.c (set_state_table): here.
17847 * src/lalr.c (lalr): Call it.
17848
17849 2001-12-10 Akim Demaille <akim@epita.fr>
17850
17851 * src/state.h (shifts): Remove the `number' member: shifts are
17852 attached to state, hence no longer need to be labelled with a
17853 state number.
17854
17855 2001-12-10 Akim Demaille <akim@epita.fr>
17856
17857 Now that states have a complete set of members, the linked list of
17858 shifts is useless: just fill directly the state's shifts member.
17859
17860 * src/state.h (shifts): Remove the `next' member.
17861 * src/LR0.c (first_state, last_state): Remove.
17862 Adjust the callers.
17863 (augment_automaton): Don't look for the shifts that must be added
17864 a shift on EOF: it is those of the state we looked for! But now,
17865 since shifts are attached, it is no longer needed to looking
17866 merely by its id: its number.
17867
17868 2001-12-10 Akim Demaille <akim@epita.fr>
17869
17870 * src/LR0.c (augment_automaton): Better variable locality.
17871 Remove an impossible branch: if there is a state corresponding to
17872 the start symbol being shifted, then there is shift for the start
17873 symbol from the initial state.
17874
17875 2001-12-10 Akim Demaille <akim@epita.fr>
17876
17877 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17878 only when appropriate: when insert_start_shifting_state' is not
17879 invoked.
17880 * tests/regression.at (Rule Line Numbers): Adjust.
17881
17882 2001-12-10 Akim Demaille <akim@epita.fr>
17883
17884 * src/LR0.c (augment_automaton): Now that all states have shifts,
17885 merge the two cases addition shifts to the initial state.
17886
17887 2001-12-10 Akim Demaille <akim@epita.fr>
17888
17889 * src/lalr.c (set_state_table): Move to...
17890 * src/LR0.c: here.
17891 * src/lalr.c (lalr): Don't call it...
17892 * src/LR0.c (generate_states): do it.
17893 * src/LR0.h (first_state): Remove, only the table is used.
17894
17895 2001-12-10 Akim Demaille <akim@epita.fr>
17896
17897 * src/LR0.h (first_shift, first_reduction): Remove.
17898 * src/lalr.c: Don't use first_shift: find shifts through the
17899 states.
17900
17901 2001-12-10 Akim Demaille <akim@epita.fr>
17902
17903 * src/LR0.c: Attach shifts to states as soon as they are
17904 computed.
17905 * src/lalr.c (set_state_table): Instead of assigning shifts to
17906 state, just assert that the mapping was properly done.
17907
17908 2001-12-10 Akim Demaille <akim@epita.fr>
17909
17910 * src/LR0.c (insert_start_shift): Rename as...
17911 (insert_start_shifting_state): this.
17912 (insert_eof_shifting_state, insert_accepting_state): New.
17913 (augment_automaton): Adjust.
17914 Better locality of the variables.
17915 When looking if the start_symbol is shifted from the initial
17916 state, using `while (... symbol != start_symbol ...)' sounds
17917 better than `while (... symbol < start_symbol ...)': If fail
17918 to see how the order between symbols could be relevant!
17919
17920 2001-12-10 Akim Demaille <akim@epita.fr>
17921
17922 * src/getargs.h: Don't declare `spec_name_prefix' and
17923 `spec_file_prefix', declared by src/files.h.
17924 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17925 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17926 * src/output.c (prepare): Adjust.
17927 * src/reader.c (symbols_output): Likewise.
17928 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17929
17930 2001-12-10 Akim Demaille <akim@epita.fr>
17931
17932 * src/muscle_tab.c (muscle_init): NULL is a better default than
17933 `"0"'.
17934
17935 2001-12-10 Akim Demaille <akim@epita.fr>
17936
17937 * src/reader.c (reader): Calling symbols_output once is enough.
17938
17939 2001-12-10 Akim Demaille <akim@epita.fr>
17940
17941 Now that states have a complete set of members, the linked list of
17942 reductions is useless: just fill directly the state's reductions
17943 member.
17944
17945 * src/state.h (struct reductions): Remove member `number' and
17946 `next'.
17947 * src/LR0.c (first_reduction, last_reduction): Remove.
17948 (save_reductions): Don't link the new reductions, store them in
17949 this_state.
17950 * src/lalr.c (set_state_table): No need to attach reductions to
17951 states, it's already done.
17952 * src/output.c (output_actions): No longer free the shifts, then
17953 the reductions, then the states: free all the states and their
17954 members.
17955
17956 2001-12-10 Akim Demaille <akim@epita.fr>
17957
17958 * src/options.c (OPTN, DRTV, BOTH): New.
17959 (option_table): Use them.
17960
17961 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17962 the job of system.h.
17963 * src/options.c: Don't include stdio.h and xalloc.h for the same
17964 reasons.
17965
17966 2001-12-10 Akim Demaille <akim@epita.fr>
17967
17968 * src/output.c (output, prepare): Make sure the values of the
17969 muscles `action' and `prologue' are 0-terminated.
17970
17971 2001-12-10 Akim Demaille <akim@epita.fr>
17972
17973 Clean up GCC warnings.
17974
17975 * src/reader.c (copy_action): `buf' is not used.
17976 (parse_skel_decl): Be static.
17977 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17978 * src/options.h (create_long_option_table): Have a real prototype.
17979 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17980 (hash_delete_at): Return const void *.
17981 Adjust casts to preserve the const.
17982
17983 2001-12-10 Akim Demaille <akim@epita.fr>
17984
17985 * configure.in: Require 2.52g.
17986 M4 is not needed, but AUTOM4TE is.
17987 * m4/m4.m4: Remove.
17988 * tests/Makefile.am: Adjust.
17989
17990 2001-12-10 Akim Demaille <akim@epita.fr>
17991
17992 One structure for states is enough, even though theoretically
17993 there are LR(0) states and LALR(1) states.
17994
17995 * src/lalr.h (state_t): Remove.
17996 (state_table): Be state_t **, not state_t *.
17997 * src/state.h (core, CORE_ALLOC): Rename as...
17998 (state_t, STATE_ALLOC): this.
17999 Add the LALR(1) members: shifts, reductions, errs.
18000 * src/LR0.c (state_table): Rename as...
18001 (state_hash): this, to avoid name clashes with the global
18002 `state_table'.
18003 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18004 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18005
18006 2001-12-10 Akim Demaille <akim@epita.fr>
18007
18008 Bison dumps core on bash.y.
18009 Reported by Pascal Bart.
18010
18011 * src/warshall.c (bitmatrix_print): New.
18012 (TC): Use it.
18013 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18014 j must be the outer loop.
18015 * tests/regression.at (Broken Closure): New.
18016
18017 2001-12-05 Akim Demaille <akim@epita.fr>
18018
18019 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18020 its argument.
18021 Reported by Peter Hamorsky.
18022
18023 2001-12-05 Akim Demaille <akim@epita.fr>
18024
18025 * src/conflicts.c (err_table): Remove.
18026 (resolve_sr_conflict): Adjust.
18027 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18028 Rename as...
18029 (state_t.reductions, state_t.shifts): this.
18030
18031 2001-12-05 Akim Demaille <akim@epita.fr>
18032
18033 * src/reduce.c (reduce_grammar_tables): No longer disable the
18034 removal of useless rules via CPP but via `if (0)', so that the
18035 compiler still check the code is valid.
18036 For instance, it should have noticed `rline' no longer exists: use
18037 the `line' member of rule_t.
18038 * src/gram.c (dummy, rline): Remove, unused.
18039
18040 2001-12-05 Akim Demaille <akim@epita.fr>
18041
18042 * src/output.c (pack_vector): Use assert, not berror.
18043 * src/main.c (berror): Remove, unused.
18044
18045 2001-12-05 Akim Demaille <akim@epita.fr>
18046
18047 New experimental feature: if --verbose --trace output all the
18048 items of a state, not only its kernel.
18049
18050 * src/print.c (print_core): If `trace_flag', then invoke closure
18051 before outputting the items of the state (print_core is no longer
18052 a correct name them).
18053 (print_results): Invoke new_closure/free_closure if needed.
18054
18055 2001-12-05 Akim Demaille <akim@epita.fr>
18056
18057 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18058 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18059 (nitemset): for consistency with the rest of the project.
18060
18061 2001-12-05 Akim Demaille <akim@epita.fr>
18062
18063 * src/closure.c (print_closure): Improve.
18064 (closure): Use it for printing input and output.
18065
18066 2001-12-05 Akim Demaille <akim@epita.fr>
18067
18068 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18069 indexed by nonterminals.
18070
18071 2001-12-05 Akim Demaille <akim@epita.fr>
18072
18073 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18074 what it was!).
18075 * src/warshall.h: Remove accidental duplication of the content.
18076
18077 2001-12-05 Akim Demaille <akim@epita.fr>
18078
18079 * src/closure.c (set_fderives): De-obfuscate.
18080
18081 2001-12-05 Akim Demaille <akim@epita.fr>
18082
18083 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18084
18085 2001-12-05 Akim Demaille <akim@epita.fr>
18086
18087 * src/closure.c (set_firsts): De-obfuscate.
18088
18089 2001-12-05 Akim Demaille <akim@epita.fr>
18090
18091 * src/output.c (action_row): De-obfuscate
18092 using the good o' techniques: arrays not pointers, variable
18093 locality, BITISSET, RESETBIT etc.
18094
18095 2001-12-05 Akim Demaille <akim@epita.fr>
18096
18097 Pessimize the code to simplify it: from now on, all the states
18098 have a valid SHIFTS, which NSHIFTS is possibly 0.
18099
18100 * src/LR0.c (shifts_new): Be global and move to..
18101 * src/state.c, src/state.h: here.
18102 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18103 * src/print_graph: Adjust.
18104
18105 2001-12-05 Akim Demaille <akim@epita.fr>
18106
18107 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18108 * src/conflicts.c: Use it.
18109 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18110 incorrectly ``simplified''.
18111
18112 2001-12-05 Akim Demaille <akim@epita.fr>
18113
18114 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18115 using the good o' techniques: arrays not pointers, variable
18116 locality, BITISSET, RESETBIT etc.
18117
18118 2001-12-05 Akim Demaille <akim@epita.fr>
18119
18120 * src/state.h (SHIFT_SYMBOL): New.
18121 * src/conflicts.c: Use it to deobfuscate.
18122
18123 2001-12-05 Akim Demaille <akim@epita.fr>
18124
18125 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18126 (print_reductions): De-obfuscate using the good o' techniques:
18127 arrays not pointers, variable locality, BITISSET.
18128
18129 2001-12-05 Akim Demaille <akim@epita.fr>
18130
18131 * src/conflicts.c (print_reductions): Arrays, not pointers.
18132 Use BITISSET.
18133
18134 2001-12-05 Akim Demaille <akim@epita.fr>
18135
18136 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18137
18138 2001-12-05 Akim Demaille <akim@epita.fr>
18139
18140 * src/conflicts.c (print_reductions): Improve variable locality.
18141
18142 2001-12-05 Akim Demaille <akim@epita.fr>
18143
18144 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18145
18146 2001-12-05 Akim Demaille <akim@epita.fr>
18147
18148 * src/conflicts.c (print_reductions): Improve variable locality.
18149
18150 2001-12-05 Akim Demaille <akim@epita.fr>
18151
18152 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18153 * src/lalr.c: Use them.
18154
18155 2001-12-05 Akim Demaille <akim@epita.fr>
18156
18157 * src/LR0.c (augment_automaton): Formatting changes.
18158 Better variable locality.
18159
18160 2001-12-05 Akim Demaille <akim@epita.fr>
18161
18162 * src/lalr.c (matrix_print): New.
18163 (transpose): Use it.
18164 Use arrays instead of pointers.
18165
18166 2001-12-05 Akim Demaille <akim@epita.fr>
18167
18168 * src/lalr.c (maxrhs): Move to...
18169 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18170 * src/lalr.c (build_relations): Adjust.
18171
18172 2001-12-05 Akim Demaille <akim@epita.fr>
18173
18174 * src/lalr.c (transpose): Free the memory allocated to the
18175 argument, as it is replaced by the results by the unique caller.
18176 (build_relations): Merely invoke transpose: it handles the memory
18177 deallocation.
18178 Improve variable locality.
18179 Avoid variables used as mere abbreviations.
18180 (compute_lookaheads): Use arrays instead of pointers.
18181
18182 2001-12-05 Akim Demaille <akim@epita.fr>
18183
18184 * src/lalr.c (initialize_F): Improve variable locality.
18185 Avoid variables used as mere abbreviations.
18186
18187 2001-12-05 Akim Demaille <akim@epita.fr>
18188
18189 * src/derives.c (print_derives): Display the ruleno.
18190 * src/lalr.c (initialize_F, transpose): Better variable locality
18191 to improve readability.
18192 Avoid variables used as mere abbreviations.
18193
18194 2001-12-05 Akim Demaille <akim@epita.fr>
18195
18196 * src/lalr.c (traverse): Use arrays instead of pointers.
18197
18198 2001-12-05 Akim Demaille <akim@epita.fr>
18199
18200 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18201 the handling of squeue.
18202 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18203
18204 2001-12-05 Akim Demaille <akim@epita.fr>
18205
18206 Because useless nonterminals are now kept alive (instead of being
18207 `destroyed'), we now sometimes examine them, and store information
18208 related to them. Hence we need to know their number, and adjust
18209 memory allocations.
18210
18211 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18212 static.
18213 * src/LR0.c (allocate_itemsets): The memory allocated to
18214 `symbol_count' was used for two different purpose: once to count
18215 the number of occurrences of each symbol, and later reassigned to
18216 `shift_symbol', containing the symbol that can be shifted from a
18217 given state.
18218 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18219 only, and...
18220 (new_itemsets): Allocate `shift_symbol' here.
18221 (allocate_itemsets): symbol_count includes useless nonterminals.
18222 Make room for them.
18223 (free_storage): Use `free', not `XFREE', for pointers that cannot
18224 be null.
18225
18226 2001-12-05 Akim Demaille <akim@epita.fr>
18227
18228 * src/nullable.c (set_nullable): Deobfuscate the handling of
18229 ritem.
18230 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18231
18232 2001-12-05 Akim Demaille <akim@epita.fr>
18233
18234 * src/gram.c, src/gram.h (ritem_print): New.
18235 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18236 (This useless function was defined only to work around VMS linkers
18237 that can't handle compilation units with variables only).
18238 * src/reduce.c (dump_grammar): Use it to trace the construction of
18239 ritem.
18240
18241 2001-12-04 Paul Eggert <eggert@twinsun.com>
18242
18243 * src/bison.simple (union yyalloc): Change member names
18244 to be the same as the stack names.
18245 (yyparse): yyptr is now union yyalloc *, not char *.
18246 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18247 and may generate better code on some machines.
18248 (yystpcpy): Use prototype if __STDC__ is defined, not just
18249 if __cplusplus is defined.
18250
18251 2001-11-30 Akim Demaille <akim@epita.fr>
18252
18253 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18254 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18255 Gettext doesn't compile cleanly, and dies with -Werror.
18256 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18257 Include WARNING_CFLAGS here.
18258 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18259 before being defined.
18260
18261 2001-11-27 Paul Eggert <eggert@twinsun.com>
18262
18263 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18264 First arg is int, not unsigned.
18265 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18266 (SIZE_MAX, UINT_MAX): New macros.
18267 (quotearg_n_options): Abort if N is negative.
18268 Avoid overflow check on hosts where size_t is 64 bits and int
18269 is 32 bits, as overflow is impossible there.
18270 Fix off-by-one typo that caused unnecessary reallocation.
18271
18272 2001-11-29 Paul Eggert <eggert@twinsun.com>
18273
18274 Name space cleanup in generated parser.
18275
18276 * doc/bison.texinfo (Bison Parser): Discuss system headers
18277 and their effect on the user name space.
18278
18279 * src/bison.simple:
18280 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18281 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18282 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18283
18284 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18285 on user names when possible.
18286
18287 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18288 Simplify test for whather <alloca.h> exists.
18289
18290 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18291
18292 (<stdio.h>): Include if YYDEBUG.
18293
18294 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18295 ! defined (yyoverflow) && ! defined (yymemcpy).
18296
18297 (yymemcpy, yyparse): Rename local variables as needed so that
18298 they all begin with 'yy'.
18299
18300 (yystrlen, yystpcpy): New functions.
18301
18302 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18303 All uses changed.
18304
18305 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18306 instead of relying on string.h functions. Use YYSTACK_ALLOC
18307 and YYSTACK_FREE instead of malloc and free.
18308
18309 2001-11-30 Akim Demaille <akim@epita.fr>
18310
18311 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18312 before their first uses.
18313 (YYBISON, YYPURE): Move to the top of the output.
18314
18315 2001-11-30 Akim Demaille <akim@epita.fr>
18316
18317 * tests/reduce.at (Useless Nonterminals): Fix.
18318
18319 2001-11-30 Akim Demaille <akim@epita.fr>
18320
18321 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18322 if body instead of `;' to pacify GCC's warnings.
18323
18324 2001-11-30 Akim Demaille <akim@epita.fr>
18325
18326 Instead of mapping the LHS of unused rules to -1, keep the LHS
18327 valid, but flag the rules as invalid.
18328
18329 * src/gram.h (rule_t): `useful' is a new member.
18330 * src/print.c (print_grammar): Adjust.
18331 * src/derives.c (set_derives): Likewise.
18332 * src/reader.c (packgram, reduce_output): Likewise.
18333 * src/reduce.c (reduce_grammar_tables): Likewise.
18334 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18335
18336 2001-11-30 Akim Demaille <akim@epita.fr>
18337
18338 * src/reduce.c (reduce_output): Formatting changes.
18339 * src/print.c (print_results, print_grammar): Likewise.
18340 * tests/regression.at (Rule Line Numbers)
18341 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18342
18343 2001-11-30 Akim Demaille <akim@epita.fr>
18344
18345 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18346 useless nonterminals, move them at the end of the symbol arrays.
18347 (reduce_output): Adjust.
18348 * tests/reduce.at (Useless Nonterminals): Adjust.
18349
18350 2001-11-30 Akim Demaille <akim@epita.fr>
18351
18352 * src/reduce.c: Various comment/formatting changes.
18353 (nonterminals_reduce): New, extracted from...
18354 (reduce_grammar_tables): here.
18355 (reduce_grammar): Call nonterminals_reduce.
18356
18357 2001-11-29 Paul Eggert <eggert@twinsun.com>
18358
18359 * src/bison.simple (YYSTACK_REALLOC): Remove.
18360 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18361 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18362 New macros.
18363 (union yyalloc): New type.
18364 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18365 an arbitrary restriction on hosts where size_t is wider than int.
18366
18367 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18368 a parser stack overflow. Allocate just one block of memory for all
18369 three stacks, instead of allocating three blocks; this typically is
18370 faster and reduces fragmentation.
18371
18372 Do not limit the number of items in the stack to a value that fits
18373 in 'int', as this is an arbitrary limit on hosts with 64-bit
18374 size_t and 32-bit int.
18375
18376 2001-11-29 Marc Autret <autret_m@epita.fr>
18377
18378 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18379 of defining YYERROR_VERBOSE.
18380 [AT_DATA]: $4 is now out of C declarations in the prologue.
18381
18382 2001-11-28 Marc Autret <autret_m@epita.fr>
18383
18384 * src/reader.c (parse_dquoted_param): New.
18385 (parse_skel_decl): Use it.
18386 * src/lex.h: Add its prototype.
18387 * src/lex.c (literalchar): Become not static.
18388
18389 2001-11-28 Marc Autret <autret_m@epita.fr>
18390
18391 * src/output.h: And put its extern declaration here.
18392 * src/output.c (error_verbose): Define here.
18393 (prepare): Echo name modification.
18394 * src/getargs.h: Clean its extern declaration.
18395 * src/getargs.c (error_verbose_flag): Remove.
18396 (getargs): Remove case 'e'.
18397 * src/options.c (option_table): 'error-verbose' is now seen as simple
18398 percent option.
18399 Include output.h.
18400
18401 * src/reader.c (read_declarations): Remove case tok_include.
18402 (parse_include_decl): Remove.
18403 * src/lex.h (token_t): Remove tok_include.
18404 * src/options.c (option_table): 'include' is now a simple command line
18405 option.
18406
18407 2001-11-28 Marc Autret <autret_m@epita.fr>
18408
18409 * src/bison.simple: Adjust muscle names.
18410 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18411 * src/output.c (prepare): s/_/-/ for the muscles names.
18412 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18413
18414 2001-11-28 Marc Autret <autret_m@epita.fr>
18415
18416 * src/bison.simple: Fix debug.
18417 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18418
18419 2001-11-28 Akim Demaille <akim@epita.fr>
18420
18421 * src/LR0.c (shifts_new): New.
18422 (save_shifts, insert_start_shift, augment_automaton): Use it.
18423
18424 2001-11-28 Akim Demaille <akim@epita.fr>
18425
18426 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18427 keep ruleno only.
18428
18429 2001-11-28 Akim Demaille <akim@epita.fr>
18430
18431 * src/closure.c (closure): Instead of looping over word in array
18432 then bits in words, loop over bits in array.
18433
18434 2001-11-28 Akim Demaille <akim@epita.fr>
18435
18436 * src/closure.c (closure): No longer optimize the special case
18437 where all the bits of `ruleset[r]' are set to 0, to make the code
18438 clearer.
18439
18440 2001-11-28 Akim Demaille <akim@epita.fr>
18441
18442 * src/closure.c (closure): `r' and `c' are new variables, used to
18443 de-obfuscate accesses to RULESET and CORE.
18444
18445 2001-11-28 Akim Demaille <akim@epita.fr>
18446
18447 * src/reduce.c (reduce_print): Use ngettext.
18448 (dump_grammar): Improve the trace accuracy.
18449
18450 2001-11-28 Akim Demaille <akim@epita.fr>
18451
18452 * src/reduce.c (dump_grammar): Don't translate trace messages.
18453
18454 2001-11-28 Akim Demaille <akim@epita.fr>
18455
18456 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18457 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18458 as all tags are free'ed afterwards.
18459 From Enrico Scholz.
18460
18461 2001-11-27 Paul Eggert <eggert@twinsun.com>
18462
18463 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18464 use alloca when we didn't want to, and vice versa.
18465
18466 2001-11-27 Marc Autret <autret_m@epita.fr>
18467
18468 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18469 initialization.
18470 * src/output.c (prepare): Remove its update.
18471
18472 2001-11-27 Marc Autret <autret_m@epita.fr>
18473
18474 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18475 Use %error-verbose.
18476
18477 2001-11-27 Marc Autret <autret_m@epita.fr>
18478
18479 * src/bison.simple: Remove YYERROR_VERBOSE using.
18480 Use %%error_verbose.
18481 (yyparse): Likewise.
18482 * src/output.c (prepare): Give its final value.
18483 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18484 * src/getargs.h: Add its extern declaration.
18485 * src/getargs.c (error_verbose_flag): New int.
18486 (getargs): Update to catch new case.
18487 * src/options.c (option_table): 'error-verbose' is a new option.
18488 (shortopts): Update.
18489
18490 2001-11-27 Akim Demaille <akim@epita.fr>
18491
18492 * src/system.h: Use intl/libgettext.h.
18493 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18494
18495 2001-11-27 Akim Demaille <akim@epita.fr>
18496
18497 * tests/torture.at (Exploding the Stack Size with Malloc):
18498 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18499
18500 2001-11-27 Akim Demaille <akim@epita.fr>
18501
18502 * src/files.c: Include error.h.
18503 Reported by Hans Aberg.
18504
18505 2001-11-26 Marc Autret <autret_m@epita.fr>
18506
18507 * src/reader.c (parse_include_decl): New, not yet implemented.
18508 (read_declarations): Add case tok_include.
18509 * src/getargs.h (include): Add its extern definition.
18510 * src/getargs.c (include): New const char *.
18511 (getargs): Add case '-I'.
18512 * src/options.c (option_table): Add include as command line and
18513 percent option.
18514 * src/lex.h (token_t): Add tok_include.
18515
18516 2001-11-26 Akim Demaille <akim@epita.fr>
18517
18518 * src/reader.c (readgram): Make sure rules for mid-rule actions
18519 have a lineno equal to that of their host rule.
18520 Reported by Hans Aberg.
18521 * tests/regression.at (Rule Line Numbers): New.
18522
18523 2001-11-26 Akim Demaille <akim@epita.fr>
18524
18525 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18526 size_ts.
18527
18528 2001-11-26 Akim Demaille <akim@epita.fr>
18529
18530 * src/complain.c, src/complain.h (error): Remove, provided by
18531 lib/error.[ch].
18532
18533 2001-11-26 Akim Demaille <akim@epita.fr>
18534
18535 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18536 issue an error message.
18537 * tests/regression.at (Invalid %directive): New.
18538 Reported by Hans Aberg.
18539
18540 2001-11-26 Akim Demaille <akim@epita.fr>
18541
18542 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18543 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18544
18545 2001-11-26 Akim Demaille <akim@epita.fr>
18546
18547 * src/conflicts.c (conflicts_print): Don't complain at all when
18548 there are no reduce/reduce conflicts, and as many shift/reduce
18549 conflicts as expected.
18550 * tests/regression.at (%expect right): Adjust.
18551
18552 2001-11-23 Akim Demaille <akim@epita.fr>
18553
18554 * lib/alloca.c: Update, from fileutils.
18555
18556 2001-11-23 Akim Demaille <akim@epita.fr>
18557
18558 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18559
18560 2001-11-23 Akim Demaille <akim@epita.fr>
18561
18562 * src/system.h: Include alloca.h.
18563 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18564
18565 2001-11-23 Akim Demaille <akim@epita.fr>
18566
18567 * src/print_graph.c (print_actions): Remove `rule', unused.
18568 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18569 pacify GCC's signed < unsigned warnings.
18570 * src/closure.c (itemsetsize): Likewise.
18571 * src/reader.c (symbol_list_new): Static.
18572
18573 2001-11-23 Akim Demaille <akim@epita.fr>
18574
18575 Attaching lineno to buckets is stupid, since only one copy of each
18576 symbol is kept, only the line of the first occurrence is kept too.
18577
18578 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18579 * src/reader.c (rline_allocated): Remove, unused.
18580 (symbol_list): Have a `line' member.
18581 (symbol_list_new): New.
18582 (readgram): Use it.
18583 * src/print.c (print_grammar): Output the rule line numbers.
18584 * tests/regression.at (Solved SR Conflicts)
18585 (Unresolved SR Conflicts): Adjust.
18586 Reported by Hans Aberg.
18587
18588 2001-11-22 Marc Autret <autret_m@epita.fr>
18589
18590 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18591
18592 2001-11-22 Marc Autret <autret_m@epita.fr>
18593
18594 * src/muscle_tab.c (muscle_init): Remove initialization of
18595 skeleton muscle.
18596 * src/output.c (output_master_parser): Do it here.
18597
18598 2001-11-20 Akim Demaille <akim@epita.fr>
18599
18600 * po/sv.po: New.
18601 * configure.in (ALL_LINGUAS): Adjust.
18602 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18603 longer contains strings to translate.
18604
18605 2001-11-19 Akim Demaille <akim@epita.fr>
18606
18607 * src/conflicts.c (conflicts_print): Add a missing \n.
18608
18609 2001-11-19 Akim Demaille <akim@epita.fr>
18610
18611 * src/nullable.c (nullable_print): New.
18612 (set_nullable): Call it when tracing.
18613 Better locality of variables.
18614
18615 2001-11-19 Akim Demaille <akim@epita.fr>
18616
18617 * src/print.c (print_actions): Better locality of variables.
18618
18619 2001-11-19 Akim Demaille <akim@epita.fr>
18620
18621 * src/derives.c (print_derives): Fix and enrich.
18622 * src/closure.c (print_fderives): Likewise.
18623
18624 2001-11-19 Akim Demaille <akim@epita.fr>
18625
18626 * src/closure.c (itemsetend): Remove, replaced with...
18627 (itemsetsize): new.
18628
18629 2001-11-19 Akim Demaille <akim@epita.fr>
18630
18631 * src/LR0.c (kernel_end): Remove, replaced with...
18632 (kernel_size): new.
18633
18634 2001-11-19 Akim Demaille <akim@epita.fr>
18635
18636 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18637 to clarify.
18638
18639 2001-11-19 Akim Demaille <akim@epita.fr>
18640
18641 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18642
18643 2001-11-19 Akim Demaille <akim@epita.fr>
18644
18645 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18646 trace messages.
18647 * src/LR0.c: Likewise.
18648 (allocate_itemsets): Use arrays instead of pointers to clarify.
18649
18650 2001-11-19 Akim Demaille <akim@epita.fr>
18651
18652 * src/getargs.c (statistics_flag): Replace with...
18653 (trace_flag): New.
18654 (longopts): Accept --trace instead of --statistics.
18655 * src/getargs.h, src/options.c: Adjust.
18656 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18657 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18658
18659 2001-11-19 Akim Demaille <akim@epita.fr>
18660
18661 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18662 pointers to clarify the code.
18663 (save_reductions, save_shifts): Factor common parts of alternatives.
18664
18665 2001-11-19 Akim Demaille <akim@epita.fr>
18666
18667 * src/LR0.c (new_state, get_state): Complete TRACE code.
18668 * src/closure.c: Include `reader.h' to get `tags', needed by the
18669 trace code.
18670 Rename the conditional DEBUG as TRACE.
18671 Output consistently TRACEs to stderr, not stdout.
18672 * src/derives.c: Likewise.
18673 * src/reduce.c: (inaccessable_symbols): Using if is better style
18674 than goto.
18675 Use `#if TRACE' instead of `#if 0' for tracing code.
18676
18677 2001-11-19 Akim Demaille <akim@epita.fr>
18678
18679 * src/system.h (LIST_FREE, shortcpy): New.
18680 * src/LR0.c: Use them.
18681 * src/output.c (free_itemsets, free_reductions, free_shifts):
18682 Remove, replaced by LIST_FREE.
18683
18684 2001-11-19 Akim Demaille <akim@epita.fr>
18685
18686 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18687 (REDUCTIONS_ALLOC): New.
18688 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18689 allocation.
18690
18691 2001-11-19 Akim Demaille <akim@epita.fr>
18692
18693 * src/LR0.c (new_state): Complete trace code.
18694 * src/nullable.c (set_nullable): Don't translate traces.
18695
18696 2001-11-19 Akim Demaille <akim@epita.fr>
18697
18698 * src/print_graph.c (print_core): Better locality of variables.
18699 * src/print.c (print_core): Likewise.
18700
18701 2001-11-19 Akim Demaille <akim@epita.fr>
18702
18703 * src/vcg.c: You do the output, so you are responsible of the
18704 handling of VCG syntax, in particular: use quotearg.
18705 * src/print_graph.c: Don't.
18706 (print_actions): Don't output the actions as part of the nodes,
18707 since that's the job of the edges.
18708 (print_state): Don't output by hand: fill the node description,
18709 and ask for its output.
18710
18711 2001-11-19 Akim Demaille <akim@epita.fr>
18712
18713 * src/bison.simple (yyparse): When verbosely reporting an error,
18714 no longer put additional quotes around token names.
18715 * tests/calc.at: Adjust.
18716
18717 2001-11-19 Akim Demaille <akim@epita.fr>
18718
18719 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18720 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18721 * src/output.c: Adjust.
18722
18723 2001-11-19 Akim Demaille <akim@epita.fr>
18724
18725 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18726 (rule_t): this.
18727 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18728
18729 2001-11-19 Akim Demaille <akim@epita.fr>
18730
18731 * src/gram.h (rule_t): New.
18732 (rule_table): New.
18733 (rrhs, rlhs): Remove, part of state_t.
18734 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18735 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18736 * src/reader.c, src/reduce.c: Adjust.
18737
18738 2001-11-19 Akim Demaille <akim@epita.fr>
18739
18740 * src/reader.c (symbols_output): New, extracted from...
18741 (packsymbols): Here.
18742 (reader): Call it.
18743
18744 2001-11-19 Akim Demaille <akim@epita.fr>
18745
18746 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18747 (maxrhs): this new function.
18748
18749 2001-11-19 Akim Demaille <akim@epita.fr>
18750
18751 * src/lalr.c (F): New macro to access the variable F.
18752 Adjust.
18753
18754 2001-11-19 Akim Demaille <akim@epita.fr>
18755
18756 * src/lalr.h (LA): New macro to access the variable LA.
18757 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18758 * src/lalr.c: Adjust.
18759
18760 2001-11-19 Akim Demaille <akim@epita.fr>
18761
18762 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18763 (set_state_table): handle the `lookaheads' members.
18764
18765 2001-11-19 Akim Demaille <akim@epita.fr>
18766
18767 * src/lalr.h (lookaheads): Removed array, whose contents is now
18768 a member of...
18769 (state_t): this structure.
18770 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18771 Adjust.
18772
18773 2001-11-19 Akim Demaille <akim@epita.fr>
18774
18775 * src/lalr.h (consistent): Removed array, whose contents is now
18776 a member of...
18777 (state_t): this structure.
18778 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18779 Adjust.
18780
18781 2001-11-19 Akim Demaille <akim@epita.fr>
18782
18783 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18784 contents are now members of...
18785 (state_t): this structure.
18786 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18787 Adjust.
18788
18789 2001-11-19 Akim Demaille <akim@epita.fr>
18790
18791 * src/lalr.h (state_t): New.
18792 (state_table): Be a state_t * instead of a core **.
18793 (accessing_symbol): Remove, part of state_t.
18794 * src/lalr.c: Adjust.
18795 (set_accessing_symbol): Merge into...
18796 (set_state_table): this.
18797 * src/print_graph.c, src/conflicts.c: Adjust.
18798
18799 2001-11-14 Akim Demaille <akim@epita.fr>
18800
18801 * tests/calc.at, tests/output.at, tests/regression.at,
18802 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18803 now the tests are run in private dirs, therefore AC_CLEANUP and
18804 family can be simplified to 0-ary.
18805 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18806 use abs. path to find config.h.
18807 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18808 stderr, there can be way too much random noise.
18809 Instead pass -Werror to GCC and rely on the exit status.
18810 Reported by Wolfram Wagner.
18811
18812 2001-11-14 Akim Demaille <akim@epita.fr>
18813
18814 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18815 defined only if yyoverflow is defined, to avoid `warning: unused
18816 variable `yyvs1''.
18817 Reported by The Test Suite.
18818
18819 2001-11-14 Akim Demaille <akim@epita.fr>
18820
18821 * src/print.c: Include reduce.h.
18822 Reported by Hans Aberg.
18823
18824 2001-11-14 Akim Demaille <akim@epita.fr>
18825
18826 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18827 Revert a previous patch: these are really const.
18828 * src/conflicts.c (conflict_report): Additional useless pair of
18829 braces to pacify GCC's warnings for `if () if () {} else {}'.
18830 * src/lex.c (parse_percent_token): Replace equal_offset with
18831 arg_offset.
18832 arg is const.
18833 Be sure to strdup `arg' when used, since there is no reason for
18834 token_buffer not to change.
18835
18836 2001-11-14 Akim Demaille <akim@epita.fr>
18837
18838 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18839 definition.
18840 * src/main.c (main): Use them.
18841 Suggested by Hans Aberg.
18842
18843 2001-11-12 Akim Demaille <akim@epita.fr>
18844
18845 * src/system.h (ngettext): Now that we use ngettext, be sure to
18846 provide a default definition when NLS are not used.
18847
18848 2001-11-12 Akim Demaille <akim@epita.fr>
18849
18850 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18851 Use @kbd to denote user input.
18852 (Language and Grammar): ANSIfy the example.
18853 Adjust its layout for info/notinfo.
18854 (Location Tracking Calc): Output error messages to stderr.
18855 Output locations in a more GNUtically correct way.
18856 Fix a couple of Englishos.
18857 Adjust @group/@end group pairs.
18858
18859 2001-11-12 Akim Demaille <akim@epita.fr>
18860
18861 %expect was not functioning at all.
18862
18863 * src/conflicts.c (expected_conflicts): Set to -1.
18864 (conflict_report): Use ngettext.
18865 (conflicts_print): Check %expect and make its violation an error.
18866 * doc/bison.texinfo (Expect Decl): Adjust.
18867 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18868 * tests/regression.at (%expect not enough, %expect right)
18869 (%expect too much): New.
18870
18871 2001-11-12 Akim Demaille <akim@epita.fr>
18872
18873 * tests/regression.at (Conflicts): Rename as...
18874 (Unresolved SR Conflicts): this.
18875 (Solved SR Conflicts): New.
18876
18877 2001-11-12 Akim Demaille <akim@epita.fr>
18878
18879 * src/reduce.c (print_results): Rename as...
18880 (reduce_output): This.
18881 Output to OUT, passed as argument, instead of output_obstack.
18882 (dump_grammar): Likewise.
18883 (reduce_free): New.
18884 Also free V1.
18885 (reduce_grammar): No longer call reduce_output, since...
18886 * src/print.c (print_results): do it.
18887 * src/main.c (main): Call reduce_free;
18888
18889 2001-11-12 Akim Demaille <akim@epita.fr>
18890
18891 * src/conflicts.c (print_reductions): Accept OUT as argument.
18892 Output to it, not to output_obstack.
18893 * src/print.c (print_actions): Adjust.
18894
18895 2001-11-12 Akim Demaille <akim@epita.fr>
18896
18897 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18898 the result instead of using...
18899 (src_total, rrc_total, src_count, rrc_count): Remove.
18900 (any_conflicts): Remove.
18901 (print_conflicts): Split into...
18902 (conflicts_print, conflicts_output): New.
18903 * src/conflicts.h: Adjust.
18904 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18905 * src/print.c (print_grammar): Issue `\n' between two rules.
18906 * tests/regression.at (Conflicts): New.
18907 Reported by Tom Lane.
18908
18909 2001-11-12 Akim Demaille <akim@epita.fr>
18910
18911 * tests/regression.at (Invalid input): Remove, duplicate with
18912 ``Invalid input: 1''.
18913
18914 2001-11-12 Akim Demaille <akim@epita.fr>
18915
18916 * tests/torture.at (AT_DATA_STACK_TORTURE)
18917 (Exploding the Stack Size with Alloca)
18918 (Exploding the Stack Size with Malloc): New.
18919
18920 2001-11-12 Akim Demaille <akim@epita.fr>
18921
18922 * src/bison.simple (YYSTACK_REALLOC): New.
18923 (yyparse) [!yyoverflow]: Use it and free the old stack.
18924 Reported by Per Allansson.
18925
18926 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18927
18928 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18929 define CPP macro, which substitute YYSTYPE by yystype.
18930 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18931 with yyltype/YYLTYPE. This allows inclusion of the generated
18932 header within the parser if the compiler, such as GGC, accepts
18933 multiple equivalent #defines.
18934 From Akim.
18935
18936 2001-11-05 Akim Demaille <akim@epita.fr>
18937
18938 * src/reader.c (symbols_output): New, extracted from...
18939 (packsymbols): here.
18940 (reader): Adjust.
18941
18942 2001-11-05 Akim Demaille <akim@epita.fr>
18943
18944 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18945
18946 2001-11-05 Akim Demaille <akim@epita.fr>
18947
18948 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18949 pattern.
18950
18951 2001-11-05 Akim Demaille <akim@epita.fr>
18952
18953 * src/options.h (struct option_table_struct): set_flags is void*.
18954 * src/options.c (longopts): Support `--output' and `%output'.
18955 (usage): Adjust.
18956 * src/lex.h (tok_setopt): Remove, replaced with...
18957 (tok_intopt, tok_stropt): these new guys.
18958 * src/lex.c (getopt.h): Not needed.
18959 (token_buffer, unlexed_token_buffer): Not const.
18960 (percent_table): Promote `-' over `_' in directive names.
18961 Active `%name-prefix', `file-prefix', and `output'.
18962 (parse_percent_token): Accept possible arguments to directives.
18963 Promote `-' over `_' in directive names.
18964
18965 2001-11-04 Akim Demaille <akim@epita.fr>
18966
18967 * doc/bison.texinfo (Decl Summary): Split the list into
18968 `directives for grammars' and `directives for bison'.
18969 Sort'em.
18970 Add description of `%name-prefix', `file-prefix', and `output'.
18971 Promote `-' over `_' in directive names.
18972 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18973 Simplify the description of `--name-prefix'.
18974 Promote `-' over `_' in directive names.
18975 Promote `--output' over `--output-file'.
18976 Fix the description of `--defines'.
18977 * tests/output.at: Exercise %file-prefix and %output.
18978
18979 2001-11-02 Akim Demaille <akim@epita.fr>
18980
18981 * doc/refcard.tex: Update.
18982
18983 2001-11-02 Akim Demaille <akim@epita.fr>
18984
18985 * src/symtab.h (SUNDEF): New.
18986 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18987 stand for `uninitialized', instead of 0.
18988 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18989 * src/lex.c (lex): Adjust.
18990
18991 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18992 Number it 0.
18993 Let yylex return it instead of a plain 0.
18994 Reported by Dick Streefland.
18995
18996 2001-11-02 Akim Demaille <akim@epita.fr>
18997
18998 * tests/regression.at (Mixing %token styles): New test.
18999
19000 2001-11-02 Akim Demaille <akim@epita.fr>
19001
19002 * src/reader.c (parse_thong_decl): Formatting changes.
19003 (token_translations_init): New, extracted from...
19004 (packsymbols): Here.
19005 Adjust.
19006
19007 2001-11-01 Akim Demaille <akim@epita.fr>
19008
19009 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19010 Check that `9foo.y' produces correct cpp guards.
19011 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19012 guards.
19013 Reported by Wwp.
19014
19015 2001-11-01 Akim Demaille <akim@epita.fr>
19016
19017 * tests/regression.at (Invalid input: 2): New.
19018 * src/lex.c (unlexed_token_buffer): New.
19019 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19020 too.
19021 Reported by Wwp.
19022
19023 2001-11-01 Akim Demaille <akim@epita.fr>
19024
19025 * tests/calc.at: Catch up with 1.30.
19026 * configure.in: Bump to 1.49a.
19027 Adjust to newer Autotest.
19028
19029 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19030
19031 * src/conflicts.c: Move global variables rrc_total and src_total ...
19032 (print_conflicts): here.
19033 * src/output.c (output): Free global variable user_toknums.
19034 * src/lex.c (token_obstack): Become static.
19035
19036 2001-10-18 Akim Demaille <akim@epita.fr>
19037
19038 * tests/atlocal.in (GCC): Add.
19039 * tests/calc.at: s/m4_match/m4_bmatch/.
19040 s/m4_patsubst/m4_bpatsubst/.
19041 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19042 * configure.in: AC_SUBST(GCC).
19043
19044 2001-10-14 Marc Autret <autret_m@epita.fr>
19045
19046 * src/options.c (create_long_option_table): Fix.
19047
19048 2001-10-10 Akim Demaille <akim@epita.fr>
19049
19050 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19051
19052 2001-10-04 Akim Demaille <akim@epita.fr>
19053
19054 * src/reader.c (parse_union_decl): Push the caracters in
19055 union_obstack, not attrs_obstack.
19056
19057 2001-10-04 Akim Demaille <akim@epita.fr>
19058
19059 Merge in the branch 1.29.
19060
19061 * src/reader.c (packsymbols): Use a temporary obstack for
19062 `%%tokendef', since output_stack is already used elsewhere.
19063
19064 2001-10-02 Akim Demaille <akim@epita.fr>
19065
19066 Bump 1.29d.
19067
19068 2001-10-02 Akim Demaille <akim@epita.fr>
19069
19070 Version 1.29c.
19071
19072 2001-10-02 Akim Demaille <akim@epita.fr>
19073
19074 * tests/regression.at (Invalid CPP headers): New.
19075 From Alexander Belopolsky.
19076 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19077
19078 2001-10-02 Akim Demaille <akim@epita.fr>
19079
19080 * tests/regression.at (Invalid input): New.
19081 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19082 Reported by Shura.
19083
19084 2001-10-02 Akim Demaille <akim@epita.fr>
19085
19086 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19087
19088 2001-10-02 Akim Demaille <akim@epita.fr>
19089
19090 * src/output.c (output_parser): Assert `skeleton'.
19091 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19092 systems.
19093 From Shura.
19094
19095 2001-10-01 Marc Autret <autret_m@epita.fr>
19096
19097 * src/lex.h: Echo modifications.
19098 * src/lex.c (unlex): Parameter is now token_t.
19099 From Hans Aberg.
19100
19101 2001-10-01 Marc Autret <autret_m@epita.fr>
19102
19103 * src/main.c: Include lex.h.
19104 From Hans Aberg.
19105
19106 2001-09-29 Akim Demaille <akim@epita.fr>
19107
19108 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19109
19110 2001-09-28 Akim Demaille <akim@epita.fr>
19111
19112 * tests/testsuite.at: Update to newer Autotest.
19113 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19114
19115 2001-09-27 Akim Demaille <akim@epita.fr>
19116
19117 Position independent wrapper.
19118
19119 * tests/bison: Remove.
19120 * tests/bison.in: New.
19121 * configure.in: Adjust.
19122
19123 2001-09-27 Paul Eggert <eggert@twinsun.com>
19124
19125 Port quotearg fixes from tar 1.13.24.
19126
19127 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19128 tm to be declared.
19129 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19130 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19131
19132 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19133 * m4/mbrtowc.m4: New file.
19134 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19135 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19136
19137 2001-09-27 Akim Demaille <akim@epita.fr>
19138
19139 Bump to 1.29c.
19140
19141 2001-09-27 Akim Demaille <akim@epita.fr>
19142
19143 Version 1.29b.
19144
19145 2001-09-25 Akim Demaille <akim@epita.fr>
19146
19147 * src/system.h: Include `xalloc.h'.
19148 Remove it from the C files.
19149 * src/files.c (output_files): Free the obstacks.
19150 * src/lex.c (init_lex): Rename as...
19151 (lex_init): this.
19152 (lex_free): New.
19153 * src/main.c (main): Use it.
19154
19155 2001-09-24 Marc Autret <autret_m@epita.fr>
19156
19157 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19158 to output informations in fout (FILE*).
19159 (open_graph, close_graph): Likewise.
19160 (output_graph, output_edge, output_node): Likewise.
19161 * src/vcg.h: Update function prototypes.
19162 * src/print_graph.c (print_graph): Open output graph file.
19163 (print_actions): Adjust.
19164 * src/files.h: Remove extern declaration.
19165 * src/files.c: Remove graph_obstack declaration.
19166 (open_files): Remove graph_obstack initialization.
19167 (output_files): Remove graph_obstack saving.
19168
19169 2001-09-24 Marc Autret <autret_m@epita.fr>
19170
19171 * src/files.c (compute_output_file_names): Fix.
19172
19173 2001-09-24 Marc Autret <autret_m@epita.fr>,
19174 Akim Demaille <akim@epita.fr>
19175
19176 * src/reader.c (reader): Remove call to free_symtab ().
19177 * src/main.c (main): Call it here.
19178 Include symtab.h.
19179 * src/conflicts.c (initialize_conflicts): Rename as...
19180 (solve_conflicts): this.
19181 * src/print.c (print_core, print_actions, print_state)
19182 (print_grammar): Dump to a file instead a `output_obstack'.
19183 (print_results): Dump `output_obstack', and then proceed with the
19184 FILE *.
19185 * src/files.c (compute_output_file_names, close_files): New.
19186 (output_files): Adjust.
19187 * src/main.c (main): Adjust.
19188
19189 2001-09-23 Marc Autret <autret_m@epita.fr>
19190
19191 * src/files.c (compute_header_macro): Computes header macro name
19192 from spec_defines_file when given.
19193
19194 2001-09-23 Marc Autret <autret_m@epita.fr>
19195
19196 * src/files.c (output_files): Add default extensions.
19197
19198 2001-09-22 Akim Demaille <akim@epita.fr>
19199
19200 * src/conflicts.c (finalize_conflicts): Rename as...
19201 (free_conflicts): this.
19202
19203 2001-09-22 Akim Demaille <akim@epita.fr>
19204
19205 * src/gram.c (gram_free): Rename back as...
19206 (dummy): this.
19207 (output_token_translations): Free `token_translations'.
19208 * src/symtab.c (free_symtab): Free the tag field.
19209
19210 2001-09-22 Akim Demaille <akim@epita.fr>
19211
19212 Remove `translations' as it is always set to true.
19213
19214 * src/gram.h: Adjust.
19215 * src/reader.c (packsymbols, parse_token_decl): Adjust
19216 * src/print.c (print_grammar): Adjust.
19217 * src/output.c (output_token_translations): Adjust.
19218 * src/lex.c (lex): Adjust.
19219 * src/gram.c: Be sure the set pointers to NULL.
19220 (dummy): Rename as...
19221 (gram_free): this.
19222
19223 2001-09-22 Akim Demaille <akim@epita.fr>
19224
19225 * configure.in: Invoke AM_LIB_DMALLOC.
19226 * src/system.h: Use dmalloc.
19227 * src/LR0.c: Be sure to have pointers initialized to NULL.
19228 (allocate_itemsets): Allocate kernel_items only if needed.
19229
19230 2001-09-22 Akim Demaille <akim@epita.fr>
19231
19232 * configure.in: Bump to 1.29b.
19233 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19234 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19235 need xmalloc.c in calc.y.
19236 From Pascal Bart.
19237
19238 2001-09-21 Akim Demaille <akim@epita.fr>
19239
19240 Version 1.29a.
19241 * Makefile.maint, config/config.guess, config/config.sub,
19242 * config/missing: Update from masters.
19243 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19244 upon package.m4.
19245 * configure.in (ALL_LINGUAS): Add `tr'.
19246
19247 2001-09-21 Akim Demaille <akim@epita.fr>
19248
19249 * tests/Makefile.am (package.m4): Move to...
19250 ($(srcdir)/$(TESTSUITE)): here.
19251
19252 2001-09-20 Akim Demaille <akim@epita.fr>
19253
19254 * src/complain.c: No longer try to be standalone: use system.h.
19255 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19256 * src/complain.h: Likewise.
19257 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19258 Remove the unused variable `n'.
19259 From Albert Chin-A-Young.
19260
19261 2001-09-18 Marc Autret <autret_m@epita.fr>
19262
19263 * doc/bison.1: Update.
19264 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19265 descriptions.
19266 (Option Cross Key): Update.
19267 Add --graph.
19268
19269 2001-09-18 Marc Autret <autret_m@epita.fr>
19270
19271 * tests/regression.at: New test (comment in %union).
19272
19273 2001-09-18 Marc Autret <autret_m@epita.fr>
19274
19275 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19276 do that.
19277 Reported by Keith Browne.
19278
19279 2001-09-18 Marc Autret <autret_m@epita.fr>
19280
19281 * tests/output.at: Add tests for --defines and --graph.
19282
19283 2001-09-18 Marc Autret <autret_m@epita.fr>
19284
19285 * tests/output.at: Removes tests of %{header,src}_extension features.
19286
19287 2001-09-18 Akim Demaille <akim@epita.fr>
19288
19289 * tests/Makefile.am (package.m4): New.
19290 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19291 (_AT_CHECK_CALC_ERROR): Likewise.
19292 Factor the `, ' part of verbose error messages.
19293
19294 2001-09-18 Marc Autret <autret_m@epita.fr>
19295
19296 * src/getargs.c (longopts): Declare --defines and --graph as options
19297 with optional arguments.
19298 * src/files.h: Add extern declarations.
19299 * src/files.c (spec_graph_file, spec_defines_file): New.
19300 (output_files): Update.
19301 Remove CPP-outed code.
19302
19303 2001-09-18 Marc Autret <autret_m@epita.fr>
19304
19305 Turn off %{source,header}_extension feature.
19306
19307 * src/files.c (compute_exts_from_gf): Update.
19308 (compute_exts_from_src): Update.
19309 (output_files): CPP-out useless code.
19310 * src/files.h: Remove {header,source}_extension extern declarations.
19311 * src/reader.c (parse_dquoted_param): CPP-out.
19312 (parse_header_extension_decl): Remove.
19313 (parse_source_extension_decl): Remove.
19314 (read_declarations): Remove cases tok_{hdrext,srcext}.
19315 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19316 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19317
19318 2001-09-10 Akim Demaille <akim@epita.fr>
19319
19320 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19321 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19322 (AT_CHECK_OUTPUT): this.
19323 Merely check ls' exit status, its output is useless.
19324
19325 2001-09-10 Akim Demaille <akim@epita.fr>
19326
19327 * tests/calc.at: Use m4_match.
19328 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19329
19330 2001-09-10 Marc Autret <autret_m@epita.fr>,
19331 Akim Demaille <akim@epita.fr>
19332
19333 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19334 enum color_e.
19335 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19336 to `normal'.
19337 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19338 * src/lex.h: Adjust prototype.
19339 (token_t): Add `tok_undef'.
19340 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19341 (parse_percent_token): Now returns token_t.
19342 Add default statement in switch.
19343 (lex): Separate `c' as an input variable, from the token_t result
19344 part.
19345 (unlexed): Is a token_t.
19346
19347 2001-09-10 Akim Demaille <akim@epita.fr>
19348
19349 * configure.in: Bump to 1.29a.
19350
19351 2001-09-07 Akim Demaille <akim@epita.fr>
19352
19353 Version 1.29.
19354
19355 2001-08-30 Akim Demaille <akim@epita.fr>
19356
19357 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19358 * m4/atconfig.m4: Remove.
19359 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19360 * tests/bison: New.
19361 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19362 m4_if, m4_patsubst, and m4_regexp.
19363 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19364 `input' file instead of echo.
19365
19366 2001-08-29 Akim Demaille <akim@epita.fr>
19367
19368 Bump to 1.28e.
19369
19370 2001-08-29 Akim Demaille <akim@epita.fr>
19371
19372 Version 1.28d.
19373
19374 2001-08-29 Paul Eggert <eggert@twinsun.com>
19375
19376 * src/bison.simple (yyparse): Don't take the address of an
19377 item before the start of an array, as that doesn't conform to
19378 the C Standard.
19379
19380 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19381
19382 * doc/bison.texinfo (Location Tracking Calc): New node.
19383
19384 2001-08-29 Paul Eggert <eggert@twinsun.com>
19385
19386 * src/output.c (output): Do not define const, as this now
19387 causes more problems than it cures.
19388
19389 2001-08-29 Akim Demaille <akim@epita.fr>
19390
19391 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19392 the nodes.
19393 Be sure to tag the `detailmenu'.
19394
19395 2001-08-29 Akim Demaille <akim@epita.fr>
19396
19397 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19398 download in a tmp dir.
19399
19400 2001-08-28 Marc Autret <autret_m@epita.fr>
19401
19402 * config/depcomp: New file.
19403
19404 2001-08-28 Marc Autret <autret_m@epita.fr>
19405
19406 * doc/bison.1 (mandoc): Adjust.
19407 From Juan Manuel Guerrero.
19408
19409 2001-08-28 Marc Autret <autret_m@epita.fr>
19410
19411 * src/print_graph.c (print_state): Fix.
19412
19413 2001-08-27 Marc Autret <autret_m@epita.fr>
19414
19415 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19416 char * members.
19417 Echo modifications to the functions prototypes.
19418 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19419
19420 2001-08-27 Marc Autret <autret_m@epita.fr>
19421
19422 * src/vcg.c: Include `xalloc.h'.
19423 (add_colorentry): New.
19424 (add_classname): New.
19425 (add_infoname): New.
19426 * src/vcg.h: Add new prototypes.
19427
19428 2001-08-27 Akim Demaille <akim@epita.fr>
19429
19430 * Makefile.maint: Sync. again with CVS Autoconf.
19431
19432 2001-08-27 Akim Demaille <akim@epita.fr>
19433
19434 * Makefile.maint: Formatting changes.
19435 (po-update, cvs-update, update): New targets.
19436 (AMTAR): Remove.
19437
19438 2001-08-27 Akim Demaille <akim@epita.fr>
19439
19440 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19441 * Makefile.maint: Sync. with CVS Autoconf.
19442
19443 2001-08-27 Marc Autret <autret_m@epita.fr>
19444
19445 * src/vcg.h (struct infoname_s): New.
19446 (struct colorentry_s): New.
19447 (graph_s): New fields {vertical,horizontal}_order in structure.
19448 Add `infoname' field.
19449 Add `colorentry' field;
19450 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19451 (G_HORIZONTAL_ORDER): New.
19452 (G_INFONAME): New.
19453 (G_COLORENTRY): New.
19454 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19455 Add output of `infoname'.
19456 Add output of `colorentry'.
19457
19458 2001-08-27 Marc Autret <autret_m@epita.fr>
19459
19460 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19461 This one shadowed a global parameter.
19462
19463 2001-08-24 Marc Autret <autret_m@epita.fr>
19464
19465 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19466 instead of `unsigned'.
19467 (print_state): Do not call obstack_object_size () in obstack_grow ()
19468 to avoid macro variables shadowing.
19469
19470 2001-08-23 Marc Autret <autret_m@epita.fr>
19471
19472 * src/lex.c (percent_table): Typo: s/naem/name/.
19473 Add graph option.
19474 Normalize new options declarations.
19475
19476 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19477
19478 * tests/suite.at: Exercise %header_extension and %source_extension.
19479
19480 2001-08-16 Marc Autret <autret_m@epita.fr>
19481
19482 * src/reader.c (parse_dquoted_param): New.
19483 (parse_header_extension_decl): Use it.
19484 (parse_source_extension_decl): Likewise.
19485
19486 2001-08-16 Marc Autret <autret_m@epita.fr>
19487
19488 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19489 (get_xxxx_str): Use assert () instead of complain ().
19490 Remove return invokations in default cases.
19491 (get_decision_str): Modify default behaviour. Remove second argument.
19492 Echo modifications on calls.
19493 (output_graph): Fix.
19494
19495 2001-08-16 Marc Autret <autret_m@epita.fr>
19496
19497 * src/getargs.c (usage): Update with ``-g, --graph''.
19498
19499 2001-08-16 Marc Autret <autret_m@epita.fr>
19500
19501 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19502 (Option Cross Key): Likewise.
19503 * doc/bison.1: Update.
19504
19505 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19506
19507 * src/output.c (output_master_parser): Don't finish action_obstack.
19508 (output_parser): Don't care about the muscle action, here.
19509 (prepare): Copy the action_obstack in the action muscle.
19510 (output): Free action_obstack.
19511
19512 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19513
19514 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19515 will contain `%union' declaration.
19516 (parse_union_decl): Delete #line directive output.
19517 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19518 informations about %union.
19519 (parse_union_decl): Copy the union_obstack in the muscle stype.
19520 * src/bison.simple: Add new #line directive.
19521 Add typdef %%stype YYSTYPE.
19522
19523 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19524
19525 * src/bison.simple: Add new `#line' directive.
19526
19527 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19528
19529 * src/bison.simple: New `#line' directive.
19530 * src/output.c (output_parser): Support new dynamic muscle input_line.
19531
19532 2001-09-22 Marc Autret <autret_m@epita.fr>
19533
19534 * src/output.c (output_master_parser): New.
19535 (output_parser): Be more re-entrant.
19536
19537 2001-09-21 Marc Autret <autret_m@epita.fr>
19538
19539 * src/reader.c (copy_definition, parse_union_decl): Update and use
19540 `linef' muscle.
19541 (copy_action): Likewise.
19542 Use obstack_1grow ().
19543 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19544
19545 2001-09-21 Marc Autret <autret_m@epita.fr>
19546
19547 * src/options.c (option_table): Adjust.
19548 * src/lex.c (parse_percent_token): Fix.
19549
19550 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19551
19552 * src/options.c (symtab.h): Include it, need by lex.h.
19553
19554 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19555
19556 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19557 is now an option_table_struct*.
19558 (option_strcmp): New function option_strcmp.
19559 (parse_percent_token): Call option_strcmp.
19560 * src/getargs.c (xalloc.h, options.h): Include it.
19561 (getargs): Call create_long_option_table.
19562 (getargs): Free longopts at the end of the function.
19563 (shortopts): Move in options.c.
19564 * src/options.c (create_long_option_table): New function. Convert
19565 information from option_table to option structure.
19566 * src/reader.c (options.h): Include it.
19567
19568 * src/Makefile.am: Adjust.
19569 * src/options.c (option_table): Create from longopts and percent_table.
19570 * src/getargs.c (longopts): Delete.
19571 * src/lex.c (struct percent_table_struct): Delete.
19572 (percent_table): Delete.
19573 (options.h): Include it.
19574 * src/options.c: Create.
19575 * src/options.h: Create.
19576 Declare enum opt_access_e.
19577 Define struct option_table_struct.
19578
19579 2001-09-20 Marc Autret <autret_m@epita.fr>
19580
19581 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19582 sections of Bison.
19583
19584 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19585
19586 * src/bison.simple: s/%%filename/%%skeleton.
19587 * src/muscle_tab.c (getargs.h): Include it.
19588 (muscle_init): Insert new muscle skeleton.
19589
19590 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19591
19592 * src/output.c (output_parser): Delete unused variable actions_dumped.
19593
19594 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19595
19596 * src/output.c (output): Delete call to reader_output_yylsp.
19597 * src/reader.c (reader): Likewise.
19598 * src/reader.h: Delete declaration of reader_output_yylsp.
19599
19600 2001-09-02 Marc Autret <autret_m@epita.fr>
19601
19602 * src/reader.c: Include muscle_tab.h.
19603 (parse_union_decl): Update.
19604 (parse_macro_decl): Rename parse_muscle_decl.
19605 Update to use renamed functions and variable.
19606 (read_declarations, copy_action, read_additionnal_code, : Updated
19607 with correct variables and functions names.
19608 (packsymbols, reader): Likewise.
19609
19610 * src/reader.h (muscle_obstack): Extern declaration update.
19611
19612 * src/output.c: Include muscle_tab.h
19613 In all functions using macro_insert, change by using muscle_insert ().
19614 (macro_obstack): Rename muscle_obstack.
19615 Echo modifications in the whole file.
19616 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19617 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19618 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19619
19620 * src/muscle_tab.h: Update double inclusion macros.
19621 (macro_entry_s): Rename muscle_entry_s.
19622 Update prototypes.
19623
19624 * src/muscle_tab.c: Include muscle_tab.h.
19625 Rename macro_tabble to muscle_table.
19626 (mhash1, mhash2, mcmp): Use muscle_entry.
19627 (macro_init): Rename muscle_init. Update.
19628 (macro_insert): Rename muscle_insert. Update.
19629 (macro_find): Rename muscle_find. Update.
19630
19631 * src/main.c: Include muscle_tab.h.
19632 (main): Call muscle_init ().
19633 * src/Makefile.am (bison_SOURCES): Echo modifications.
19634
19635 2001-09-02 Marc Autret <autret_m@epita.fr>
19636
19637 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19638
19639 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19640
19641 2001-09-02 Marc Autret <autret_m@epita.fr>
19642
19643 * src/macrotab.c, src/macrotab.h: Remove.
19644
19645 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19646
19647 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19648 filename.
19649
19650 2001-09-01 Marc Autret <autret_m@epita.fr>
19651
19652 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19653 to an explicit value to activate the feature. We do it here.
19654
19655 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19656
19657 * src/output.c (prepare): Delete the `filename' muscule insertion.
19658 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19659 (parse_union_decl): Likewise.
19660 * src/macrotab.c (macro_init): Initialize filename by infile.
19661
19662 2001-08-31 Marc Autret <autret_m@epita.fr>
19663
19664 * src/bison.simple (YYLSP_NEEDED): New definition.
19665 * src/output.c (prepare): Add macro insertion of `locations_flag'
19666
19667 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19668
19669 * src/output.c (prepare): Delete insertion of previous muscles,
19670 and insert the `prefix' muscles.
19671 * src/macrotab.c (macro_init): Likewise.
19672 (macro_init): Initialization prefix directive by `yy'.
19673 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19674 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19675 yylval, yydebug, yyerror, yynerrs and yyparse.
19676 New directive `#define' to substitute yydebug, ... with option
19677 name_prefix.
19678
19679 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19680
19681 * src/main.c (main): Standardize.
19682 * src/output.c (output_table_data, output_parser): Likewise.
19683 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19684
19685 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19686
19687 * src/reader.c (read_additionnal_code): Rename %%user_code to
19688 %%epilogue.
19689 * src/output.c (output): Rename %%declarations to %%prologue.
19690 * src/bison.simple: Echo modifications.
19691
19692 2001-08-31 Marc Autret <autret_m@epita.fr>
19693
19694 * src/reader.c (readgram): CleanUp.
19695 (output_token_defines): Likewise.
19696 (packsymbols): Likewise.
19697 (reader): Likewise.
19698 * src/output.c (output): CPP-out useless code.
19699
19700 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19701
19702 * src/reader.c (reader): Delete obsolete call to function
19703 output_trailers and output_headers.
19704 * src/output.h: Remove obsolete functions prototypes of output_headers
19705 and output_trailers.
19706
19707 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19708
19709 * src/main.c: Include macrotab.h.
19710 * src/macrotab.h (macro_entry_s): Constify fields.
19711 Adjust functions prototypes.
19712 * src/macrotab.c (macro_insert): Constify key and value.
19713 (macro_find): Constify key.
19714 (macro_insert): Include 'xalloc.h'
19715 (macro_insert): Use XMALLOC.
19716 (macro_find): Constify return value.
19717 * src/output.c (output_table_data): Rename table to table_data.
19718 (output_parser): Constify macro_key, macro_value.
19719
19720 2001-08-30 Marc Autret <autret_m@epita.fr>
19721
19722 * src/reader.c (parse_skel_decl): New.
19723 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19724 * src/lex.h (token_t): New token `tok_skel'.
19725 * src/lex.c (percent_table): Add skeleton option entry.
19726 Standardize.
19727
19728 2001-08-29 Marc Autret <autret_m@epita.fr>
19729
19730 * src/bison.simple: Add %%user_code directive at the end.
19731 * src/reader.c (read_additionnal_code): New.
19732 (reader): Use it.
19733 * src/output.c (output_program): Remove.
19734 (output): Update.
19735
19736 2001-08-28 Marc Autret <autret_m@epita.fr>
19737
19738 * src/output.c (output_actions): Clean up.
19739 (output_gram): CPP-out useless code.
19740 * src/reader.c (reader): Clean up, CPP-out useless code.
19741
19742 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19743
19744 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19745 directive.
19746 * src/bison.simple: Add `%%definitions'.
19747
19748 2001-08-28 Marc Autret <autret_m@epita.fr>
19749
19750 * config/depcomp: New file.
19751
19752 2001-08-27 Paul Eggert <eggert@twinsun.com>
19753
19754 * src/bison.simple (yyparse): Don't take the address of an
19755 item before the start of an array, as that doesn't conform to
19756 the C Standard.
19757
19758 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19759
19760 * src/output.c (output): Remove the initialization of the macro
19761 obstack. It was done too late here.
19762
19763 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19764 completely wrong.
19765 (reader): Initialize the macro obstack here, since we need it to grow
19766 '%define' directives.
19767
19768 * src/reader.h: Declare the macro obstack as extern.
19769
19770 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19771
19772 * src/output.c (output_parser): Fix. Store single '%' characters in
19773 the output obstack instead of throwing them away.
19774
19775 2001-08-27 Akim Demaille <akim@epita.fr>
19776
19777 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19778
19779 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19780
19781 * lib/Makefile.am: Adjust.
19782
19783 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19784
19785 * src/bison.simple: Update and add '%%' directives.
19786
19787 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19788
19789 * src/reader.c (reader): Remove calls to 'output_headers' and
19790 'output_trailers'. Remove some C output.
19791 (readgram): Disable a piece of code that was writing a default
19792 definition for 'YYSTYPE'.
19793 (reader_output_yylsp): Remove.
19794 (packsymbols): Output token defintions to a macro.
19795 (copy_definition): Disable C output.
19796
19797 * src/reader.c (parse_macro_decl): New function used to parse macro
19798 declarations.
19799 (copy_string2): Put the body of copy_string into this new function.
19800 Add a parameter to let the caller choose whether he wants to copy the
19801 string delimiters or not.
19802 (copy_string): Be a simple call to copy_string2 with the last argument
19803 bound to true.
19804 (read_declarations): Add case for macro definition.
19805 (copy_identifier): New.
19806 (parse_macro_decl): Read macro identifiers using copy_identifier
19807 rather than lex.
19808
19809 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19810
19811 * src/output.c (prepare): Add prefixed names.
19812 (output_parser): Output semantic actions.
19813 (output_parser): Fix bug on '%%line' directives.
19814
19815 * src/output.c (output_headers): Remove. The C code printed by this
19816 function should now be in the skeletons.
19817 (output_trailers): Remove.
19818 (output): Disable call to 'reader_output_yylsp'.
19819 (output_rule_data): Do not output tables to the table obstack.
19820
19821 * src/output.c: Remove some C dedicated output.
19822 Improve the use of macro and output obstacks.
19823 (output_defines): Remove.
19824
19825 * src/output.c (output_token_translations): Associate 'translate'
19826 table with a macro. No output to the table obstack.
19827 (output_gram): Same for 'rhs' and 'prhs'.
19828 (output_stos): Same for 'stos'.
19829 (output_rule_data): Same for 'r1' and 'r2'.
19830 (token_actions): Same for 'defact'.
19831 (goto_actions): Same for 'defgoto'.
19832 (output_base): Same for 'pact' and 'pgoto'.
19833 (output_table): Same for 'table'.
19834 (output_check): Same for 'check'.
19835
19836 * src/output.c (output_table_data): New function.
19837 (output_short_table): Remove.
19838 (output_short_or_char_table): Remove.
19839
19840 * src/output.c (output_parser): Replace most of the skeleton copy code
19841 with something new. Skeletons are now processed character by character
19842 rather than line by line, and Bison looks for '%%' macros. This is the
19843 first step in making Bison's output process (a lot) more flexible.
19844 (output_parser): Use the macro table.
19845
19846 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19847
19848 * src/main.c (main): Initialize the macro table.
19849
19850 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19851
19852 * src/lex.c (percent_table): Add tok_define.
19853 * src/lex.h: Add tok_define.
19854
19855 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19856
19857 * src/macrotab.c: New file.
19858 * src/macrotab.h: New file.
19859 * src/Makefile.am: Update.
19860
19861 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19862
19863 * lib/hash.c: New file.
19864 * lib/hash.h: New file.
19865 * lib/Makefile.am: Update.
19866
19867 2001-08-15 Akim Demaille <akim@epita.fr>
19868
19869 Version 1.28c.
19870
19871 2001-08-15 Marc Autret <autret_m@epita.fr>
19872
19873 * src/reader.c (readgram): Indent output macro YYSTYPE.
19874 (packsymbols): Likewise.
19875 (output_token_defines): Likewise.
19876 * src/files.c: Standardize.
19877 (compute_header_macro): New.
19878 (defines_obstack_save): New. Use compute_header_macro.
19879 (output_files): Update. Use defines_obstack_save.
19880
19881 2001-08-15 Akim Demaille <akim@epita.fr>
19882
19883 * doc/bison.texinfo (Table of Symbols): Document
19884 YYSTACK_USE_ALLOCA.
19885
19886 2001-08-15 Akim Demaille <akim@epita.fr>
19887
19888 * missing: Update from CVS Automake.
19889 * config/config.guess, config/config.sub, config/texinfo.tex:
19890 Update from gnu.org.
19891
19892 2001-08-15 Akim Demaille <akim@epita.fr>
19893
19894 * Makefile.maint: Sync with CVS Autoconf.
19895
19896 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19897
19898 * doc/bison.texinfo: Include GNU Free Documentation License from
19899 `fdl.texi'.
19900 * doc/fdl.texi: Add to package.
19901
19902 2001-08-14 Marc Autret <autret_m@epita.fr>
19903
19904 Turn on %{source,header}_extension features.
19905
19906 * src/lex.c (percent_table): Un-CPP out header_extension and
19907 source_extension.
19908 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19909 (compute_exts_from_src): Remove conditions. It restores priorities
19910 between options.
19911
19912 2001-08-14 Marc Autret <autret_m@epita.fr>
19913
19914 * src/files.c (compute_base_names): Add extensions computing when
19915 `--file-prefix' used.
19916 Standardize function calls.
19917
19918 2001-08-13 Marc Autret <autret_m@epita.fr>
19919
19920 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19921 defining it (defined but null disables alloca).
19922
19923 2001-08-13 Marc Autret <autret_m@epita.fr>
19924
19925 * src/bison.simple (_yy_memcpy): CPP reformat.
19926
19927 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19928
19929 * tests/atconfig.in (CPPFLAGS): Fix.
19930
19931 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19932
19933 * doc/bison.texinfo: Include GNU General Public License from
19934 `gpl.texi'.
19935 * doc/gpl.texi: Add to package.
19936
19937 2001-08-10 Marc Autret <autret_m@epita.fr>
19938
19939 * src/print_graph.h: Fix.
19940 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19941
19942 2001-08-10 Akim Demaille <akim@epita.fr>
19943
19944 * src/system.h: Provide default declarations for stpcpy, strndup,
19945 and strnlen.
19946
19947 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19948
19949 * doc/bison.texinfo (Locations): Update @$ stuff.
19950
19951 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19952
19953 * src/bison.simple (YYLLOC_DEFAULT): Update.
19954 (yyparse): Adjust.
19955
19956 2001-08-08 Marc Autret <autret_m@epita.fr>
19957
19958 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19959 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19960 Reported by Fabrice Bauzac.
19961
19962 2001-08-08 Marc Autret <autret_m@epita.fr>
19963
19964 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19965 * src/vcg.c (output_node): Fix.
19966 * src/vcg.h: Cleanup.
19967 * src/print_graph.c: Add comments.
19968 (node_output_size): New global variable. Simplify the formatting of
19969 the VCG graph output.
19970 (print_actions): Unused code is now used. It notifies the final state
19971 and no action states in the VCG graph. It also give the reduce actions.
19972 The `shift and goto' edges are red and the `go to state' edges are
19973 blue.
19974 Get the current node name and node_obstack by argument.
19975 (node_obstack): New variable.
19976 (print_state): Manage node_obstack.
19977 (print_core): Use node_obstack given by argument.
19978 A node is not only computed here but in print_actions also.
19979 (print_graph): CPP out useless code instead of commenting it.
19980
19981 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19982
19983 * tests/atconfig.in (CPPFLAGS): Fix.
19984
19985 2001-08-07 Akim Demaille <akim@epita.fr>
19986
19987 * src/print_graph.c (quote): New.
19988 (print_core): Use it.
19989
19990 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19991
19992 * src/vcg.c (complain.h): Include it.
19993 Unepitaize `return' invocations.
19994 [NDEBUG] (main): Remove.
19995 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19996 * src/files.c (open_files): Initialize graph_obstack.
19997 * src/print_graph.c (print_actions): CPP out useless code.
19998 (print_core): Don't output the last `\n' in labels.
19999 Use `quote'.
20000 * src/files.c (output_files): Output the VCG file.
20001 * src/main.c (main): Invoke print_graph ();
20002
20003 2001-08-06 Marc Autret <autret_m@epita.fr>
20004
20005 Automaton VCG graph output.
20006 Using option ``-g'' or long option ``--graph'', you can generate
20007 a gram_filename.vcg file containing a VCG description of the LALR (1)
20008 automaton of your grammar.
20009
20010 * src/main.c: Call to print_graph() function.
20011 * src/getargs.h: Update.
20012 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20013 (graph_flag): New flag.
20014 (longopts): Update.
20015 (getargs): Add case `g'.
20016 * src/files.c (graph_obstack): New obstack struct.
20017 (open_files): Initialize new obstack.
20018 (output_files): Saves graph_obstack if required.
20019 * src/files.h (graph_obstack): New extern declaration.
20020 * src/Makefile.am: Add new source files.
20021
20022 2001-08-06 Marc Autret <autret_m@epita.fr>
20023
20024 * src/print_graph.c, src/print_graph.h (graph): New.
20025 * src/vcg.h: New file.
20026 * src/vcg.c: New file, VCG graph handling.
20027
20028 2001-08-06 Marc Autret <autret_m@epita.fr>
20029
20030 Add of %source_extension and %header_extension which specify
20031 the source or/and the header output file extension.
20032
20033 * src/files.c (compute_base_names): Remove initialisation of
20034 src_extension and header_extension.
20035 (compute_exts_from_gf): Update.
20036 (compute_exts_from_src): Update.
20037 (output_files): Update.
20038 * src/reader.c (parse_header_extension_decl): New.
20039 (parse_source_extension_decl): New.
20040 (read_declarations): New case statements for the new tokens.
20041 * src/lex.c (percent_table): Add entries for %source_extension
20042 and %header_extension.
20043 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20044
20045 2001-08-06 Marc Autret <autret_m@epita.fr>
20046
20047 * configure.in: Bump to 1.28c.
20048 * doc/bison.texinfo: Texinfo thingies.
20049
20050 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20051
20052 * tests/atconfig.in (CPPFLAGS): Add.
20053 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20054
20055 2001-08-03 Akim Demaille <akim@epita.fr>
20056
20057 Version 1.28b.
20058
20059 2001-08-03 Akim Demaille <akim@epita.fr>
20060
20061 * tests/Makefile.am (check-local): Ship testsuite.
20062 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20063 Include `string.h'.
20064
20065 2001-08-03 Akim Demaille <akim@epita.fr>
20066
20067 * configure.in: Try using -Wformat when compiling.
20068
20069 2001-08-03 Akim Demaille <akim@epita.fr>
20070
20071 * configure.in: Bump to 1.28b.
20072
20073 2001-08-03 Akim Demaille <akim@epita.fr>
20074
20075 * src/complain.c: Adjust strerror_r portability issues.
20076
20077 2001-08-03 Akim Demaille <akim@epita.fr>
20078
20079 Version 1.28a.
20080
20081 2001-08-03 Akim Demaille <akim@epita.fr>
20082
20083 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20084 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20085 * src/getargs.c: Include complain.h.
20086 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20087 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20088
20089 2001-08-03 Akim Demaille <akim@epita.fr>
20090
20091 * src/reader.c (readgram): Display hidden chars in error messages.
20092
20093 2001-08-03 Akim Demaille <akim@epita.fr>
20094
20095 Update to gettext 0.10.39.
20096
20097 2001-08-03 Akim Demaille <akim@epita.fr>
20098
20099 * lib/strspn.c: New.
20100
20101 2001-08-01 Marc Autret <autret_m@epita.fr>
20102
20103 * doc/bison.texinfo: Update.
20104 * doc/bison.1 (mandoc): Update.
20105 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20106 * src/files.c: Support output files extensions computing.
20107 (src_extension): New static variable.
20108 (header_extension): New static variable.
20109 (tr): New function.
20110 (get_extension_index): New function, gets the index of an extension
20111 filename in a string.
20112 (compute_exts_from_gf): New function, computes extensions from the
20113 grammar file extension.
20114 (compute_exts_from_src): New functions, computes extensions from the
20115 C source file extension, file given by ``-o'' option.
20116 (compute_base_names): Update.
20117 (output_files): Update.
20118
20119 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20120
20121 * doc/bison.texi: Document @$.
20122 (Locations): New section.
20123
20124 2001-07-18 Akim Demaille <akim@epita.fr>
20125
20126 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20127 * config/prev-version.txt, config/move-if-change: New.
20128 * Makefile.am: Adjust.
20129
20130 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20131
20132 * src/bison.simple (yyparse): Suppress warning `comparaison
20133 between signed and unsigned'.
20134
20135 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20136
20137 * src/getargs.h (raw_flag): Remove.
20138 * src/getargs.c: Die on `-r'/`--raw'.
20139 * src/lex.c (parse_percent_token): Die on `%raw'.
20140 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20141 * tests/calc.at: Suppress test with option `--raw'.
20142
20143 2001-07-14 Akim Demaille <akim@epita.fr>
20144
20145 * config/: New.
20146 * configure.in: Require Autoconf 2.50.
20147 Update to gettext 0.10.38.
20148
20149 2001-03-16 Akim Demaille <akim@epita.fr>
20150
20151 * doc/bison.texinfo: ANSIfy the examples.
20152
20153 2001-03-16 Akim Demaille <akim@epita.fr>
20154
20155 * getargs.c (skeleton): New variable.
20156 (longopts): --skeleton is a new option.
20157 (shortopts, getargs): -S is a new option.
20158 * getargs.h: Declare skeleton.
20159 * output.c (output_parser): Use it.
20160
20161 2001-03-16 Akim Demaille <akim@epita.fr>
20162
20163 * m4/strerror_r.m4: New.
20164 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20165 * lib/error.h, lib/error.c: Update.
20166
20167 2001-03-16 Akim Demaille <akim@epita.fr>
20168
20169 * src/getargs.c (longopts): Clean up.
20170
20171 2001-02-21 Akim Demaille <akim@epita.fr>
20172
20173 * src/reader.c (gensym): `gensym_count' is your own.
20174 Use a static buf to create the symbol name, as token_buffer is no
20175 longer a buffer.
20176
20177 2001-02-08 Akim Demaille <akim@epita.fr>
20178
20179 * src/conflicts.c (conflict_report): Be sure not to append to res
20180 between two calls, which could happen if both first sprintf were
20181 skipped, but not the first cp += strlen.
20182
20183 2001-02-08 Akim Demaille <akim@epita.fr>
20184
20185 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20186 New, from fileutils 4.0.37.
20187 * configure.in: Require Autoconf 2.49c. I took some time before
20188 making this decision. This is the only way out for portability
20189 issues in Bison, it would mean way too much duplicate effort to
20190 import in Bison features implemented in 2.49c since 2.13.
20191 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20192
20193 2001-02-02 Akim Demaille <akim@epita.fr>
20194
20195 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20196 * lib/xalloc.h, lib/xmalloc.c: Update.
20197
20198 2001-01-19 Akim Demaille <akim@epita.fr>
20199
20200 Get rid of the ad hoc handling of token_buffer in the scanner: use
20201 the obstacks.
20202
20203 * src/lex.c (token_obstack): New.
20204 (init_lex): Initialize it. No longer call...
20205 (grow_token_buffer): this. Remove it.
20206 Adjust all the places which used it to use the obstack.
20207
20208 2001-01-19 Akim Demaille <akim@epita.fr>
20209
20210 * src/lex.h: Rename all the tokens:
20211 s/\bENDFILE\b/tok_eof/g;
20212 s/\bIDENTIFIER\b/tok_identifier/g;
20213 etc.
20214 Let them be enums, not #define, to ease debugging.
20215 Adjust all the code.
20216
20217 2001-01-18 Akim Demaille <akim@epita.fr>
20218
20219 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20220 * src/lex.c (maxtoken, grow_token_buffer): Static.
20221
20222 2001-01-18 Akim Demaille <akim@epita.fr>
20223
20224 Since we now use obstacks, more % directives can be enabled.
20225
20226 * src/lex.c (percent_table): Also accept `%yacc',
20227 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20228 `%debug'.
20229 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20230 instead of returning a token.
20231 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20232 * src/reader.c (read_declarations): Adjust.
20233 * src/files.c (open_files): Don't call `compute_base_names', don't
20234 compute `attrsfile' since they depend upon data which might be
20235 *in* the input file now.
20236 (output_files): Do it here.
20237 * src/output.c (output_headers): Document the fact that this patch
20238 introduces a guaranteed SEGV for semantic parsers.
20239 * doc/bison.texinfo: Document them.
20240 * tests/suite.at: Exercise these %options.
20241
20242 2000-12-20 Akim Demaille <akim@epita.fr>
20243
20244 Also handle the output file (--verbose) with obstacks.
20245
20246 * files.c (foutput): Remove.
20247 (output_obstack): New.
20248 Adjust all dependencies.
20249 * src/conflicts.c: Return a string.
20250 * src/system.h (obstack_grow_string): Rename as...
20251 (obstack_sgrow): this. Be ready to work with non literals.
20252 (obstack_fgrow4): New.
20253
20254 2000-12-20 Akim Demaille <akim@epita.fr>
20255
20256 * src/files.c (open_files): Fix the computation of short_base_name
20257 in the case of `-o foo.tab.c'.
20258
20259 2000-12-20 Akim Demaille <akim@epita.fr>
20260
20261 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20262 (copy_dollar): Now that everything uses obstacks, get rid of the
20263 FILE * parameters.
20264
20265 2000-12-20 Akim Demaille <akim@epita.fr>
20266
20267 * src/files.c (open_files): Actually the `.output' file is based
20268 on the short_base_name, not base_name.
20269 * tests/suite.at (Checking output file names): Adjust.
20270
20271 2000-12-20 Akim Demaille <akim@epita.fr>
20272
20273 * src/bison.s1: Remove, we now use directly...
20274 * src/bison.simple: this.
20275 * src/Makefile.am: Use pkgdata instead of data.
20276
20277 2000-12-20 Akim Demaille <akim@epita.fr>
20278
20279 * src/files.c (guard_obstack): New.
20280 (open_files): Initialize it.
20281 (output_files): Dump it...
20282 * src/files.h: Export it.
20283 * src/reader.c (copy_guard): Use it.
20284
20285 2000-12-19 Akim Demaille <akim@epita.fr>
20286
20287 * src/files.c (outfile, defsfile, actfile): Removed as global
20288 vars.
20289 (open_files): Don't compute them.
20290 (output_files): Adjust.
20291 (base_name, short_base_name): Be global.
20292 Adjust dependencies.
20293
20294 2000-12-19 Akim Demaille <akim@epita.fr>
20295
20296 * src/files.c (strsuffix): New.
20297 (stringappend): Be just like strcat but allocate.
20298 (base_names): Eve out from open_files.
20299 Try to simplify the rather hairy computation of base_name and
20300 short_base_name.
20301 (open_files): Use it.
20302 * tests/suite.at (Checking output file names): New test.
20303
20304 2000-12-19 Akim Demaille <akim@epita.fr>
20305
20306 * src/system.h (obstack_grow_literal_string): Rename as...
20307 (obstack_grow_string): this.
20308 * src/output.c (output_parser): Recognize `%% actions' instead of
20309 `$'.
20310 * src/bison.s1: s/$/%% actions/.
20311 * src/bison.hairy: Likewise.
20312
20313 2000-12-19 Akim Demaille <akim@epita.fr>
20314
20315 * src/output.c (output_parser): Compute the `#line' lines when
20316 there are.
20317 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20318 Suggested by Hans Aberg.
20319
20320 2000-12-19 Akim Demaille <akim@epita.fr>
20321
20322 Let the handling of the skeleton files be local to the procedures
20323 that use it.
20324
20325 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20326 longer static.
20327 (fparser, open_extra_files): Remove.
20328 (open_files, output_files): Don't take care of fparser.
20329 * src/files.h: Adjust.
20330 * src/output.c (output_parser): Open and close the file to the
20331 skeleton.
20332 * src/reader.c (read_declarations): When %semantic_parser, open
20333 fguard.
20334
20335 2000-12-19 Akim Demaille <akim@epita.fr>
20336
20337 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20338 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20339
20340 2000-12-19 Akim Demaille <akim@epita.fr>
20341
20342 * src/files.c (open_files): Yipee! We no longer need all the code
20343 looking for `/tmp' since we have no tmp file.
20344
20345 2000-12-19 Akim Demaille <akim@epita.fr>
20346
20347 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20348 New macros.
20349 * src/files.c (open_files): Less dependency on MSDOS etc.
20350
20351 2000-12-14 Akim Demaille <akim@epita.fr>
20352
20353 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20354 Provide a default definition.
20355 Use it when executing the default @ action.
20356 * src/reader.c (reader_output_yylsp): No longer include
20357 `timestamp' and `text' in the default YYLTYPE.
20358
20359 2000-12-12 Akim Demaille <akim@epita.fr>
20360
20361 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20362 (copy_guard): Quote the file names.
20363 Reported by Laurent Mascherpa.
20364
20365 2000-12-12 Akim Demaille <akim@epita.fr>
20366
20367 * src/output.c (output_headers, output_program, output): Be sure
20368 to escape special characters when outputting filenames.
20369 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20370 (output_headers): Don't depend on them, Use ACTSTR.
20371
20372 2000-11-17 Akim Demaille <akim@epita.fr>
20373
20374 * lib/obstack.h: Formatting changes.
20375 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20376 prevents type checking.
20377 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20378 cast the value to (void *): assigning a `foo *' to a `void *'
20379 variable is valid.
20380 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20381 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20382 append characters.
20383
20384 2000-11-17 Akim Demaille <akim@epita.fr>
20385
20386 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20387 as...
20388 (suite.m4, regression.m4, calc.m4): these.
20389 * tests/atgeneral.m4: Update from CVS Autoconf.
20390
20391 2000-11-17 Akim Demaille <akim@epita.fr>
20392
20393 * tests/regression.m4 (%union and --defines): New test,
20394 demonstrating a current bug in the obstack implementation.
20395
20396 2000-11-17 Akim Demaille <akim@epita.fr>
20397
20398 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20399 macros.
20400 Use them to declare the variables which are global or local to
20401 `yyparse'.
20402
20403 2000-11-17 Akim Demaille <akim@epita.fr>
20404
20405 * acconfig.h: Remove, no longer used.
20406
20407 2000-11-07 Akim Demaille <akim@epita.fr>
20408
20409 * src: s/Copyright (C)/Copyright/g.
20410
20411 2000-11-07 Akim Demaille <akim@epita.fr>
20412
20413 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20414 defining.
20415 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20416
20417 2000-11-07 Akim Demaille <akim@epita.fr>
20418
20419 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20420 Merge in a single CPP if/else.
20421
20422 2000-11-07 Akim Demaille <akim@epita.fr>
20423
20424 * src/output.c (output): Remove useless variables.
20425 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20426 argument `data' for consistency with the prototypes.
20427 Qualify it `const'.
20428 (obstack_copy, obstack_copy0): Rename the second argument as
20429 `address' for consistency. Qualify it `const'.
20430 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20431 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20432 `const' their input argument (`data' or `address').
20433 Adjust the corresponding macros to include `const' in casts.
20434
20435 2000-11-03 Akim Demaille <akim@epita.fr>
20436
20437 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20438 s/PFILE1/BISON_HAIRY/.
20439 Adjust dependencies.
20440
20441 2000-11-03 Akim Demaille <akim@epita.fr>
20442
20443 For some reason, this was not applied.
20444
20445 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20446 `unlink': it's no longer used.
20447
20448 2000-11-03 Akim Demaille <akim@epita.fr>
20449
20450 * src/files.c (skeleton_find): New function, eved out of...
20451 (open_files, open_extra_files): here.
20452
20453 2000-11-03 Akim Demaille <akim@epita.fr>
20454
20455 Don't use `atexit'.
20456
20457 * src/files.c (obstack_save): New function.
20458 (done): Rename as...
20459 (output_files): this.
20460 Use `obstack_save'.
20461 * src/main.c (main): Don't use `atexit' to register `done', since
20462 it no longer has to remove tmp files, just call `output_files'
20463 when there are no errors.
20464
20465 2000-11-02 Akim Demaille <akim@epita.fr>
20466
20467 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20468 `unlink': it's no longer used.
20469 * src/files.h: Formatting changes.
20470
20471 2000-11-02 Akim Demaille <akim@epita.fr>
20472
20473 Remove the last uses of mktemp and unlink/delete.
20474
20475 * src/files.c (fdefines, ftable): Removed.
20476 (defines_ostack, table_obstack): New.
20477 Adjust dependencies of the former into uses of the latter.
20478 * src/output.c (output_short_or_char_table, output_short_table):
20479 Convert to using obstacks.
20480 * src/reader.c (copy_comment2): Accept one FILE * and two
20481 obstacks.
20482 (output_token_defines, reader_output_yylsp): Use obstacks.
20483 * src/system.h (obstack_fgrow3): New.
20484 * po/POTFILES.in: Adjust.
20485
20486 2000-11-01 Akim Demaille <akim@epita.fr>
20487
20488 Change each use of `fattrs' into a use of `attrs_obstack'.
20489
20490 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20491 * src/files.c (fattrs): Remove.
20492 (attrs_obstack): New.
20493 Adjust all dependencies.
20494 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20495
20496 2000-11-01 Akim Demaille <akim@epita.fr>
20497
20498 Introduce obstacks.
20499 Change each use of `faction' into a use of `action_obstack'.
20500
20501 * lib/obstack.h, lib/obstack.c: New files.
20502 * src/files.c (faction): Remove.
20503 (action_obstack): New.
20504 Adjust all dependencies.
20505
20506 2000-10-20 Akim Demaille <akim@epita.fr>
20507
20508 * lib/quote.h (PARAMS): New macro. Use it.
20509
20510 2000-10-16 Akim Demaille <akim@epita.fr>
20511
20512 * src/output.c (output_short_or_char_table): New function.
20513 (output_short_table, output_token_translations): Use it.
20514 (goto_actions): Use output_short_table.
20515
20516 2000-10-16 Akim Demaille <akim@epita.fr>
20517
20518 * src/symtab.c (bucket_new): New function.
20519 (getsym): Use it.
20520
20521 * src/output.c (output_short_table): New argument to display the
20522 comment associated with the table.
20523 Adjust dependencies.
20524 (output_gram): Use it.
20525 (output_rule_data): Nicer output layout for YYTNAME.
20526
20527 2000-10-16 Akim Demaille <akim@epita.fr>
20528
20529 * src/lex.c (read_typename): New function.
20530 (lex): Use it.
20531 * src/reader.c (copy_dollar): Likewise.
20532
20533 2000-10-16 Akim Demaille <akim@epita.fr>
20534
20535 * src/reader.c (copy_comment2): Expect the input stream to be on
20536 the `/' which is suspected to open a comment, instead of being
20537 called after `//' or `/*' was read.
20538 (copy_comment, copy_definition, parse_union_decl, copy_action)
20539 (copy_guard): Adjust.
20540
20541 2000-10-16 Akim Demaille <akim@epita.fr>
20542
20543 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20544 `read_signed_integer'.
20545
20546 2000-10-16 Akim Demaille <akim@epita.fr>
20547
20548 * src/reader.c (copy_dollar): New function.
20549 (copy_guard, copy_action): Use it.
20550
20551 2000-10-16 Akim Demaille <akim@epita.fr>
20552
20553 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20554 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20555 New files, from Fileutils 4.0.27.
20556 * src/main.c (printable_version): Remove.
20557 * src/lex.c, src/reader.c: Use `quote'.
20558
20559 2000-10-04 Akim Demaille <akim@epita.fr>
20560
20561 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20562
20563 2000-10-04 Akim Demaille <akim@epita.fr>
20564
20565 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20566
20567 2000-10-04 Akim Demaille <akim@epita.fr>
20568
20569 When a literal string is used to define two different tokens,
20570 `bison -v' segfaults.
20571 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20572
20573 * tests/regression.m4: New file.
20574 Include the core of the sample provided by Piotr Gackiewicz.
20575 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20576 properly.
20577
20578 2000-10-04 Akim Demaille <akim@epita.fr>
20579
20580 * src/reader.c (parse_expect_decl): Keep `count' within the size
20581 of `buffer'.
20582 From Neil Booth.
20583
20584 2000-10-02 Paul Eggert <eggert@twinsun.com>
20585
20586 * bison.s1 (yyparse): Assign the default value
20587 unconditionally, to avoid a GCC warning and make the parser a
20588 tad smaller.
20589
20590 2000-10-02 Akim Demaille <akim@epita.fr>
20591
20592 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20593 options.
20594
20595 2000-10-02 Akim Demaille <akim@epita.fr>
20596
20597 * src/derives.c, src/print.c, src/reduce.c: To ease the
20598 translation, move some `\n' out of the translated strings.
20599
20600 2000-10-02 Akim Demaille <akim@epita.fr>
20601
20602 The location tracking mechanism is precious for parse error
20603 messages. Nevertheless, it is enabled only when `@n' is used in
20604 the grammar, which is a different issue (you can use it in error
20605 message, but not in the grammar per se). Therefore, there should
20606 be another means to enable it.
20607
20608 * src/getargs.c (getargs): Support `--locations'.
20609 (usage): Report it.
20610 * src/getargs.h (locationsflag): Export it.
20611 * src/lex.c (percent_table): Support `%locations'.
20612 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20613 with `locationsflag'.
20614 * doc/bison.texinfo: Document `--locations' and `%locations'.
20615 Sort the options.
20616 * tests/calc.m4: Test it.
20617
20618 For regularity of the names, replace each
20619 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20620 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20621 In addition replace each `flag' with `_flag'.
20622
20623 2000-10-02 Akim Demaille <akim@epita.fr>
20624
20625 Also test parse error messages, including with YYERROR_VERBOSE.
20626
20627 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20628 associative).
20629 Use it to check the computations.
20630 Use it to check `nonassoc' is honored.
20631 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20632 `--yyerror-verbose'.
20633 (_AT_CHECK_CALC): Adjust to this option.
20634 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20635
20636 2000-10-02 Akim Demaille <akim@epita.fr>
20637
20638 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20639 the latter demonstrates a flaw in the handling of non debugging
20640 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20641 was used in order to simplify:
20642
20643 #if YYDEBUG
20644 if (yydebug)
20645 {
20646 ...
20647 }
20648 #endif
20649
20650 into
20651
20652 if (yydebug)
20653 {
20654 ...
20655 }
20656
20657 unfortunately this leads to a CPP conflict when
20658 `--name-prefix=foo' is used since it produces `#define yydebug
20659 foodebug'.
20660
20661 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20662 (YYDPRINTF): New macro.
20663 Spread its use.
20664 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20665 the bison options.
20666 Also test `--verbose', `--defines' and `--name-prefix'.
20667
20668 2000-10-02 Akim Demaille <akim@epita.fr>
20669
20670 Improve the readability of the produced parsers.
20671
20672 * src/bison.s1: Formatting changes.
20673 Improve the comment related to the `$' mark.
20674 (yydefault): Don't fall through to `yyresume': `goto' there.
20675 * src/output.c (output_parser): When the `$' is met, skip the end
20676 of its line.
20677 New variable, `number_of_dollar_signs', to check there's exactly
20678 one `$' in the parser skeleton.
20679
20680 2000-10-02 Akim Demaille <akim@epita.fr>
20681
20682 * lib/xstrdup.c: New file, from the fileutils.
20683 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20684 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20685 instead of strlen + xmalloc + strcpy.
20686 * src/symtab.c (copys): Remove, use xstrdup instead.
20687
20688 2000-10-02 Akim Demaille <akim@epita.fr>
20689
20690 * src/gram.h (associativity): New enum type which replaces the
20691 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20692 `right_assoc', `left_assoc' and `non_assoc'.
20693 Adjust all dependencies.
20694 * src/reader.c: Formatting changes.
20695 (LTYPESTR): Don't define it, use it as a literal in
20696 `reader_output_yylsp'.
20697 * src/symtab.h (symbol_class): New enum type which replaces the
20698 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20699 `sunknown', `stoken and `snterm'.
20700
20701 2000-10-02 Akim Demaille <akim@epita.fr>
20702
20703 * src/getargs.c (fixed_outfiles): Rename as...
20704 (yaccflag): for consistency and accuracy.
20705 Adjust dependencies.
20706
20707 2000-10-02 Akim Demaille <akim@epita.fr>
20708
20709 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20710 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20711 difficult and introduced a lot of core dump. It turns out that
20712 Bison used an implementation of `xmalloc' based on `calloc', and
20713 at various places it does depend upon the initialization to 0. I
20714 have not tried to isolate the pertinent places, and all the former
20715 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20716 someone should address this issue.
20717
20718 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20719 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20720 files.
20721 Adjust dependencies.
20722 * src/warshall.h: New file.
20723 Propagate.
20724
20725 2000-10-02 Akim Demaille <akim@epita.fr>
20726
20727 Various anti-`extern in *.c' changes.
20728
20729 * src/system.h: Include `assert.h'.
20730
20731 2000-10-02 Akim Demaille <akim@epita.fr>
20732
20733 * src/state.h (nstates, final_state, first_state, first_shift)
20734 (first_reduction): Move their exportation from here...
20735 * src/LR0.h: to here.
20736 Adjust dependencies.
20737 * src/getargs.c (statisticsflag): New variable.
20738 Add support for `--statistics'.
20739 Adjust dependencies.
20740
20741 Remove a lot of now useless `extern' statements in most files.
20742
20743 2000-10-02 Akim Demaille <akim@epita.fr>
20744
20745 * src/LR0.h: New file.
20746 Propagate its use.
20747
20748 2000-10-02 Akim Demaille <akim@epita.fr>
20749
20750 * src/print.h: New file.
20751 Propagate its use.
20752 * src/print.c: Formatting and ordering changes.
20753 (verbose, terse): Replace with...
20754 (print_results): this new function.
20755 Adjust dependencies.
20756
20757 2000-10-02 Akim Demaille <akim@epita.fr>
20758
20759 * src/conflicts.c (conflict_report): New function.
20760 (conflict_log, verbose_conflict_log): Replace with...
20761 (print_conflicts): this function.
20762 Adjust dependencies.
20763 * src/conflicts.h: New file.
20764 Propagate its inclusion.
20765
20766 2000-10-02 Akim Demaille <akim@epita.fr>
20767
20768 * src/nullable.h: New file.
20769 Propagate its inclusion.
20770 * src/nullable.c: Formatting changes.
20771
20772 2000-10-02 Akim Demaille <akim@epita.fr>
20773
20774 * src/reduce.h: New file.
20775 Propagate its inclusion.
20776 * src/reduce.c: Topological sort and other formatting changes.
20777 (bool, TRUE, FALSE): Move their definition to...
20778 * src/system.h: here.
20779
20780 2000-10-02 Akim Demaille <akim@epita.fr>
20781
20782 * src/files.c: Formatting changes.
20783 (tryopen, tryclose, openfiles): Rename as...
20784 (xfopen, xfclose, open_files): this.
20785 (stringappend): static.
20786 * src/files.h: Complete the list of exported symbols.
20787 Propagate its use.
20788
20789 2000-10-02 Akim Demaille <akim@epita.fr>
20790
20791 * src/reader.h: New file.
20792 Propagate its use instead of tedious list of `extern' and
20793 prototypes.
20794 * src/reader.c: Formatting changes, topological sort,
20795 s/register//.
20796
20797 2000-10-02 Akim Demaille <akim@epita.fr>
20798
20799 * src/lex.h: Prototype `lex.c' exported functions.
20800 * src/reader.c: Adjust.
20801 * src/lex.c: Formatting changes.
20802 (safegetc): Rename as...
20803 (xgetc): this.
20804
20805 2000-10-02 Akim Demaille <akim@epita.fr>
20806
20807 * src/lalr.h: New file.
20808 Propagate its inclusion instead of prototypes and `extern'.
20809 * src/lalr.c: Formatting changes, topological sorting etc.
20810
20811 2000-10-02 Akim Demaille <akim@epita.fr>
20812
20813 * src/output.c (token_actions): Introduce a temporary array,
20814 YYDEFACT, that makes it possible for this function to use
20815 output_short_table.
20816
20817 2000-10-02 Akim Demaille <akim@epita.fr>
20818
20819 `user_toknums' is output as a `short[]' in `output.c', while it is
20820 defined as a `int[]' in `reader.c'. For consistency with the
20821 other output tables, `user_toknums' is now defined as a table of
20822 shorts.
20823
20824 * src/reader.c (user_toknums): Be a short table instead of an int
20825 table.
20826 Adjust dependencies.
20827
20828 Factor the short table outputs.
20829
20830 * src/output.c (output_short_table): New function.
20831 * src/output.c (output_gram, output_stos, output_rule_data)
20832 (output_base, output_table, output_check): Use it.
20833
20834 2000-10-02 Akim Demaille <akim@epita.fr>
20835
20836 * src/output.c (output): Topological sort of the functions, in
20837 order to get rid of the `static' prototypes.
20838 No longer use `register'.
20839 * src/output.h: New file.
20840 Propagate its inclusion in files explicitly prototyping functions
20841 from output.c.
20842
20843 2000-09-21 Akim Demaille <akim@epita.fr>
20844
20845 * src/atgeneral.m4: Update from Autoconf.
20846
20847 2000-09-21 Akim Demaille <akim@epita.fr>
20848
20849 * src/closure.h: New file.
20850 * src/closure.c: Formatting changes, topological sort over the
20851 functions, use of closure.h.
20852 (initialize_closure, finalize_closure): Rename as...
20853 (new_closure, free_closure): these. Adjust dependencies.
20854 * src/LR0.c: Formatting changes, topological sort, use of
20855 cloture.h.
20856 (initialize_states): Rename as...
20857 (new_states): this.
20858 * src/Makefile.am (noinst_HEADERS): Adjust.
20859
20860 2000-09-20 Akim Demaille <akim@epita.fr>
20861
20862 * src/acconfig.h: Don't protect config.h against multiple
20863 inclusion.
20864 Don't define PARAMS.
20865 * src/system.h: Define PARAMS.
20866 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20867 purpose of config.h. system.h must not try to fix wrong
20868 definitions in config.h.
20869
20870 2000-09-20 Akim Demaille <akim@epita.fr>
20871
20872 * src/derives.h: New file.
20873 * src/main.c, src/derives.h: Use it.
20874 Formatting changes.
20875 * src/Makefile.am (noinst_HEADERS): Adjust.
20876
20877 2000-09-20 Akim Demaille <akim@epita.fr>
20878
20879 * tests/atgeneral.m4: Update from Autoconf.
20880 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20881 (AT_CHECK_CALC): New macros.
20882 Use these macros to test bison with options `', `--raw',
20883 `--debug', `--yacc', `--yacc --debug'.
20884
20885 2000-09-19 Akim Demaille <akim@epita.fr>
20886
20887 * src/output.c: Formatting changes.
20888 * src/machine.h: Remove, leaving its contents in...
20889 * src/system.h: here.
20890 Include stdio.h.
20891 Adjust all dependencies on stdio.h and machine.h.
20892 * src/getargs.h: New file.
20893 Let all `extern' declarations about getargs.c be replaced with
20894 inclusion of `getargs.h'.
20895 * src/Makefile.am (noinst_HEADERS): Adjust.
20896
20897 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20898 scope.
20899 (yyerror): Returns void, not int.
20900 * doc/bison.texinfo: Formatting changes.
20901
20902 2000-09-19 Akim Demaille <akim@epita.fr>
20903
20904 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20905 portable.
20906
20907 2000-09-18 Akim Demaille <akim@epita.fr>
20908
20909 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20910 * src/Makefile.am (INCLUDES): Don't.
20911 Be ready to fetch headers in lib/.
20912
20913 2000-09-18 Akim Demaille <akim@epita.fr>
20914
20915 * doc/bison.texinfo: Update the copyright.
20916 ANSIfy and GNUify the examples.
20917 Remove the old menu.
20918
20919 2000-09-18 Akim Demaille <akim@epita.fr>
20920
20921 First set of tests: use the `calc' example from the documentation.
20922
20923 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20924 is defined only when YYDEBUG is.
20925 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20926 * src/files.c (tryopen, tryclose): Formatting changes.
20927 Move to the top and be static.
20928 * src/reader.c (read_signed_integer): Likewise.
20929 * tests/calc.m4: New file.
20930 * Makefile.am, suite.m4: Adjust.
20931 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20932
20933 2000-09-18 Akim Demaille <akim@epita.fr>
20934
20935 Add support for an Autotest test suite for Bison.
20936
20937 * m4/m4.m4, m4/atconfig.m4: New files.
20938 * m4/Makefile.am (EXTRA_DIST): Adjust.
20939 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20940 files.
20941 * src/getargs.c: Display a more standard --version message.
20942 * src/reader.c (reader): Formatting changes.
20943 No longer depend upon VERSION_STRING.
20944 * configure.in: No longer use `dnl'.
20945 Set up the test suite and the new directory `tests/.
20946 (VERSION_STRING): Remove.
20947
20948 2000-04-14 Akim Demaille <akim@epita.fr>
20949
20950 * src/reader.c (copy_comment2): New function, same as former
20951 `copy_comment', but outputs into two FILE *.
20952 (copy_comment): Use it.
20953 (parse_union_decl): Use it.
20954 (get_type, parse_start_decl): Use the same `invalid' message.
20955 (parse_start_decl, parse_union_decl): Use the same `multiple'
20956 message.
20957 (parse_union_decl, copy_guard, copy_action): Use the same
20958 `unmatched' message.
20959 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20960
20961 2000-03-31 Akim Demaille <akim@epita.fr>
20962
20963 * src/files.c (tryopen, tryclose): Move to the top.
20964 Be static.
20965
20966 2000-03-31 Akim Demaille <akim@epita.fr>
20967
20968 * src/main.c (main): Don't call `done', exit does it.
20969
20970 2000-03-31 Akim Demaille <akim@epita.fr>
20971
20972 * allocate.c: s/return (foo)/return foo/.
20973 * lalr.c: Likewise.
20974 * LR0.c: Likewise.
20975 * output.c: Likewise.
20976 * reader.c: Likewise.
20977 * symtab.c: Likewise.
20978 * vmsgetargs.c: Likewise.
20979
20980 2000-03-31 Akim Demaille <akim@epita.fr>
20981
20982 Clean up the error reporting functions.
20983
20984 * src/report.c: New file.
20985 * src/report.h: Likewise.
20986 * src/Makefile.am: Adjust.
20987 * m4/error.m4: New file.
20988 * m4/Makefile.am: Adjust.
20989 * configure.in (jm_PREREQ_ERROR): Call it.
20990 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20991 Remove.
20992 (fatal, fatals): Remove. All callers use complain.c::fatal.
20993 (warn, warni, warns, warnss, warnss): Remove. All callers use
20994 complain.c::complain.
20995 (toomany): Remove, use fatal instead.
20996 * src/files.c (done): No argument, use complain_message_count.
20997 * src/main.c (main): Register `done' to `atexit'.
20998
20999 * src/getargs.c (usage): More `fputs', less `fprintf'.
21000
21001 2000-03-28 Akim Demaille <akim@epita.fr>
21002
21003 * lib/: New directory.
21004 * Makefile.am (SUBDIRS): Adjust.
21005 * configure.in: Adjust.
21006 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21007 useless.
21008 * src/alloca.c: Moved to lib/.
21009 * src/getopt.c: Likewise.
21010 * src/getopt1.c: Likewise.
21011 * src/getopt.h: Likewise.
21012 * src/ansi2knr.c: Likewise.
21013 * src/ansi2knr.1: Likewise.
21014 * src/Makefile.am: Adjust.
21015 * lib/Makefile.am: New file.
21016
21017 2000-03-28 Akim Demaille <akim@epita.fr>
21018
21019 * src/getargs.c (usage): Refresh the help message.
21020
21021 2000-03-17 Akim Demaille <akim@epita.fr>
21022
21023 * src/getopt1.c: Updated from textutils 2.0e
21024 * src/getopt.c: Likewise.
21025 * src/getopt.h: Likewise.
21026
21027 2000-03-17 Akim Demaille <akim@epita.fr>
21028
21029 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21030 the file name, not the whole `#line LINE FILE'.
21031
21032 2000-03-17 Akim Demaille <akim@epita.fr>
21033
21034 On syntax errors, report the token on which we choked.
21035
21036 * src/bison.s1 (yyparse): In the label yyerrlab, when
21037 YYERROR_VERBOSE, add yychar in msg.
21038
21039 2000-03-17 Akim Demaille <akim@epita.fr>
21040
21041 * src/reader.c (copy_at): New function.
21042 (copy_guard): Use it.
21043 (copy_action): Use it.
21044
21045 2000-03-17 Akim Demaille <akim@epita.fr>
21046
21047 Be kind to translators, save some useless translations.
21048
21049 * src/main.c (banner): New function.
21050 (fatal_banner): Use it.
21051 (warn_banner): Use it.
21052
21053 2000-03-17 Akim Demaille <akim@epita.fr>
21054
21055 * src/reader.c (copy_definition): Use copy_string and
21056 copy_comment. Removed now unused `match', `ended',
21057 `cplus_comment'.
21058 (copy_comment, copy_string): Moved, to be visible from
21059 copy_definition.
21060
21061 2000-03-17 Akim Demaille <akim@epita.fr>
21062
21063 * src/reader.c (copy_string): Declare `static inline'. No
21064 problems with inline, since it is checked by configure.
21065 (copy_comment): Likewise.
21066
21067 2000-03-17 Akim Demaille <akim@epita.fr>
21068
21069 * src/reader.c (packsymbols): Formatting changes.
21070
21071 2000-03-17 Akim Demaille <akim@epita.fr>
21072
21073 * src/reader.c (copy_comment): New function, factored out from:
21074 (copy_action): Use it. Removed now unused `match', `ended',
21075 `cplus_comment'.
21076 (copy_guard): Likewise.
21077
21078 2000-03-17 Akim Demaille <akim@epita.fr>
21079
21080 * src/reader.c (copy_string): New function, factored out from:
21081 (copy_action): Use it.
21082 (copy_guard): Likewise.
21083
21084 2000-03-17 Akim Demaille <akim@epita.fr>
21085
21086 Change the handling of @s so that they behave exactly like $s.
21087 There is now a pseudo variable @$ (readble and writable), location
21088 of the lhs of the rule (by default ranging from the location of
21089 the first symbol of the rhs, to the location of the last symbol,
21090 or, if the rhs is empty, YYLLOC).
21091
21092 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21093 yyval.
21094 (yyparse): When providing a default semantic action, provide a
21095 default location action.
21096 (after the $): No longer change `*YYLSP', just stack YYLOC the
21097 same way you stack YYVAL.
21098 * src/reader.c (read_declarations): Use warns.
21099 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21100 (copy_action, case '@'): Likewise.
21101 Use a standard error message, to save useless work from
21102 translators.
21103
21104 2000-03-17 Akim Demaille <akim@epita.fr>
21105
21106 * src/bison.s1: Formatting and cosmetics changes.
21107 * src/reader.c: Likewise.
21108 Update the Copyright notice.
21109
21110 2000-03-17 Akim Demaille <akim@epita.fr>
21111
21112 * src/bison.s1 (#line): All set to `#line' only, since the
21113 Makefile now handles them.
21114
21115 2000-03-16 Akim Demaille <akim@epita.fr>
21116
21117 * src/output.c (output_rule_data): Output the documentation of
21118 some of the tables.
21119 (Copyright notice): Update.
21120 Formatting changes.
21121
21122 2000-03-16 Akim Demaille <akim@epita.fr>
21123
21124 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21125 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21126 One `#if YYDEBUG' remains, since it uses variables which are
21127 defined only if `YYDEBUG != 0'.
21128
21129 2000-03-16 Akim Demaille <akim@epita.fr>
21130
21131 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21132 and related variables so that the similarities are highlighted.
21133
21134 2000-03-16 Akim Demaille <akim@epita.fr>
21135
21136 * src/bison.s1: Properly indent CPP directives.
21137
21138 2000-03-16 Akim Demaille <akim@epita.fr>
21139
21140 * src/bison.s1: Properly indent the `alloca' CPP section.
21141
21142 2000-03-16 Akim Demaille <akim@epita.fr>
21143
21144 Do not hard code values of directories in `configure.in'.
21145 Update the `configure' tool chain.
21146
21147 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21148 src/makefile.am.
21149 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21150 (AC_OUTPUT): Add m4/Makefile.
21151 Bump to bison 1.28a, 1.29 has never been released.
21152 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21153 handled via src/Makefile.am.
21154 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21155 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21156 autoheader.
21157 * Makefile.am (SUBDIRS): Add m4.
21158 (ACLOCAL_AM_FLAGS): New variable.
21159 (AUTOMAKE_OPTIONS): Add check-news.
21160 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21161 the proper line number and file name.
21162 (DEFS): Propagate the location of bison library files and of the
21163 locale files.
21164 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21165 builddir.
21166 * acinclude.m4: Remove, replaced by the directory m4.
21167 * m4/Makefile.am (EXTRA_DIST): New variable.
21168 * m4/gettext.m4: New file, from the fileutils.
21169 * m4/lcmessage.m4: Likewise
21170 * m4/progtest.m4: Likewise.
21171 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21172
21173 2000-03-10 Akim Demaille <akim@epita.fr>
21174
21175 * src/closure.c:
21176 Formatting changes of various comments.
21177 Respect the GNU coding standards at various places.
21178 Don't use `_()' when no translation is needed.
21179
21180 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21181
21182 * src/files.c:
21183 OS/2 honors TMPDIR environment variable.
21184
21185 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21186
21187 * doc/bison.texinfo: Tweaked spelling and grammar.
21188 Updated ISBN.
21189 Removed reference to price of printed copy.
21190 Mention BISON_SIMPLE and BISON_HAIRY.
21191
21192 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21193
21194 * configure.in, NEWS:
21195 Bison 1.29 released.
21196
21197 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21198
21199 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21200 Added reference card.
21201
21202 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21203
21204 * po/ru.po: Added Russian translation.
21205
21206 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21207
21208 * configure.in: Added Russian translation.
21209
21210 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21211
21212 * configure.in, NEWS, README:
21213 Released version 1.28.
21214
21215 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21216
21217 * src/system.h:
21218 Squashed redefinition warning on some systems.
21219
21220 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21221 Have configure build version string instead of relying on ANSI string
21222 concatentation.
21223
21224 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21225
21226 * po/POTFILES.in: Got rid of version.c.
21227
21228 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21229
21230 * acconfig.h, configure.in:
21231 Have configure build version string instead of relying on ANSI string
21232 concatentation.
21233
21234 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21235
21236 * doc/bison.1:
21237 Dropped mention of `+' for long-named options.
21238
21239 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21240
21241 * src/files.c: Added <unistd.h> for unlink().
21242
21243 * src/Makefile.am, src/system.h:
21244 I18n fixes.
21245
21246 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21247
21248 * README: Added a FAQ list.
21249
21250 * configure.in, acconfig.h:
21251 I18n fixes.
21252
21253 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21254
21255 * doc/FAQ, doc/Makefile.am:
21256 Added a FAQ list.
21257
21258 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21259
21260 * src/alloc.h, src/symtab.h, src/version.c:
21261 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21262
21263 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21264
21265 * src/.cvsignore, src/Makefile.am:
21266 Reorganized: sources in `src', documentation in `doc'.
21267
21268 * src/lex.c (literalchar):
21269 fixed the code for escaping double quotes (thanks
21270 Jonathan Czisny.)
21271
21272 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21273
21274 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21275 Adjusted paths to reflect directory reorganization.
21276
21277 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21278
21279 * doc/.cvsignore, doc/Makefile.am:
21280 Reorganized: sources in `src', documentation in `doc'.
21281
21282 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21283
21284 * configure.in:
21285 Updated AC_INIT file to reflect directory reorganization.
21286
21287 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21288 Reorganized: sources in `src', documentation in `doc'.
21289
21290 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21291
21292 * src/allocate.c:
21293 Don't declare calloc() and realloc() if not necessary.
21294
21295 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21296
21297 * configure.in, acconfig.h, acinclude.m4:
21298 Don't declare calloc() and realloc() if not necessary.
21299
21300 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21301
21302 * po/.cvsignore: Added i18n support.
21303
21304 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21305
21306 * acconfig.h, configure.in, Makefile.am:
21307 Added i18n support.
21308
21309 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21310
21311 * src/bison.s1: Fixed #line numbers.
21312
21313 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21314
21315 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21316 Added PO files from Translation Project.
21317
21318 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21319
21320 * Makefile.am:
21321 Added support for non-ANSI compilers (ansi2knr).
21322
21323 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21324
21325 * configure.in: Bumped version number to 1.27.
21326
21327 * Makefile.am:
21328 Added `bison.simple' to list of files removed by `make distclean'.
21329
21330 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21331
21332 * src/files.c, src/files.h:
21333 Defined locations of parser files in config.h instead of Makefile.
21334
21335 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21336
21337 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21338 Defined locations of parser files in config.h instead of Makefile.
21339
21340 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21341
21342 * Makefile.am:
21343 Removed inappropriate use of $< macro.
21344
21345 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21346
21347 * po/Makefile.in.in, po/POTFILES.in:
21348 Add `po' directory skeleton.
21349
21350 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21351
21352 * README: Document help-bison list.
21353
21354 * configure.in: Add check for mkstemp().
21355
21356 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21357
21358 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21359 Hush a few compiler warnings.
21360
21361 * src/files.c:
21362 Add tryclose(), which verifies that fclose was successful.
21363 Hush a couple of compiler warnings.
21364
21365 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21366
21367 * Makefile.am, OChangeLog:
21368 ChangeLog is now automatically generated. Include the old version as
21369 OChangeLog.
21370
21371 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21372
21373 * 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:
21374 Update FSF address.
21375
21376 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21377
21378 * doc/bison.texinfo: Fix formatting glitch.
21379
21380 * doc/bison.texinfo: Update FSF address.
21381
21382 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21383
21384 * acconfig.h: Update FSF address.
21385
21386 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21387
21388 * src/system.h:
21389 Don't define PACKAGE here, since config.h defines it.
21390
21391 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21392
21393 * src/reader.c: Update copyright date.
21394
21395 * src/main.c:
21396 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21397 favor of output directly to stderr (avoids buffer overruns).
21398
21399 * src/reader.c: Some checks for premature EOF.
21400
21401 * 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:
21402 Use prototypes if the compiler understands them.
21403
21404 * src/files.c: Honor TMPDIR on Unix hosts.
21405 Use prototypes if the compiler understands them.
21406
21407 * src/reader.c:
21408 Fix a couple of buffer overrun bugs.
21409 Use prototypes if the compiler understands them.
21410
21411 * src/system.h: Include unistd.h and ctype.h.
21412 Use #ifdef instead of #if for NLS symbols.
21413
21414 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21415
21416 * doc/bison.texinfo:
21417 Delete comment "consider using @set for edition number, etc..." since
21418 we now are doing so.
21419
21420 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21421
21422 * configure.in:
21423 Use prototypes if the compiler understands them.
21424
21425 * NEWS: Document 1.26 highlights.
21426
21427 * Makefile.am: Require Automake 1.3 or later.
21428
21429 * acconfig.h:
21430 Use prototypes if the compiler understands them.
21431
21432 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21433
21434 * src/version.c:
21435 Use VERSION symbol from automake for version number.
21436
21437 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21438
21439 * acconfig.h, configure.in, version.cin:
21440 Use VERSION symbol from automake for version number.
21441
21442 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21443
21444 * Makefile.am:
21445 Distribute original version of simple parser (bison.s1), not built
21446 version (bison.simple).
21447
21448 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21449
21450 * doc/bison.texinfo: Add info dir entry.
21451
21452 * doc/bison.texinfo:
21453 Let automake put version number into documentation.
21454
21455 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21456
21457 * src/bison.cld, src/build.com, src/vmshlp.mar:
21458 Add non-RCS files from /gd/gnu/bison.
21459
21460 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21461
21462 * doc/bison.1:
21463 Document the BISON_HAIRY and BISON_SIMPLE variables.
21464
21465 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21466
21467 * src/version.c: Build version.c automatically.
21468
21469 * src/reader.c:
21470 Fix token numbering (used to start at 258, not 257).
21471
21472 * src/system.h: Include config.h.
21473
21474 * src/getargs.c: Update bug report address.
21475
21476 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21477 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21478
21479 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21480
21481 * Makefile.am:
21482 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21483
21484 * configure.in, version.cin:
21485 Build version.c automatically.
21486
21487 * AUTHORS: Add AUTHORS file.
21488
21489 * README: Update bug report address.
21490
21491 * bison.simple:
21492 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21493
21494 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21495 Add automake stuff.
21496
21497 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21498
21499 * doc/bison.texinfo: Clean up some formatting.
21500
21501 1998-05-05 Richard Stallman <rms@gnu.org>
21502
21503 * doc/bison.texinfo:
21504 Explain better why to make a pure parser.
21505
21506 1998-01-05 Richard Stallman <rms@gnu.org>
21507
21508 * src/files.c (openfiles):
21509 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21510 find a temporary directory, if possible. Do not unlink files while
21511 they are open.
21512
21513 1997-08-25 Richard Stallman <rms@gnu.org>
21514
21515 * src/reader.c (stack_offset;):
21516 Change some warni to warns.
21517
21518 * src/lex.c (literalchar): Use warns, not warni.
21519
21520 1997-06-28 Richard Stallman <rms@gnu.org>
21521
21522 * src/bison.s1: Add a Bison version comment.
21523
21524 * src/main.c (fatal, warn, berror):
21525 Use program_name.
21526
21527 1997-06-28 Richard Stallman <rms@gnu.org>
21528
21529 * Makefile.in (bison_version): New variable.
21530 (dist): Use that variable.
21531 (bison.s1): Substitute the Bison version into bison.simple.
21532
21533 * bison.simple: Add a Bison version comment.
21534
21535 1997-06-18 Richard Stallman <rms@gnu.org>
21536
21537 * src/main.c (fatal, warn, berror):
21538 Make error messages standard.
21539 (toomany): Improve error message text.
21540
21541 * 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:
21542 new.h renamed to alloc.h.
21543
21544 1997-06-18 Richard Stallman <rms@gnu.org>
21545
21546 * Makefile.in: new.h renamed to alloc.h.
21547
21548 1997-05-24 Richard Stallman <rms@gnu.org>
21549
21550 * src/lex.c (literalchar):
21551 Fix the code for escaping \, " and '.
21552
21553 (lex): Avoid trouble when there are many chars
21554 to discard in a char literal with just several chars in it.
21555
21556 1997-05-17 Richard Stallman <rms@gnu.org>
21557
21558 * src/bison.s1:
21559 Use malloc, if using alloca is troublesome.
21560 (YYSTACK_USE_ALLOCA): New flag macro.
21561 Define it for some systems and compilers.
21562 (YYSTACK_ALLOC): New macro.
21563 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21564 If it was malloc'd, free it.
21565
21566 1997-05-17 Richard Stallman <rms@gnu.org>
21567
21568 * bison.simple:
21569 Use malloc, if using alloca is troublesome.
21570 (YYSTACK_USE_ALLOCA): New flag macro.
21571 Define it for some systems and compilers.
21572 (YYSTACK_ALLOC): New macro.
21573 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21574 If it was malloc'd, free it.
21575
21576 1997-04-23 Richard Stallman <rms@gnu.org>
21577
21578 * src/bison.s1:
21579 (alloca) [__hpux]: Always define as __builtin_alloca.
21580
21581 1997-04-23 Richard Stallman <rms@gnu.org>
21582
21583 * bison.simple:
21584 (alloca) [__hpux]: Always define as __builtin_alloca.
21585
21586 1997-04-22 Richard Stallman <rms@gnu.org>
21587
21588 * src/bison.s1:
21589 [__hpux]: Include alloca.h (right for HPUX 10)
21590 instead of declaring alloca (right for HPUX 9).
21591
21592 * src/bison.s1 (__yy_memcpy):
21593 Declare arg `count' as unsigned int.
21594 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21595
21596 1997-04-22 Richard Stallman <rms@gnu.org>
21597
21598 * bison.simple:
21599 [__hpux]: Include alloca.h (right for HPUX 10)
21600 instead of declaring alloca (right for HPUX 9).
21601
21602 * bison.simple (__yy_memcpy):
21603 Declare arg `count' as unsigned int.
21604 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21605
21606 1997-01-03 Richard Stallman <rms@gnu.org>
21607
21608 * src/allocate.c: [__STDC__ or _MSC_VER]:
21609 Declare calloc and realloc to return void *.
21610
21611 1997-01-02 Richard Stallman <rms@gnu.org>
21612
21613 * src/system.h:
21614 [_MSC_VER]: Include stdlib.h and process.h.
21615 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21616
21617 * src/main.c (main): Return FAILURE as a value.
21618 (printable_version): Declare arg as int, not char.
21619
21620 1997-01-02 Richard Stallman <rms@gnu.org>
21621
21622 * Makefile.in (dist):
21623 Explicitly check for symlinks, and copy them.
21624
21625 1996-12-19 Richard Stallman <rms@gnu.org>
21626
21627 * src/files.c:
21628 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21629
21630 1996-12-18 Paul Eggert <eggert@gnu.org>
21631
21632 * src/bison.s1 (yyparse):
21633 If __GNUC__ and YYPARSE_PARAM are both defined,
21634 declare yyparse to have a void * argument.
21635
21636 1996-12-18 Paul Eggert <eggert@gnu.org>
21637
21638 * bison.simple (yyparse):
21639 If __GNUC__ and YYPARSE_PARAM are both defined,
21640 declare yyparse to have a void * argument.
21641
21642 1996-12-17 Richard Stallman <rms@gnu.org>
21643
21644 * src/reduce.c (nbits): Add some casts.
21645
21646 1996-08-12 Richard Stallman <rms@gnu.org>
21647
21648 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21649
21650 1996-08-12 Richard Stallman <rms@gnu.org>
21651
21652 * bison.simple: Test _MSDOS as well as _MSDOS_.
21653
21654 1996-07-31 Richard Stallman <rms@gnu.org>
21655
21656 * src/bison.s1:
21657 [__sun && __i386]: Include alloca.h.
21658
21659 1996-07-31 Richard Stallman <rms@gnu.org>
21660
21661 * bison.simple:
21662 [__sun && __i386]: Include alloca.h.
21663
21664 1996-07-30 Richard Stallman <rms@gnu.org>
21665
21666 * src/bison.s1: Comment change.
21667
21668 * src/bison.s1: Test _MSDOS_, not MSDOS.
21669
21670 1996-07-30 Richard Stallman <rms@gnu.org>
21671
21672 * bison.simple: Comment change.
21673
21674 * bison.simple: Test _MSDOS_, not MSDOS.
21675
21676 1996-06-01 Richard Stallman <rms@gnu.org>
21677
21678 * 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:
21679 Insert `_' macro around many string constants.
21680
21681 * src/main.c:
21682 Insert `_' macro around many string constants.
21683
21684 (main): Call setlocale, bindtextdomain and textdomain.
21685
21686 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21687 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21688 [ENABLE_NLS]: Include libintl.h.
21689 [ENABLE_NLS] (gettext): Define.
21690 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21691 (N_, PACKAGE, LOCALEDIR): New macros.
21692
21693 1996-06-01 Richard Stallman <rms@gnu.org>
21694
21695 * POTFILES.in: New file.
21696
21697 * Makefile.in (allocate.o):
21698 Define target explicitly.
21699
21700 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21701 (LDFLAGS): Set to @LDFLAGS@.
21702 (configure): Run autoconf only if preceding `cd' succeeds.
21703 (bison.s1): Redirect output to temporary file then move the
21704 temporary to the target, rather than redirecting directly to bison.s1.
21705 (clean): Remove config.status and config.log.
21706 (distclean): Don't remove config.status here.
21707
21708 1996-05-12 Richard Stallman <rms@gnu.org>
21709
21710 * src/bison.s1:
21711 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21712
21713 1996-05-12 Richard Stallman <rms@gnu.org>
21714
21715 * bison.simple:
21716 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21717
21718 1996-05-11 Richard Stallman <rms@gnu.org>
21719
21720 * src/bison.s1 (__yy_memcpy):
21721 Really reorder the args, as was supposedly done on Feb 14 1995.
21722 (yyparse): Calls changed accordingly.
21723
21724 1996-05-11 Richard Stallman <rms@gnu.org>
21725
21726 * Makefile.in (dist): Don't use $(srcdir).
21727
21728 * bison.simple (__yy_memcpy):
21729 Really reorder the args, as was supposedly done on Feb 14 1995.
21730 (yyparse): Calls changed accordingly.
21731
21732 1996-01-27 Richard Stallman <rms@gnu.org>
21733
21734 * src/output.c (output_rule_data):
21735 Test YYERROR_VERBOSE in the conditional
21736 around the definition of ttyname.
21737
21738 1995-12-29 Richard Stallman <rms@gnu.org>
21739
21740 * src/bison.s1:
21741 Fix line numbers in #line commands.
21742
21743 1995-12-29 Richard Stallman <rms@gnu.org>
21744
21745 * bison.simple:
21746 Fix line numbers in #line commands.
21747
21748 1995-12-27 Richard Stallman <rms@gnu.org>
21749
21750 * src/bison.s1 (YYPARSE_PARAM_DECL):
21751 In C++, make it always null.
21752 (YYPARSE_PARAM_ARG): New macro.
21753 (yyparse): Use YYPARSE_PARAM_ARG.
21754
21755 1995-12-27 Richard Stallman <rms@gnu.org>
21756
21757 * bison.simple (YYPARSE_PARAM_DECL):
21758 In C++, make it always null.
21759 (YYPARSE_PARAM_ARG): New macro.
21760 (yyparse): Use YYPARSE_PARAM_ARG.
21761
21762 1995-11-29 Richard Stallman <rms@gnu.org>
21763
21764 * doc/bison.texinfo:
21765 Describe literal string tokens, %raw, %no_lines, %token_table.
21766
21767 1995-11-29 Daniel Hagerty <hag@gnu.org>
21768
21769 * doc/bison.texinfo: Fixed update date
21770
21771 1995-10-16 Richard Stallman <rms@gnu.org>
21772
21773 * src/version.c: Version 1.25.
21774
21775 1995-10-16 Richard Stallman <rms@gnu.org>
21776
21777 * NEWS: *** empty log message ***
21778
21779 1995-10-16 Richard Stallman <rms@gnu.org>
21780
21781 * doc/bison.1, doc/bison.rnh:
21782 Add new options.
21783
21784 1995-10-15 Richard Stallman <rms@gnu.org>
21785
21786 * src/vmsgetargs.c, src/getargs.c:
21787 Added -n, -k, and -raw switches.
21788 (noparserflag, toknumflag, rawtoknumflag): New variables.
21789
21790 * src/symtab.h (SALIAS):
21791 New #define for adding aliases to %token.
21792 (struct bucket): Added `alias' field.
21793
21794 * src/reduce.c (reduce_grammar):
21795 Revise error message.
21796 (print_notices): Remove final `.' from error message.
21797
21798 * src/reader.c (reader_output_yylsp):
21799 New function.
21800 (readgram): Use `#if 0' around code that accepted %command
21801 inside grammar rules: The documentation doesn't allow it,
21802 and it will fail since the %command processors scan for the next %.
21803 (parse_token_decl): Extended the %token
21804 declaration to allow a multi-character symbol as an alias.
21805 (parse_thong_decl): New function.
21806 (read_declarations): Added %thong declarations.
21807 (read_declarations): Handle NOOP to deal with allowing
21808 % declarations as another means to specify the flags.
21809 (readgram): Allow %prec prior to semantics embedded in a rule.
21810 (skip_to_char, read_declarations, copy_definition)
21811 (parse_token_decl, parse_start_decl, parse_type_decl)
21812 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21813 (get_type_name, copy_guard, copy_action, readgram)
21814 (get_type, packsymbols): Revised most error messages.
21815 Changed `fatal' to `warnxxx' to avoid aborting for error.
21816 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21817 (read_declarations): Improve the error message for
21818 an invalid character. Do not abort.
21819 (read_declarations, copy_guard, copy_action): Use
21820 printable_version to avoid unprintable characters in printed output.
21821 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21822 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21823 Allow the type of a non-terminal can be given
21824 more than once, as long as all specifications give the same type.
21825
21826 * src/output.c:
21827 (output_headers, output_trailers, output, output_gram)
21828 (output_rule_data): Implement noparserflag variable.
21829 Implement toknumflag variable.
21830 (output): Call reader_output_yylsp to output LTYPESTR.
21831
21832 * src/main.c (main):
21833 If reader sees an error, don't process the grammar.
21834 (fatals): Updated to not use VARARGS1.
21835 (printable_version, int_to_string, warn, warni, warns, warnss)
21836 (warnsss): New error reporting functions. Avoid abort for error.
21837
21838 * src/lex.h:
21839 Added THONG and NOOP for alias processing.
21840 Added SETOPT for the new code that allows setting options with %flags.
21841
21842 * src/lex.c:
21843 Include getopt.h. Add some extern decls.
21844 (safegetc): New function to deal with EOF gracefully.
21845 (literalchar); new function to deal with reading \ escapes.
21846 (lex): Use literalchar.
21847 (lex): Implemented "..." tokens.
21848 (literalchar, lex, parse_percent_token): Made tokenbuffer
21849 always contain the token. This includes growing the token
21850 buffer while reading an integer.
21851 (parse_percent_token): Replaced if-else statement with percent_table.
21852 (parse_percent_token): Added % declarations as another
21853 way to specify the flags -n, -l, and -r. Also added hooks for
21854 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21855 major changes to files.c.
21856 (lex) Retain in the incoming stream a character following
21857 an incorrect '/'.
21858 (skip_white_space, lex): Revised most error messages
21859 and changed fatal to warn to avoid aborting.
21860 (percent_table): Added %thong declarations.
21861
21862 * src/gram.h: Comment changes.
21863
21864 * src/files.c (openfiles, open_extra_files, done):
21865 Add faction flag
21866 and actfile file. Handle noparserflag. Both for -n switch.
21867
21868 * src/conflicts.c (resolve_sr_conflict):
21869 Remove use of alloca.
21870
21871 1995-06-01 Jim Meyering <meyering@gnu.org>
21872
21873 * doc/bison.texinfo: *** empty log message ***
21874
21875 1995-05-06 Richard Stallman <rms@gnu.org>
21876
21877 * src/bison.s1: Comment change.
21878
21879 1995-05-06 Richard Stallman <rms@gnu.org>
21880
21881 * bison.simple: Comment change.
21882
21883 1995-05-03 Richard Stallman <rms@gnu.org>
21884
21885 * src/version.c: Version now 1.24.
21886
21887 * src/bison.s1: Change distribution terms.
21888
21889 * src/version.c: Version now 1.23.
21890
21891 1995-05-03 Richard Stallman <rms@gnu.org>
21892
21893 * doc/bison.texinfo:
21894 Rewrite "Conditions for Using Bison".
21895 Update version to 1.24.
21896
21897 1995-05-03 Richard Stallman <rms@gnu.org>
21898
21899 * bison.simple: Change distribution terms.
21900
21901 1995-02-23 Richard Stallman <rms@gnu.org>
21902
21903 * src/files.c: Test __VMS_POSIX as well as VMS.
21904
21905 1995-02-14 Jim Meyering <meyering@gnu.org>
21906
21907 * src/bison.s1 (__yy_memcpy):
21908 Renamed from __yy_bcopy to avoid
21909 confusion. Reverse FROM and TO arguments to be consistent with
21910 those of memcpy.
21911
21912 1995-02-14 Jim Meyering <meyering@gnu.org>
21913
21914 * bison.simple (__yy_memcpy):
21915 Renamed from __yy_bcopy to avoid
21916 confusion. Reverse FROM and TO arguments to be consistent with
21917 those of memcpy.
21918
21919 1994-11-10 David J. MacKenzie <djm@gnu.org>
21920
21921 * NEWS: reformat
21922
21923 * NEWS: New file.
21924
21925 * Makefile.in (DISTFILES): Include NEWS.
21926
21927 * Makefile.in (DISTFILES):
21928 Include install-sh, not install.sh.
21929
21930 * configure.in: Update to Autoconf v2 macro names.
21931
21932 1994-10-05 David J. MacKenzie <djm@gnu.org>
21933
21934 * Makefile.in: fix typo
21935
21936 * Makefile.in (prefix, exec_prefix):
21937 Let configure set them.
21938
21939 1994-09-28 David J. MacKenzie <djm@gnu.org>
21940
21941 * Makefile.in: Set datadir to $(prefix)/share.
21942
21943 1994-09-15 Richard Stallman <rms@gnu.org>
21944
21945 * src/bison.s1:
21946 Update copyright notice and GPL version.
21947
21948 1994-09-15 Richard Stallman <rms@gnu.org>
21949
21950 * bison.simple:
21951 Update copyright notice and GPL version.
21952
21953 1994-07-12 Richard Stallman <rms@gnu.org>
21954
21955 * src/reduce.c, src/reader.c:
21956 entered into RCS
21957
21958 1994-05-05 David J. MacKenzie <djm@gnu.org>
21959
21960 * Makefile.in: entered into RCS
21961
21962 1994-03-26 Richard Stallman <rms@gnu.org>
21963
21964 * src/bison.s1: entered into RCS
21965
21966 1994-03-26 Richard Stallman <rms@gnu.org>
21967
21968 * bison.simple: entered into RCS
21969
21970 1994-03-25 Richard Stallman <rms@gnu.org>
21971
21972 * src/main.c: entered into RCS
21973
21974 1994-03-24 Richard Stallman <rms@gnu.org>
21975
21976 * src/conflicts.c: entered into RCS
21977
21978 1994-01-02 Richard Stallman <rms@gnu.org>
21979
21980 * Makefile.in: *** empty log message ***
21981
21982 1993-11-21 Richard Stallman <rms@gnu.org>
21983
21984 * src/bison.s1: *** empty log message ***
21985
21986 1993-11-21 Richard Stallman <rms@gnu.org>
21987
21988 * doc/bison.texinfo: entered into RCS
21989
21990 * doc/bison.texinfo: *** empty log message ***
21991
21992 1993-11-21 Richard Stallman <rms@gnu.org>
21993
21994 * bison.simple: *** empty log message ***
21995
21996 1993-10-25 David J. MacKenzie <djm@gnu.org>
21997
21998 * doc/bison.texinfo: *** empty log message ***
21999
22000 1993-10-19 Richard Stallman <rms@gnu.org>
22001
22002 * src/bison.s1: *** empty log message ***
22003
22004 1993-10-19 Richard Stallman <rms@gnu.org>
22005
22006 * bison.simple: *** empty log message ***
22007
22008 1993-10-14 Richard Stallman <rms@gnu.org>
22009
22010 * src/bison.s1: *** empty log message ***
22011
22012 1993-10-14 Richard Stallman <rms@gnu.org>
22013
22014 * bison.simple: *** empty log message ***
22015
22016 1993-09-14 David J. MacKenzie <djm@gnu.org>
22017
22018 * doc/bison.texinfo: *** empty log message ***
22019
22020 1993-09-13 Noah Friedman <friedman@gnu.org>
22021
22022 * Makefile.in: *** empty log message ***
22023
22024 1993-09-10 Richard Stallman <rms@gnu.org>
22025
22026 * src/conflicts.c: *** empty log message ***
22027
22028 * src/system.h: entered into RCS
22029
22030 1993-09-10 Richard Stallman <rms@gnu.org>
22031
22032 * doc/bison.1: entered into RCS
22033
22034 1993-09-06 Noah Friedman <friedman@gnu.org>
22035
22036 * src/version.c: entered into RCS
22037
22038 1993-09-06 Noah Friedman <friedman@gnu.org>
22039
22040 * Makefile.in: *** empty log message ***
22041
22042 1993-07-30 David J. MacKenzie <djm@gnu.org>
22043
22044 * Makefile.in: *** empty log message ***
22045
22046 1993-07-24 Richard Stallman <rms@gnu.org>
22047
22048 * src/bison.s1: *** empty log message ***
22049
22050 1993-07-24 Richard Stallman <rms@gnu.org>
22051
22052 * bison.simple: *** empty log message ***
22053
22054 1993-07-08 David J. MacKenzie <djm@gnu.org>
22055
22056 * Makefile.in: *** empty log message ***
22057
22058 1993-07-04 Richard Stallman <rms@gnu.org>
22059
22060 * src/bison.s1: *** empty log message ***
22061
22062 1993-07-04 Richard Stallman <rms@gnu.org>
22063
22064 * bison.simple: *** empty log message ***
22065
22066 1993-06-26 David J. MacKenzie <djm@gnu.org>
22067
22068 * src/getargs.c: entered into RCS
22069
22070 1993-06-26 David J. MacKenzie <djm@gnu.org>
22071
22072 * doc/bison.texinfo: *** empty log message ***
22073
22074 * doc/bison.1: New file.
22075
22076 1993-06-25 Richard Stallman <rms@gnu.org>
22077
22078 * src/getargs.c: New file.
22079
22080 1993-06-16 Richard Stallman <rms@gnu.org>
22081
22082 * src/bison.s1: *** empty log message ***
22083
22084 1993-06-16 Richard Stallman <rms@gnu.org>
22085
22086 * bison.simple: *** empty log message ***
22087
22088 1993-06-03 Richard Stallman <rms@gnu.org>
22089
22090 * src/bison.s1: New file.
22091
22092 1993-06-03 Richard Stallman <rms@gnu.org>
22093
22094 * doc/bison.texinfo: *** empty log message ***
22095
22096 1993-06-03 Richard Stallman <rms@gnu.org>
22097
22098 * bison.simple: New file.
22099
22100 1993-05-19 Richard Stallman <rms@gnu.org>
22101
22102 * doc/bison.texinfo: New file.
22103
22104 1993-05-07 Noah Friedman <friedman@gnu.org>
22105
22106 * Makefile.in: *** empty log message ***
22107
22108 1993-04-28 Noah Friedman <friedman@gnu.org>
22109
22110 * src/reader.c: *** empty log message ***
22111
22112 1993-04-23 Noah Friedman <friedman@gnu.org>
22113
22114 * src/alloc.h: entered into RCS
22115
22116 1993-04-20 David J. MacKenzie <djm@gnu.org>
22117
22118 * src/version.c: *** empty log message ***
22119
22120 * src/files.c, src/allocate.c:
22121 entered into RCS
22122
22123 * src/reader.c: *** empty log message ***
22124
22125 * src/lex.c: entered into RCS
22126
22127 * src/conflicts.c: New file.
22128
22129 * src/symtab.c: entered into RCS
22130
22131 * src/alloc.h: New file.
22132
22133 * src/LR0.c: entered into RCS
22134
22135 1993-04-18 Noah Friedman <friedman@gnu.org>
22136
22137 * src/reader.c: New file.
22138
22139 * src/version.c: *** empty log message ***
22140
22141 1993-04-18 Noah Friedman <friedman@gnu.org>
22142
22143 * Makefile.in: *** empty log message ***
22144
22145 1993-04-17 Noah Friedman <friedman@gnu.org>
22146
22147 * Makefile.in: *** empty log message ***
22148
22149 1993-04-15 Richard Stallman <rms@gnu.org>
22150
22151 * src/main.c, src/files.c:
22152 New file.
22153
22154 1993-04-15 Noah Friedman <friedman@gnu.org>
22155
22156 * configure.in: entered into RCS
22157
22158 * configure.in: *** empty log message ***
22159
22160 * configure.in: New file.
22161
22162 1993-04-14 Richard Stallman <rms@gnu.org>
22163
22164 * Makefile.in: New file.
22165
22166 1993-04-13 Richard Stallman <rms@gnu.org>
22167
22168 * src/version.c: New file.
22169
22170 1993-03-25 Richard Stallman <rms@gnu.org>
22171
22172 * src/output.c: entered into RCS
22173
22174 1992-09-25 Richard Stallman <rms@gnu.org>
22175
22176 * configure.bat: entered into RCS
22177
22178 1992-06-22 Richard Stallman <rms@gnu.org>
22179
22180 * src/vmsgetargs.c: entered into RCS
22181
22182 1992-06-22 Richard Stallman <rms@gnu.org>
22183
22184 * doc/bison.rnh: entered into RCS
22185
22186 1992-04-20 David J. MacKenzie <djm@gnu.org>
22187
22188 * README: entered into RCS
22189
22190 1992-01-22 Richard Stallman <rms@gnu.org>
22191
22192 * src/machine.h: entered into RCS
22193
22194 1991-12-21 Richard Stallman <rms@gnu.org>
22195
22196 * src/lalr.c, src/closure.c:
22197 entered into RCS
22198
22199 1991-12-20 Richard Stallman <rms@gnu.org>
22200
22201 * src/state.h: entered into RCS
22202
22203 1991-12-18 Richard Stallman <rms@gnu.org>
22204
22205 * src/print.c, src/nullable.c, src/derives.c:
22206 entered into RCS
22207
22208 1991-11-03 David J. MacKenzie <djm@gnu.org>
22209
22210 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22211 entered into RCS
22212
22213 1988-09-09 Richard Stallman <rms@gnu.org>
22214
22215 * src/bison.hairy: entered into RCS
22216
22217 1987-12-16 Richard Stallman <rms@gnu.org>
22218
22219 * REFERENCES: entered into RCS
22220
22221
22222 -----
22223
22224 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22225 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22226 Free Software Foundation, Inc.
22227
22228 Copying and distribution of this file, with or without
22229 modification, are permitted provided the copyright notice and this
22230 notice are preserved.