]> git.saurik.com Git - bison.git/blob - ChangeLog
Remove tests/Makefile.am.
[bison.git] / ChangeLog
1 2008-11-15 Akim Demaille <demaille@gostai.com>
2
3 Remove tests/Makefile.am.
4 * tests/Makefile.am: Rename as...
5 * tests/local.mk: this.
6 * Makefile.am, configure.ac: Adjust.
7 * Makefile.am (DISTCLEANFILES): Define.
8 (maintainer-check, maintainer-xml-check, maintainer-push-check):
9 Remove, we no longer need to bounce to the real targets.
10
11 2008-11-15 Akim Demaille <demaille@gostai.com>
12
13 Comment changes.
14
15 2008-11-15 Akim Demaille <demaille@gostai.com>
16
17 djgpp/local.mk.
18 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
19 * djgpp/local.mk: this new file.
20
21 2008-11-15 Akim Demaille <demaille@gostai.com>
22
23 Remove doc/Makefile.am.
24 * doc/Makefile.am: Rename as...
25 * doc/local.mk: this.
26 Adjust paths
27 * Makefile.am, configure.ac: Adjust.
28 * Makefile.am (MOSTLYCLEANFILES): New.
29 * src/local.mk: Adjust.
30
31 2008-11-15 Akim Demaille <demaille@gostai.com>
32
33 Move sc_tight_scope into maint.mk.
34 It does not work, and I don't know how it was supposed to work: it seems
35 to be looking for sources in the build tree. I just moved it at a better
36 place, fixing it is still required.
37
38 * src/local.mk (echo): Remove.
39 (sc_tight_scope): Move to...
40 * maint.mk: here.
41
42 2008-11-15 Akim Demaille <demaille@gostai.com>
43
44 Regen.
45 * src/parse-gram.h, src/parse-gram.h: Regen.
46
47 2008-11-15 Akim Demaille <demaille@gostai.com>
48
49 Remove src/Makefile.am.
50 * src/Makefile.am: Rename as...
51 * src/local.mk: this.
52 Prefix all the paths with src/.
53 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
54 (AM_CPPFLAGS): Find find in builddir/src.
55 (YACC): Move the flags into...
56 (AM_YFLAGS): here.
57 * maint.mk (sc_tight_scope): Disable.
58 It used to bounce to the version in src/Makefile.am which is now
59 part of this very Makefile.
60 * Makefile.am, configure.ac: Adjust.
61 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
62 include "..." to find files "here": we are no longer in src/, so
63 qualify the includes with src/.
64 * doc/Makefile.am (PREPATH): No longer include the top_builddir
65 prefix.
66 (.x.1): Adjust to be able to create src/foo from the top level
67 Makefile, instead of going bounce to src/Makefile the creation of
68 foo.
69
70 2008-11-15 Akim Demaille <demaille@gostai.com>
71
72 Remove useless variable.
73 * doc/Makefile.am (srcsrcdir): Remove.
74
75 2008-11-15 Akim Demaille <demaille@gostai.com>
76
77 Remove data/Makefile.am.
78 * data/Makefile.am: Rename as...
79 * data/local.mk: this.
80 Adjust paths.
81 * Makefile.am, configure.ac: Adjust.
82
83 2008-11-15 Akim Demaille <demaille@gostai.com>
84
85 Remove etc/Makefile.am.
86 * etc/Makefile.am: Rename as...
87 * etc/local.mk: this.
88 Adjust.
89 * Makefile.am, configure.ac: Adjust.
90
91 2008-11-15 Akim Demaille <demaille@gostai.com>
92
93 Remove examples/local.mk.
94 examples/calc++/Makefile.am might be interesting to keep as is, since
95 it is an example in itself.
96
97 * examples/Makefile.am: Rename as...
98 * examples/local.mk: this.
99 Adjust.
100 * Makefile.am, configure.ac: Adjust.
101
102 2008-11-15 Akim Demaille <demaille@gostai.com>
103
104 Remove build-aux/Makefile.am.
105 Recursive Makefiles are really way too slow, let's get rid of some of
106 them.
107
108 * build-aux/Makefile.am: Rename as...
109 * build-aux/local.mk: this.
110 Adjust paths.
111 * Makefile.am, configure.ac: Adjust.
112
113 2008-11-15 Akim Demaille <demaille@gostai.com>
114
115 Provide convenience constructors for locations and positions.
116 * data/location.cc (position::position): Accept file, line and
117 column as arguments with default values.
118 Always qualify initial line and column literals as unsigned.
119 (location::location): Provide convenience constructors.
120
121 2008-11-15 Akim Demaille <demaille@gostai.com>
122
123 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each token type.
124 Using template buys us nothing, and makes it uselessly complex to
125 construct a symbol. Besides, it could not be generalized to other
126 languages, while make_FOO would work in C/Java etc.
127
128 * data/lalr1.cc (b4_symbol_): New.
129 (b4_symbol): Use it.
130 (b4_symbol_constructor_declaration_)
131 (b4_symbol_constructor_definition_): Instead of generating
132 specializations of an overloaded template function, just generate
133 several functions whose names are forged from the token names
134 without the token.prefix.
135 (b4_symbol_constructor_declarations): Generate them for all the
136 symbols, not just by class of symbol type, now that instead of
137 specializing a function template by the token, we generate a
138 function named after the token.
139 (b4_symbol_constructor_specialization_)
140 (b4_symbol_constructor_specializations): Remove.
141 * etc/bench.pl.in: Adjust to this new API.
142
143 2008-11-13 Akim Demaille <demaille@gostai.com>
144
145 %define token.prefix.
146 Provide a means to add a prefix to the name of the tokens as output in the
147 generated files. Because of name clashes, it is good to have such a
148 prefix such as TOK_ that protects from names such as EOF, FILE etc.
149 But it clutters the grammar itself.
150
151 * data/bison.m4 (token.prefix): Empty by default.
152 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
153 * data/lalr1.cc (b4_symbol): Ditto.
154
155 2008-11-13 Akim Demaille <demaille@gostai.com>
156
157 Compute at M4 time some of the subtractions.
158 * data/lalr1.cc (b4_substract): New.
159 (b4_rhs_data): Use it.
160
161 2008-11-13 Akim Demaille <demaille@gostai.com>
162
163 symbol::token.
164 This is allows the user to get the type of a token return by
165 yylex.
166
167 * data/lalr1.cc (symbol::token): New.
168 (yytoknum_): Define when %define lex_symbol, independently of
169 %debug.
170 (yytoken_number_): Move into...
171 (symbol::token): here, since that's the only use.
172 The other one is YYPRINT which was not officially supported
173 by lalr1.cc, and anyway it did not work since YYPRINT uses this
174 array under a different name (yytoknum).
175
176 2008-11-13 Akim Demaille <demaille@gostai.com>
177
178 YYERRCODE.
179 * TODO (YYERRCODE): Mention the case of $undef.
180
181 2008-11-13 Akim Demaille <demaille@gostai.com>
182
183 TODO: YYPRINT.
184 * TODO (YYPRINT): New.
185
186 2008-11-13 Akim Demaille <demaille@gostai.com>
187
188 Comment changes.
189 * data/lalr1.cc, data/yacc.c: Fix the description of the
190 yytranslate and yytoknum tables.
191
192 2008-11-13 Akim Demaille <demaille@gostai.com>
193
194 Define make_symbol in the header.
195 To reach good performances these functions should be inlined (yet this is
196 to measure precisely). To this end they must be available to the caller.
197
198 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
199 location_type with the class name.
200 Since will now be output in the header, declare "inline".
201 No longer use b4_symbol_constructor_specializations, but
202 b4_symbol_constructor_definitions in the header.
203 Don't call it in the *.cc file.
204
205 2008-11-13 Akim Demaille <demaille@gostai.com>
206
207 Define yytranslate in the header for lex_symbol.
208 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
209 into the header file when using %define lex_symbol.
210 (yytranslate_): Declare inline.
211
212 2008-11-13 Akim Demaille <demaille@gostai.com>
213
214 Define the constructors of symbol_type in b4_symbol_constructor_definitions.
215 The constructors are called by the make_symbol functions, which a
216 forthcoming patch will move elsewhere. Hence the interest of putting them
217 together.
218
219 The stack_symbol_type does not need to be moved, it is used only by the
220 parser.
221
222 * data/lalr1.cc: Move symbol_type and symbol_base_type
223 constructors into...
224 (b4_symbol_constructor_definitions): here.
225 Adjust.
226
227 2008-11-13 Akim Demaille <demaille@gostai.com>
228
229 Make it easier to move the definition of yytranslate_.
230 Forthcoming changes will make it possible to use yytranslate_
231 from outside the parser implementation file.
232
233 * data/lalr1.cc (b4_yytranslate_definition): New.
234 Use it.
235
236 2008-11-13 Akim Demaille <demaille@gostai.com>
237
238 Remove useless class specification.
239 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
240 to refer to the class name to use a type defined by the class for
241 arguments of member functions.
242
243 2008-11-13 Akim Demaille <demaille@gostai.com>
244
245 Finer input type for yytranslate.
246 This patch is debatable: the tradition expects yylex to return an int
247 which happens to correspond to token_number (which is an enum). This
248 allows for instance to return characters (such as '*' etc.). But this
249 goes against the stronger typing I am trying to have with the new
250 lex interface which return a symbol_type. So in this case, feed
251 yytranslate_ with a token_type.
252
253 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
254 expect a token_type.
255
256 2008-11-13 Akim Demaille <demaille@gostai.com>
257
258 Honor lex-params in %define lex_symbol mode.
259 * data/lalr1.cc: Use b4_lex_param.
260
261 2008-11-13 Akim Demaille <demaille@gostai.com>
262
263 Simplify names.
264 * src/output.c (symbol_definitions_output): Rename symbol
265 attributes type_name and has_type_name as type and has_type.
266 * data/lalr1.cc: Adjust uses.
267
268 2008-11-13 Akim Demaille <demaille@gostai.com>
269
270 Use b4_type_names for the union type.
271 The union used to compute the size of the variant used to iterate over the
272 type of all the symbols, with a lot of redundancy. Now iterate over the
273 lists of symbols having the same type-name.
274
275 * data/lalr1.cc (b4_char_sizeof_): New.
276 (b4_char_sizeof): Use it.
277 Adjust to be called with a list of numbers instead of a single
278 number.
279 Adjust its caller for new-line issues.
280
281 2008-11-13 Akim Demaille <demaille@gostai.com>
282
283 Define the "identifier" of a symbol.
284 Symbols may have several string representations, for instance if they
285 have an alias. What I call its "id" is a string that can be used as
286 an identifier. May not exist.
287
288 Currently the symbols which have the "tag_is_id" flag set are those that
289 don't have an alias. Look harder for the id.
290
291 * src/output.c (is_identifier): Move to...
292 * src/symtab.c (is_identifier): here.
293 * src/symtab.h, src/symtab.c (symbol_id_get): New.
294 * src/output.c (symbol_definitions_output): Use it to define "id"
295 and "has_id".
296 Remove the definition of "tag_is_id".
297 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
298 "tag_is_id" were used to produce code.
299 We still use "tag" for documentation.
300
301 2008-11-11 Akim Demaille <demaille@gostai.com>
302
303 Locations are no longer required by lalr1.cc.
304 * data/lalr1.cc (_b4_args, b4_args): New.
305 Adjust all uses of locations to make them optional.
306 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
307 (AT_CHECK_NAMESPACE): Check the use of locations.
308 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
309 without locations with lalr1.cc.
310 Test these cases.
311 * tests/output.at: Check lalr1.cc with and without location
312 support.
313 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
314 Don't use locations.
315
316 2008-11-11 Akim Demaille <demaille@gostai.com>
317
318 AT_FULL_COMPILE.
319 * tests/local.at (AT_FULL_COMPILE): New.
320 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
321
322 2008-11-11 Akim Demaille <demaille@gostai.com>
323
324 Support parens in calc++.
325 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
326 * examples/calc++/test (run): Check the expected output.
327 Adjust callers.
328 Check parens too.
329
330 2008-11-11 Akim Demaille <demaille@gostai.com>
331
332 Simplify lalr1.cc since %defines is mandatory.
333 * data/lalr1.cc: Remove useless calls to b4_defines_if.
334
335 2008-11-11 Akim Demaille <demaille@gostai.com>
336
337 TODO: yyfmt.
338 * TODO (yysyntax_error): New item.
339
340 2008-11-11 Akim Demaille <demaille@gostai.com>
341
342 Prefer M4 to CPP.
343 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
344 YYERROR_VERBOSE.
345
346 2008-11-11 Akim Demaille <demaille@gostai.com>
347
348 Support i18n of the parse error messages.
349 * TODO (lalr1.cc/I18n): Remove.
350 * data/lalr1.cc (yysyntax_error_): Support the translation of the
351 error messages, as done in yacc.c.
352 Stay within the yy* pseudo namespace.
353
354 2008-11-11 Akim Demaille <demaille@gostai.com>
355
356 More TODO.
357 * TODO (single stack, yysyntax_error): New.
358
359 2008-11-11 Akim Demaille <demaille@gostai.com>
360
361 Make it possible to return a symbol_type from yylex.
362 * data/lalr1.cc (b4_lex_symbol_if): New.
363 (parse): When lex_symbol is defined, expected yylex to return the
364 complete lookahead.
365 * etc/bench.pl.in (generate_grammar_list): Extend to support this
366 yylex interface.
367 (bench_variant_parser): Exercise it.
368
369 2008-11-11 Akim Demaille <demaille@gostai.com>
370
371 Remove useless bench case.
372 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
373 no longer used.
374
375 2008-11-11 Akim Demaille <demaille@gostai.com>
376
377 Improve display of directives.
378 * etc/bench.pl.in (parse_term): Don't add useless eol.
379
380 2008-11-11 Akim Demaille <demaille@gostai.com>
381
382 Use string_cast in the bench.
383 * etc/bench.pl.in (generate_grammar_list): Define and use
384 string_cast.
385
386 2008-11-11 Akim Demaille <demaille@gostai.com>
387
388 Replace yychar with a Boolean.
389 * data/lalr1.cc (parse::yychar): Replace by...
390 (parse::yyempty): this.
391
392 2008-11-11 Akim Demaille <demaille@gostai.com>
393
394 Factor the tables.
395 * TODO: New item.
396
397 2008-11-11 Akim Demaille <demaille@gostai.com>
398
399 Let yytranslate handle the eof case.
400 * data/lalr1.cc (yytranslate_): Handle the EOF case.
401 Adjust callers.
402 No longer expect yychar to be equal to yyeof_, rather, test the
403 lookahead's (translated) kind.
404
405 2008-11-11 Akim Demaille <demaille@gostai.com>
406
407 yychar cannot be empty in yyerrlab.
408 * TODO (yychar == yyempty_): New.
409 * data/lalr1.cc: Remove the handling of this case.
410 This eases forthcoming changes related to yychar and yytranslate.
411
412 2008-11-11 Akim Demaille <demaille@gostai.com>
413
414 Bench: syntactic sugar for %define/#define.
415 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
416 (&bench_push_parser, bench_variant_parser): Use this feature.
417 (&eat): New.
418 Use it.
419
420 2008-11-11 Akim Demaille <demaille@gostai.com>
421
422 Less memory pressure on the "list" bench.
423 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
424 the values, to limit memory pressure.
425
426 2008-11-11 Akim Demaille <demaille@gostai.com>
427
428 Introduce make_symbol.
429 make_symbol provides a means to construct a full symbol (kind, value,
430 location) in a single shot. It is meant to be a Symbol constructor,
431 parameterized by the symbol kind so that overloading would prevent
432 incorrect kind/value pairs. Unfortunately parameterized constructors do
433 not work well in C++ (unless the parameter also appears as an argument,
434 which is not acceptable), hence the use of a function instead of a
435 constructor.
436
437 * data/lalr1.cc (b4_symbol_constructor_declaration_)
438 (b4_symbol_constructor_declarations)
439 (b4_symbol_constructor_specialization_)
440 (b4_symbol_constructor_specializations)
441 (b4_symbol_constructor_definition_)
442 (b4_symbol_constructor_definitions): New.
443 Use them where appropriate to generate declaration, declaration of
444 the specializations, and implementations of the templated
445 overloaded function "make_symbol".
446 (variant::variant): Always define a default ctor.
447 Also provide a copy ctor.
448 (symbol_base_type, symbol_type): New ctor overloads for value-less
449 symbols.
450 (symbol_type): Now public, so that functions such as yylex can use
451 it.
452
453 2008-11-11 Akim Demaille <demaille@gostai.com>
454
455 Inform m4 whether a tag is a valid id.
456 * src/output.c (is_identifier): New.
457 (symbol_definitions_output): Use it to define tag_is_id.
458 But maybe this should be done at m4 level?
459
460 2008-11-11 Akim Demaille <demaille@gostai.com>
461
462 Test 214 was failing: it greps with a pattern containing [ ]*
463 which obviously meant to catch spaces and tabs, but contained only
464 spaces. Tabulations in sources are a nuisance, so to simplify the
465 matter, get rid of all the tabulations in the Java sources. The
466 other skeletons will be treated equally later.
467
468 * data/java.m4, data/lalr1.java: Untabify.
469 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
470 tabulations are no longer generated.
471
472 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
473
474 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
475 * configure.ac: Adjust usage.
476 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
477 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
478 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
479
480 2008-11-10 Di-an Jan <dianj@freeshell.org>
481
482 Workaround Java's ``code too large'' problem for parser tables
483 in most cases, by using one function per initialization.
484 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
485 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
486 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
487 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
488 (yytname_): Use b4_typed_parser_table.
489 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
490 ``code too large'' error.
491
492 2008-11-10 Di-an Jan <dianj@freeshell.org>
493
494 * NEWS: Document them.
495
496 General Java skeleton improvements.
497 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
498 using gcj < 4.3 in the testsuite, according to comments in
499 gnulib/m4/javacomp.m4.
500 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
501 location_type, position_type): Remove extraneous brackets from
502 b4_percent_define_default.
503 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
504 m4_define and m4_define_default.
505 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
506 which marks the end of user code with appropriate syncline, like all
507 the other skeletons.
508 (b4_user_post_prologue): Add. Don't silently drop.
509 (yylex): Remove.
510 (parse): Inline yylex.
511 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
512 (%{...%}): Fix typo of %code imports.
513 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
514
515 Support annotations on parser class with %define annotations.
516 * data/lalr1.java (annotations): Add to parser class modifier.
517 * doc/bison.texinfo (Java Parser Interface): Document
518 %define annotations.
519 (Java Declarations Summary): Document %define annotations.
520 * tests/java.at (Java parser class modifiers): Test annotations.
521
522 Do not generate code for %error-verbose unless requested.
523 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
524 Make private. Make conditional on %error-verbose.
525 (getErrorVerbose, setErrorVerbose): New.
526 (yytnamerr_): Make conditional on %error-verbose.
527 (yysyntax_error): Make some code conditional on %error-verbose.
528 * doc/bison.texinfo (Java Bison Interface): Remove the parts
529 about %error-verbose having no effect.
530 (getErrorVerbose, setErrorVerbose): Document.
531
532 Move constants for token names to Lexer interface.
533 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
534 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
535 (parse): Qualify EOF to Lexer.EOF.
536 * doc/bison.texinfo (Java Parser Interface): Move documentation of
537 EOF and token names to Java Lexer Interface.
538 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
539
540 Make yyerror public.
541 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
542 (yyerror): Change to public. Add Javadoc comments. Use longer
543 parameter names. Make the body rather than the declarator
544 conditional on %locations.
545 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
546
547 Allow user to add code to the constructor with %code init.
548 * data/java.m4 (b4_init_throws): New, for %define init_throws.
549 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
550 Add %code init to the front of the constructor body.
551 * doc/bison.texinfo (YYParser.YYParser): Document %code init
552 and %define init_throws.
553 (Java Declarations Summary): Document %code init and
554 %define init_throws.
555 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
556 (Java constructor init and init_throws): Add tests.
557
558 2008-11-10 Akim Demaille <demaille@gostai.com>
559
560 Update TODO.
561 * TODO (-D): is implemented.
562 (associativity): Same precedence must have the same associativity.
563 For instance, how can a * b / c be parsed if * is %left and / is
564 %right?
565 (YYERRORCODE, YYFAIL, YYBACKUP): New.
566
567 2008-11-10 Akim Demaille <demaille@gostai.com>
568
569 Formatting changes.
570
571 2008-11-10 Akim Demaille <demaille@gostai.com>
572
573 More information about the symbols.
574 * src/output.c (type_names_output): Document all the symbols,
575 including those that don't have a type-name.
576 (symbol_definitions_output): Define "is_token" and
577 "has_type_name".
578 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
579 type-name, now that they are defined too in b4_type_names.
580
581 2008-11-10 Akim Demaille <demaille@gostai.com>
582
583 Regen.
584
585 2008-11-10 Akim Demaille <demaille@gostai.com>
586
587 Make parser::yytranslate static.
588 Small speedup (1%) on the list grammar. And makes yytranslate_ available
589 in non member functions.
590
591 * data/lalr1.cc (yytranslate_): Does not need to be a instance
592 function.
593
594 2008-11-10 Akim Demaille <demaille@gostai.com>
595
596 Avoid trailing spaces.
597 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
598 * data/lalr1.cc: Don't indent before rule and symbol actions, as
599 they can be empty, and anyway this incorrectly indents the first
600 action.
601
602 2008-11-10 Akim Demaille <demaille@gostai.com>
603
604 Comment changes.
605
606 2008-11-10 Akim Demaille <demaille@gostai.com>
607
608 Use "enum" for integral constants.
609 This is just nicer to read, I observed no speedup.
610
611 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
612 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
613 (yyuser_token_number_max_, yyundef_token_): Move into...
614 (yytranslate_): here.
615
616 2008-11-10 Akim Demaille <demaille@gostai.com>
617
618 Shortcuts in bench directives.
619 * etc/bench.pl.in (parse_dirs): New.
620 Use it.
621 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
622 Create the benches in "benches/".
623
624 2008-11-10 Akim Demaille <demaille@gostai.com>
625
626 Formatting changes.
627 * data/lalr1.cc: here.
628
629 2008-11-10 Akim Demaille <demaille@gostai.com>
630
631 Adjust verbose message to using emacs.
632 * etc/bench.pl.in: Inform compilation-mode when we change the
633 directory.
634 (generate_grammar_list): Recognize %define "variant" in addition
635 to %define variant.
636
637 2008-11-10 Akim Demaille <demaille@gostai.com>
638
639 Classify symbols by type-name.
640 * src/uniqstr.h (UNIQSTR_CMP): New.
641 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
642 (type_names_output): New.
643 (muscles_output): Use it.
644 * data/lalr1.cc (b4_symbol_action_): Remove.
645 (b4_symbol_case_, b4_type_action_): New.
646 Adjust uses of b4_symbol_action_ to use b4_type_action_.
647
648 2008-11-10 Akim Demaille <demaille@gostai.com>
649
650 Change the handling of the symbols in the skeletons.
651 Before we were using tables which lines were the symbols and which
652 columns were things like number, tag, type-name etc. It is was
653 difficult to extend: each time a column was added, all the numbers had
654 to be updated (you asked for colon $2, not for "tag"). Also, it was
655 hard to filter these tables when only a subset of the symbols (say the
656 tokens, or the nterms, or the tokens that have and external number
657 *and* a type-name) was of interest.
658
659 Now instead of monolithic tables, we define one macro per cell. For
660 instance "b4_symbol(0, tag)" is a macro name which contents is
661 self-decriptive. The macro "b4_symbol" provides easier access to
662 these cells.
663
664 * src/output.c (type_names_output): Remove.
665 (symbol_numbers_output, symbol_definitions_output): New.
666 (muscles_output): Call them.
667 (prepare_symbols): Define b4_symbols_number.
668
669 2008-11-10 Akim Demaille <demaille@gostai.com>
670
671 --trace=muscles
672 * src/getargs.h, src/getargs.c (trace_muscle): New.
673 (trace_types, trace_args): Support it.
674 * src/output.c (output_skeleton): Use it.
675
676 2008-11-10 Akim Demaille <demaille@gostai.com>
677
678 muscles_output.
679 * src/output.c (muscles_output): New, extracted from...
680 (output_skeleton): here.
681 Adjust.
682
683 2008-11-10 Akim Demaille <demaille@gostai.com>
684
685 Formatting changes.
686
687 2008-11-10 Akim Demaille <demaille@gostai.com>
688
689 Update the variant example.
690 * examples/variant.yy: Formatting changes.
691 One stage build.
692
693 2008-11-10 Akim Demaille <demaille@gostai.com>
694
695 Support constructor with an argument.
696 This improves the "list" bench by 2%.
697
698 * data/lalr1.cc (variant::build): Add an overloaded version with
699 an argument.
700 * tests/c++.at (AT_CHECK_VARIANT): Check it.
701
702 2008-11-10 Akim Demaille <demaille@gostai.com>
703
704 Test variants.
705 * tests/c++.at (AT_CHECK_VARIANTS): New.
706 Use it with and without %define assert.
707
708 2008-11-10 Akim Demaille <demaille@gostai.com>
709
710 Add %precedence support.
711 Unfortunately it is not possible to reuse the %prec directive. This
712 is because to please POSIX, we do not require to end the rules with a
713 semicolon. As a result,
714
715 foo: bar %prec baz
716
717 is ambiguous: either a rule which precedence is that of baz, or a rule,
718 and then a declaration of the precedence of the token baz.
719
720 * doc/bison.texinfo: Document %precedence.
721 (Precedence Only): New.
722 * src/assoc.h, src/assoc.c (precedence_assoc): New.
723 * src/conflicts.c (resolve_sr_conflict): Support it.
724 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
725 Parse it.
726 * tests/calc.at: Use %precedence for NEG.
727 * tests/conflicts.at (%precedence does not suffice)
728 (%precedence suffices): New tests.
729
730 2008-11-09 Akim Demaille <demaille@gostai.com>
731
732 Make benches in a sub dirs.
733 * etc/bench.pl.in ($dir): New.
734 Use it.
735 Check the use of constructors with an argument.
736 (bench_variant_parser): Fix.
737
738 2008-11-09 Akim Demaille <demaille@gostai.com>
739
740 fix eof condition
741
742 2008-11-09 Akim Demaille <demaille@gostai.com>
743
744 Fix --help.
745
746 2008-11-09 Akim Demaille <demaille@gostai.com>
747
748 Require the generation of parse-gram.output.
749 * src/Makefile.am (YACC): Pass --report=all.
750
751 2008-11-09 Akim Demaille <demaille@gostai.com>
752
753 Formatting changes.
754
755 2008-11-09 Akim Demaille <demaille@gostai.com>
756
757 Update TODO.
758 * TODO: Remove obsolete items.
759 Update others.
760
761 2008-11-09 Akim Demaille <demaille@gostai.com>
762
763 Enhance bench.pl.
764 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
765 (@token, $grammar, $bench): New.
766 (generate_grammar_variant): Rename as...
767 (generate_grammar_list): this.
768 (generate_grammar): Adjust.
769 (bench_grammar): Rename as...
770 (bench): this.
771 Use it in the various bench-marking routines.
772 (-b, -g): New options.
773
774 2008-11-09 Akim Demaille <demaille@gostai.com>
775
776 Use a static hierarchy for symbols in the C++ parser.
777 * data/lalr1.cc (symbol_base_type, symbol_type)
778 (stack_symbol_type): Make it a static hierarchy.
779 Adjust dependencies.
780
781 2008-11-09 Akim Demaille <demaille@gostai.com>
782
783 bench.pl -d, --directive.
784 * etc/bench.pl.in (@directive): New.
785 (&bench_grammar): Use it.
786 (&bench_list_grammar): New, to provide access to the "variant"
787 grammar.
788 Use it.
789 (getopts): Support -d, --directive.
790
791 2008-11-09 Akim Demaille <demaille@gostai.com>
792
793 Use inline for small operations.
794 * data/lalr1.cc (symbol_base_type, symbol_type)
795 (stack_symbol_type): Declare constructor and other operations as
796 inline.
797 (yy_destroy_): Inline.
798
799 2008-11-09 Akim Demaille <demaille@gostai.com>
800
801 Introduce a hierarchy for symbols.
802 * data/lalr1.cc (symbol_base_type, symbol_type): New.
803 (data_type): Rename as...
804 (stack_symbol_type): this.
805 Derive from symbol_base_type.
806 (yy_symbol_value_print_): Merge into...
807 (yy_symbol_print_): this.
808 Rename as...
809 (yy_print_): this.
810 (yydestruct_): Rename as...
811 (yy_destroy_): this.
812 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
813 (parser::parse): yyla is now of symbol_type.
814 Use its type member instead of yytoken.
815
816 2008-11-09 Akim Demaille <demaille@gostai.com>
817
818 Rename data_type and stack_symbol_type.
819 * data/lalr1.cc (data_type): Rename as...
820 (stack_symbol_type): this.
821
822 2008-11-09 Akim Demaille <demaille@gostai.com>
823
824 Handle semantic value and location together.
825 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
826 yydata.value and yydata.location.
827 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
828 (YY_SYMBOL_PRINT): Now take semantic value and location as a
829 single arg.
830 Adjust all callers.
831 (yydestruct_): New overload for a stack symbol.
832
833 2008-11-09 Akim Demaille <demaille@gostai.com>
834
835 Push a complete symbol, not connected parts.
836 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
837 state, value and location.
838 Adjust callers.
839
840 2008-11-09 Akim Demaille <demaille@gostai.com>
841
842 Agregate yylval and yylloc.
843 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
844 (parser::yyla): this.
845
846 2008-11-09 Akim Demaille <demaille@gostai.com>
847
848 Rely on the state stack to display reduction traces.
849 To display rhs symbols before a reduction, we used information about the rule
850 reduced, which required the tables yyrhs and yyprhs. Now use rely only on the
851 state stack to get the same information.
852
853 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
854 Use them.
855 (parser::yyrhs_, parser::yyprhs_): Remove.
856 (parser::yy_reduce_print_): Use the state stack.
857
858 2008-11-09 Akim Demaille <demaille@gostai.com>
859
860 Fuse yyval and yyloc into yylhs.
861 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
862 yylhs.
863 (parse): Replace yyval and yyloc with yylhs.value and
864 yylhs.location.
865 After a user action, compute yylhs.state earlier.
866 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
867 fresh error_token.
868
869 2008-11-09 Di-an Jan <dianj@freeshell.org>
870
871 Remove unused variable.
872 * src/output.c (type_names_output): Remove unused variable sep.
873
874 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
875
876 Change tests/output.at quoting.
877 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
878 expanding arguments.
879
880 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
881
882 Don't add a semicolon to actions for %skeleton or %language.
883 It breaks Java test cases as reported by Akim Demaille.
884 * src/scan-code.l: Implement.
885
886 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
887
888 Clean up %skeleton and %language priority implementation.
889 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
890 remove static qualifier because others will soon need to see it.
891 (language_prio): Likewise.
892 (getargs): Use command_line_prio rather than 0.
893 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
894 enum fields.
895 (skeleton_prio): Extern it.
896 (language_prio): Extern it.
897 * src/parse-gram.y: Use grammar_prio rather than 1.
898
899 2008-11-07 Akim Demaille <demaille@gostai.com>
900
901 Moving push traces into yypush_.
902 * data/lalr1.cc (yypush_): Now takes a optional trace message.
903 Adjust all uses.
904
905 2008-11-07 Akim Demaille <demaille@gostai.com>
906
907 The single-stack C++ parser is now the standard one.
908 * data/lalr1.cc: Rename as...
909 * data/lalr1-split.cc: this.
910 * data/lalr1-fusion.cc: Rename as...
911 * data/lalr1.cc: this.
912 * etc/bench.pl.in: Adjust.
913
914 2008-11-07 Akim Demaille <demaille@gostai.com>
915
916 Avoid empty-if warnings.
917 Reported by Quentin Hocquet.
918
919 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
920 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
921
922 2008-11-07 Akim Demaille <demaille@gostai.com>
923
924 Pass command line location to skeleton_arg and language_argmatch.
925 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
926 The location argument is now mandatory.
927 Adjust all dependencies.
928 (getargs): Use command_line_location.
929
930 2008-11-07 Akim Demaille <demaille@gostai.com>
931
932 -D, --define.
933 * src/getargs.c (usage): Document -D.
934 Fix help string for --locations.
935 (command_line_location): New.
936 (short_options, long_options, getargs): Support -D, --define.
937 (getargs): Move -d support at the right place.
938 * doc/bison.texinfo (Bison Options): Update.
939 * tests/input.at (%define, --define): New.
940
941 2008-11-07 Akim Demaille <demaille@gostai.com>
942
943 Initialize the muscle table before parsing the command line.
944 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
945 (getargs): Define file_name.
946 * src/main.c (main): Initialize muscle_tab before calling
947 getargs.
948 * src/muscle_tab.c (muscle_init): No longer define file_name, as
949 its value is not available yet.
950
951 2008-11-07 Akim Demaille <demaille@gostai.com>
952
953 Locations without columns for command line arguments.
954 * src/location.c (location_print): Don't display negative columns.
955 * src/location.h: Document this.
956
957 2008-11-07 Akim Demaille <demaille@gostai.com>
958
959 Fix --help.
960 * src/getargs.c (usage): Fix help string for -W.
961
962 2008-11-07 Akim Demaille <demaille@gostai.com>
963
964 Handle more general types of option arguments.
965 * build-aux/cross-options.pl: The argument ends at the first
966 space, not the first non-symbol character.
967 Use @var for each word appearing the argument description.
968
969 2008-11-07 Akim Demaille <demaille@gostai.com>
970
971 Destroy the variants that remain on the stack in case of error.
972 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
973 destructor.
974 Display the value only if yymsg is nonnull.
975 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
976
977 2008-11-07 Akim Demaille <demaille@gostai.com>
978
979 Add "%define assert" to variants.
980 This is used to help the user catch cases where some value gets
981 ovewritten by a new one. This should not happen, as this will
982 probably leak.
983
984 Unfortunately this uncovered a bug in the C++ parser itself: the
985 lookahead value was not destroyed between two calls to yylex. For
986 instance if the previous lookahead was a std::string, and then an int,
987 then the value of the std::string was correctly taken (i.e., the
988 lookahead was now an empty string), but std::string structure itself
989 was not reclaimed.
990
991 This is now done in variant::build(other&) (which is used to take the
992 value of the lookahead): other is not only stolen from its value, it
993 is also destroyed. This incurs a new performance penalty of a few
994 percent, and union becomes faster again.
995
996 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
997 (b4_variant_if): New.
998 (variant::built): New.
999 Use it whereever the status of the variant changes.
1000 * etc/bench.pl.in: Check the penalty of %define assert.
1001
1002 2008-11-07 Akim Demaille <demaille@gostai.com>
1003
1004 Use "%define variant" in bench.pl.
1005 * etc/bench.pl.in: No longer use the pseudo directive %variants,
1006 just use %define variants.
1007
1008 2008-11-07 Akim Demaille <demaille@gostai.com>
1009
1010 Regen.
1011 * src/parse-gram.h, src/parse-gram.c: Regen.
1012
1013 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1014
1015 Fix user actions without a trailing semicolon.
1016 Reported by Sergei Steshenko at
1017 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1018 * THANKS (Sergei Steshenko): Add.
1019 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1020 * tests/regression.at (Fix user actions without a trailing semicolon):
1021 New test case.
1022
1023 2008-11-04 Akim Demaille <demaille@gostai.com>
1024
1025 Use b4_copyright_years.
1026 * data/yacc.c (b4_copyright_years): New.
1027 Fix its value according to the comments in the file.
1028 Use it and undefine it.
1029
1030 2008-11-04 Akim Demaille <demaille@gostai.com>
1031
1032 Formatting changes.
1033 * data/lalr1-fusion.cc, src/parse-gram.y: here.
1034
1035 2008-11-04 Akim Demaille <demaille@gostai.com>
1036
1037 Formatting changes.
1038 * data/lalr1-fusion.cc: here.
1039
1040 2008-11-04 Akim Demaille <demaille@gostai.com>
1041
1042 Use strict on bench.pl.
1043 * etc/bench.pl.in (&run, &generate_grammar): New.
1044 Rename the grammar generating functions for consistency.
1045 Change the interface so that the list of benches to run is passed
1046 as (optionless) arguments.
1047 (&compile): Use &run.
1048
1049 2008-11-04 Akim Demaille <demaille@gostai.com>
1050
1051 Remove spurious initial empty lines.
1052 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
1053 * data/yacc.c: End the @output lines with an @.
1054
1055 2008-11-04 Akim Demaille <demaille@gostai.com>
1056
1057 Improve the display of sizes.
1058 * etc/bench.p.in: Higher precision.
1059 Sort by decreasing size.
1060
1061 2008-11-04 Akim Demaille <demaille@gostai.com>
1062
1063 Don't memcpy C++ structures.
1064 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
1065 arguments.
1066 (variant::build): New overload for
1067 copy-construction-that-destroys.
1068 (variant::swap): New.
1069 (parser::yypush_): Use it in variant mode.
1070
1071 2008-11-04 Akim Demaille <demaille@gostai.com>
1072
1073 Better defaults for bench.pl.
1074 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
1075 default values.
1076 Adjust &verbose uses.
1077 (-q, --quiet): New.
1078
1079 2008-11-04 Akim Demaille <demaille@gostai.com>
1080
1081 Make variant.yy more complex.
1082 std::list cannot be copied via memcpy, they are more demanding than
1083 std::string. Use one std::list to strengthen the test.
1084
1085 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
1086 Adjust.
1087 Create a list of strings, instead of a single large string.
1088
1089 2008-11-04 Akim Demaille <demaille@gostai.com>
1090
1091 bench.pl --bench.
1092 * etc/bench.pl.in (--bench, $bench): New.
1093
1094 2008-11-04 Akim Demaille <demaille@gostai.com>
1095
1096 Sort methods.
1097 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
1098 Define it after as().
1099
1100 2008-11-04 Akim Demaille <demaille@gostai.com>
1101
1102 Useless parens.
1103 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
1104
1105 2008-11-04 Akim Demaille <demaille@gostai.com>
1106
1107 Issue missing synclines after user actions.
1108 * data/c.m4 (b4_case): Issue synclines on the output file.
1109
1110 2008-11-04 Akim Demaille <demaille@gostai.com>
1111
1112 Remove trailing empty line.
1113 * data/lalr1-fusion.cc: Don't add an empty line after the user's
1114 epilogue.
1115
1116 2008-11-04 Akim Demaille <demaille@gostai.com>
1117
1118 Fix output of copyright years.
1119 * data/bison.m4 (b4_copyright): Fix the indentation of the
1120 copyright year paragraph.
1121 Use b4_copyright_years when no years are given.
1122 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
1123 (b4_copyright_years): New.
1124 Use it.
1125
1126 2008-11-04 Akim Demaille <demaille@gostai.com>
1127
1128 Avoid the spurious initial empty line.
1129 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
1130 the end of @output request to suppress the empty line that
1131 results.
1132
1133 2008-11-04 Akim Demaille <demaille@gostai.com>
1134
1135 Remove parser::rhs_number_type.
1136 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
1137 (yyrhs_): Use b4_table_define.
1138
1139 2008-11-04 Akim Demaille <demaille@gostai.com>
1140
1141 Fix iteration type.
1142 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
1143
1144 2008-11-04 Akim Demaille <demaille@gostai.com>
1145
1146 Factor the declaration of the integer tables.
1147 * data/lalr1-fusion.cc (b4_table_define): New.
1148 Use it.
1149
1150 2008-11-03 Akim Demaille <demaille@gostai.com>
1151
1152 Fix indentation of tables in lalr1.cc
1153 * data/lalr1-fusion.cc: Fix the indentation.
1154
1155 2008-11-03 Akim Demaille <demaille@gostai.com>
1156
1157 Destroy the lhs symbols after reduction.
1158 * data/lalr1-fusion.cc (parse): After the user action, when in
1159 variant mode, destroy the lhs symbols.
1160
1161 2008-11-03 Akim Demaille <demaille@gostai.com>
1162
1163 Simplify yysyntax_error_ use.
1164 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
1165 type, but make it unnamed in the declaration when it is not used.
1166
1167 2008-11-03 Akim Demaille <demaille@gostai.com>
1168
1169 Let yy::variant::build return an lvalue.
1170 * data/lalr1-fusion.cc (variant::build): Return a reference to the
1171 object.
1172
1173 2008-11-03 Akim Demaille <demaille@gostai.com>
1174
1175 Define yy::variant only when needed.
1176 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
1177 used.
1178
1179 2008-11-03 Akim Demaille <demaille@gostai.com>
1180
1181 Bench the three-stack lalr1.cc.
1182 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
1183 one-stack one.
1184
1185 2008-11-03 Akim Demaille <demaille@gostai.com>
1186
1187 Fail on parse error in calc++.
1188 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
1189 status.
1190 * examples/calc++/test ($me, $number, $exit, run): New.
1191 Use them to propagate errors to the exit status.
1192
1193 2008-11-03 Akim Demaille <demaille@gostai.com>
1194
1195 Don't specify the skeleton twice in the example.
1196 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
1197 file does what is needed.
1198
1199 2008-11-03 Akim Demaille <demaille@gostai.com>
1200
1201 bench: Improve output.
1202 * etc/bench.pl.in (bench_grammar): Tune the printf format.
1203
1204 2008-11-03 Akim Demaille <demaille@gostai.com>
1205
1206 bench: check impact of %debug on variants.
1207 * etc/bench.pl.in (variant_grammar): Fix the computation of
1208 $variant.
1209 Generate a grammar file that can work with or without %debug.
1210 Do use the @directive.
1211 (bench_variant_parser): Check impact of %debug.
1212 (@directives): Rename all the occurrences to...
1213 (@directive): this, for consistency.
1214
1215 2008-11-03 Akim Demaille <demaille@gostai.com>
1216
1217 bench: report the size too.
1218 * etc/bench.pl.in ($iterations): Defaults to -3.
1219 (&bench_grammar): Require hireswallclock.
1220 Compute and display the size of the result.
1221 More comments.
1222
1223 2008-11-03 Akim Demaille <demaille@gostai.com>
1224
1225 bench: More use of the verbosity level.
1226 * etc/bench.pl.in ($verbose, &verbose): New.
1227 Use them.
1228 More POD documentation.
1229
1230 2008-11-03 Akim Demaille <demaille@gostai.com>
1231
1232 bench.pl: a command line interface
1233 * etc/bench.pl.in: More doc.
1234 Some fixes in the documentation.
1235 ($cflags, $iterations, &help, &getopt): New.
1236 Use them.
1237 (&variant_grammar): Let the number of stages be 10 times what is
1238 specified.
1239
1240 2008-11-03 Akim Demaille <demaille@gostai.com>
1241
1242 Bench the use of Boost.Variants.
1243 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
1244 New.
1245 (&compile): Be ready to compile C++ parsers.
1246 (&bench_push_parser): Move debug information to the outermost
1247 level.
1248 * THANKS: Add Michiel De Wilde.
1249
1250 2008-11-03 Akim Demaille <demaille@gostai.com>
1251
1252 bench.pl: Pass directives as a list instead of as a string.
1253 * etc/bench.pl.in (&directives): New.
1254 (&triangular_grammar, &calc_grammar): Use it to format the Bison
1255 directives.
1256 (&triangular_grammar): Do use the directives (were ignored).
1257 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
1258 directives.
1259
1260 2008-11-03 Akim Demaille <demaille@gostai.com>
1261
1262 Improve genericity of bench.pl.
1263 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
1264 argument.
1265 (&bench_push_parser): New.
1266 Call it.
1267
1268 2008-11-03 Akim Demaille <demaille@gostai.com>
1269
1270 Add documentation to bench.pl.
1271 * etc/bench.pl.in: Comment changes.
1272
1273 2008-11-03 Akim Demaille <demaille@gostai.com>
1274
1275 Fuse the three stacks into a single one.
1276 In order to make it easy to perform benchmarks to ensure that there are no
1277 performance loss, lalr1.cc is forked into lalr1-fusion.cc. Eventually,
1278 lalr1-fusion.cc will replace lalr1.cc.
1279
1280 Meanwhile, to make sure that lalr1-fusion.cc is correctly exercized by the
1281 test suite, the user must install a symbolic link from lalr1.cc to it.
1282
1283 Instead of having three stacks (state, value, location), use a stack
1284 of triples. This considerably simplifies the code (and it will be
1285 easier not to require locations as currently does the C++ parser),
1286 and also gives a 10% speedup according to etc/bench (probably mainly since
1287 memory allocation is done once instead of three times).
1288
1289 Another motivation is to make it easier to destruct properly
1290 semantic values: now that they are bound to their state (hence
1291 symbol type) it will be easier to call the appropriate destructor.
1292
1293 These changes should probably benefit the C parser too.
1294
1295 * data/lalr1.cc: Copy as... * data/lalr1-fusion.cc: this new
1296 file.
1297 (b4_rhs_value, b4_rhs_location): New definitions overriding those
1298 from c++.m4.
1299 (state_stack_type, semantic_stack_type, location_stack_type)
1300 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
1301 (data_type, stack_type, yystack_): New.
1302 (YYLLOC_DEFAULT, yypush_): Adjust.
1303 (yyerror_range): Now based on data_type, not location_type.
1304
1305 2008-11-03 Akim Demaille <demaille@gostai.com>
1306
1307 Push the state, value, and location at the same time.
1308 This is needed to prepare a forthcoming patch that fuses the three
1309 stacks into one.
1310
1311 * data/lalr1.cc (parser::yypush_): New.
1312 (parser::yynewstate): Change the semantics: instead of arriving to
1313 this label when value and location have been pushed, but yystate
1314 is to be pushed on the state stack, now the three of them must
1315 have been pushed before. yystate still must be the new state.
1316 This allows to use yypush_ everywhere instead of individual
1317 handling of the stacks.
1318
1319 2008-11-03 Akim Demaille <demaille@gostai.com>
1320
1321 Prefer references to pointers.
1322 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
1323 definition to use references instead of pointers.
1324 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
1325 Take the value and location as references.
1326 Adjust callers.
1327
1328 2008-11-03 Akim Demaille <demaille@gostai.com>
1329
1330 stack::size instead of stack::height.
1331 * data/lalr1.cc (stack::height): Rename as...
1332 (stack::size): this.
1333 Fix the output type.
1334 Comment changes.
1335
1336 2008-11-03 Akim Demaille <demaille@gostai.com>
1337
1338 Use variants to support objects as semantic values.
1339 This patch was inspired by work by Michiel De Wilde. But he used Boost
1340 variants which (i) requires Boost on the user side, (ii) is slow, and
1341 (iii) has useless overhead (the parser knows the type of the semantic value
1342 there is no reason to duplicate this information as Boost.Variants do).
1343
1344 This implementation reserves a buffer large enough to store the largest
1345 objects. yy::variant implements this buffer. It was implemented with
1346 Quentin Hocquet.
1347
1348 * src/output.c (type_names_output): New.
1349 (output_skeleton): Invoke it.
1350 * data/c++.m4 (b4_variant_if): New.
1351 (b4_symbol_value): If needed, provide a definition for variants.
1352 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
1353 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
1354 (b4_char_sizeof, yy::variant): New.
1355 (parser::parse): If variants are requested, define
1356 parser::union_type, parser::variant, change the definition of
1357 semantic_type, construct $$ before running the user action instead
1358 of performing a default $$ = $1.
1359 * examples/variant.yy: New.
1360 Based on an example by Michiel De Wilde.
1361
1362 2008-11-03 Akim Demaille <demaille@gostai.com>
1363
1364 Parameterize the extraction of semantic values.
1365 To make future changes easier, no longer rely on ".TYPE" being the
1366 way to get a semantic value.
1367
1368 * data/c.m4 (b4_symbol_value): New.
1369 Use it.
1370 * data/c++.m4, data/yacc.c: Use it.
1371 * data/glr.c: Use b4_symbol_value.
1372 (b4_rhs_data): New.
1373 Use it.
1374
1375 2008-11-03 Akim Demaille <demaille@gostai.com>
1376
1377 Prepare easier M4 changes.
1378 * data/lalr1.cc: Use escaped [] instead of literals to prepare
1379 future changes.
1380
1381 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1382
1383 Initiate further development.
1384 * NEWS: Create an empty section for new entries.
1385 * gnulib: Update submodule to HEAD.
1386
1387 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1388
1389 * NEWS: Version 2.4.
1390
1391 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1392
1393 Prepare for next release.
1394 * NEWS: Briefly mention changes since 2.3b.
1395 * README: Say GNU m4 1.4.6, which we've been requiring in release
1396 announcements already, not 1.4.3, which breaks the build.
1397
1398 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1399
1400 Say %language is experimental.
1401 We're thinking of extending it's effect on output file naming. See the
1402 thread at
1403 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1404 * NEWS: Say it's experimental.
1405 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1406 recommend it over %skeleton for now.
1407 (Bison Options): Likewise.
1408 (C++ Bison Interface): Use %skeleton not %language.
1409 (Calc++ Parser): Use %skeleton not %language.
1410 * src/getargs.c (usage): Say it's experimental.
1411
1412 2008-11-01 Di-an Jan <dianj@freeshell.org>
1413 Paolo Bonzini <bonzini@gnu.org>
1414
1415 Support all Java parser class modifiers.
1416 * data/java.m4 (b4_percent_define_get3): New.
1417 (b4_final_if, b4_strictfp_if): New.
1418 * data/lalr1.java (final, strictfp, extends, implements): Support.
1419 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1420 documentation.
1421 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1422 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1423 (AT_CHECK_JAVA_GREP): New.
1424 (Java parser class modifiers): New test.
1425 (Java parser class extends and implements): New test.
1426
1427 Model exception propagation better with throws and lex_throws.
1428 * data/java.m4 (b4_list2): New.
1429 (throws): Change default.
1430 * data/lalr1.java (yyaction): Add throws.
1431 (parse): Add lex_throws in addition to throws.
1432 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1433 * tests/java.at (Java throws specifications): New test.
1434
1435 Improve documentation for Java parsers.
1436 * doc/bison.texinfo (Java Parsers): Add subsections.
1437 Don't quote first argument of %define.
1438 (Java Bison Interface): Document output files. Move documentation
1439 of parser class and merge into Java Parser Interface. Document
1440 features that error out. Document directives with no effect.
1441 Move note about Javadoc higher.
1442 (Java Semantic Values): Explicitly mention stype.
1443 Document that generic types cannot be used.
1444 (Java Location Values): Use @deftypeivar. Document constructors.
1445 Correct return value for toString.
1446 (Java Parser Interface): List undocumented constants/fields.
1447 Move documentation of fields added by %parse-param closer to list
1448 of members. Document that token names are added as fields.
1449 Document constructors accurately. Remove error method.
1450 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1451 Interface. Describe %code lexer and yylex accutately.
1452 Remove documentation that does not match the code.
1453 (Java Action Features): New.
1454 (Java Differences): Add reference. Add item on semantic values.
1455 Add note about @{ ... @}. Clarify %% epilogue placement.
1456 (Java Declarations Summary): New.
1457
1458 Fix Java skeleton.
1459 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1460 (b4_remove_comma): Quote test argument.
1461 (b4_identification): Remove "bison" field.
1462 * tests/java.at (Java parser class and package names): New test.
1463 (Java %parse-param and %lex-param): New test.
1464 (Java stype, position_class and location_class): New test.
1465
1466 2008-10-31 Di-an Jan <dianj@freeshell.org>
1467
1468 * data/lalr1.jave: Update copyright years.
1469 (YYParser): Correct name of "generated from" file in Javadoc:
1470 use b4_file_name instead of @ofile@.
1471 (Location constructor): Correct Javadoc parameter name.
1472 (yylloc): Add missing opening m4 quote after b4_location_if.
1473 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1474 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1475 (YYParser constructor): Correct Javadoc parameter name.
1476
1477 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1478
1479 Always put auxiliary code files in the same dir as other output files.
1480 * src/files.c (compute_file_name_parts): When the user specifies
1481 --output but not --file-prefix, extract the directory prefix from the
1482 file prefix not from the grammar file name. This affects the location
1483 of files like location.hh generated by the C++ skeleton. The includes
1484 in the other output files require this fix.
1485 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1486 for expected output files.
1487 (Output files): Add a test for the above.
1488
1489 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1490
1491 * gnulib: Update submodule to HEAD.
1492
1493 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1494
1495 Update copyright year.
1496 * src/files.c: Here.
1497
1498 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1499
1500 Don't overwrite the input file.
1501 * src/files.c (output_file_name_check): Fatal error if using input file
1502 for output.
1503 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1504 argument.
1505 (Conflicting output files): Add test.
1506
1507 2008-10-28 Akim Demaille <demaille@gostai.com>
1508
1509 Space changes.
1510 * data/lalr1.cc: Formatting changes.
1511
1512 2008-10-28 Akim Demaille <demaille@gostai.com>
1513
1514 Don't define debugging functions when !YYDEBUG.
1515 * data/lalr1.cc (debug_stream, set_debug_stream)
1516 (debug_level_type, debug_level, set_debug_level): Don't
1517 declare them when YYDEBUG is not defined.
1518 The implementation are already YYDEBUG-aware.
1519
1520 2008-10-28 Akim Demaille <demaille@gostai.com>
1521
1522 Prefer "continue" for empty loop bodies.
1523 * etc/bench.pl.in: Use "continue" instead of {}.
1524
1525 2008-10-28 Akim Demaille <demaille@gostai.com>
1526
1527 Space and comments changes.
1528 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1529 * data/c.m4, data/lalr1.cc: Space changes.
1530
1531 2008-10-28 Akim Demaille <demaille@gostai.com>
1532
1533 Make gnulib a submodule.
1534 * gnulib: New.
1535 * .gitmodules (gnulib): New.
1536
1537 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1538
1539 Fix yyerror_range for user-defined location type in C++. Reported by
1540 Georg Sauthoff at
1541 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1542 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1543 * THANKS (Georg Sauthoff): Add.
1544
1545 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1546
1547 Update several administrative files mainly to facilitate releasing.
1548 * HACKING (Administrivia): Make the git-merge-changelog notes more
1549 helpful.
1550 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1551 (Release Procedure): Update for git and add numerous details that were
1552 previously missing.
1553 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1554 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1555 that announcements don't claim we bootstrapped with whatever bison
1556 happened to be in PATH. Add flex as a bootstrap tool.
1557 * Makefile.maint: Remove, previously replaced by maint.mk.
1558 * Makefile.cfg: Remove, and migrate settings to...
1559 * cfg.mk: ... here for the sake of `make announcement'.
1560 * bootstrap.conf (gnulib_modules): Add announce-gen.
1561 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1562 Berry.
1563
1564 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1565
1566 Small but important bugfixes for the Java skeleton.
1567 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1568 (yy_symbol_print): Call toString on yyvaluep.
1569
1570 2008-08-29 Akim Demaille <demaille@gostai.com>
1571
1572 Clarify UPDATED use.
1573 * doc/bison.texinfo: It refers to the last edition of this file,
1574 not to the release date of Bison.
1575 Reported by Joel E. Denny.
1576
1577 2008-08-29 Akim Demaille <demaille@gostai.com>
1578
1579 * README: Update FAQ pointer.
1580 Reported by Joel E. Denny.
1581
1582 2008-08-27 Eric Blake <ebb9@byu.net>
1583
1584 Resync m4sugar from autoconf.
1585 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1586 (m4_init): Adjust to latest m4.git changes.
1587 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1588 effects.
1589 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1590 (_m4_list_cmp): Reduce side effects.
1591
1592 2008-08-27 Akim Demaille <demaille@gostai.com>
1593
1594 Check yyerrok in calc.at.
1595 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1596 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1597 expected.
1598
1599 2008-08-27 Akim Demaille <demaille@gostai.com>
1600
1601 Support yyerrok in lalr1.cc.
1602 YYBACKUP is still to import back into lalr1.cc.
1603 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1604
1605 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1606
1607 For maintainer-check*, don't recompile for a $(VERSION) update.
1608 * cfg.mk: New file.
1609 (_is-dist-target): Override the one in GNUmakefile.
1610 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1611
1612 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1613
1614 Update for recent change to gnulib.
1615 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1616 string.h now.
1617
1618 2008-08-15 Eric Blake <ebb9@byu.net>
1619
1620 Remaining m4sugar merge from autoconf.
1621 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1622 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1623 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1624 * src/output.c (output_skeleton): Tell m4 how to find it.
1625
1626 Partial m4sugar merge from autoconf: m4_map.
1627 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1628 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1629 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1630 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1631 for empty list.
1632 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1633 Likewise.
1634 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1635 declares it.
1636
1637 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1638
1639 Keep .version and PACKAGE_VERSION in sync.
1640 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1641 dependency, and add comments justifying this in more detail. Discussed
1642 starting at
1643 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1644
1645 2008-08-06 Eric Blake <ebb9@byu.net>
1646
1647 Partial m4sugar merge from autoconf: m4_shiftn.
1648 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1649 (m4_shift2, m4_shift3): New macros.
1650 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1651 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1652 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1653 * data/java.m4 (b4_remove_comma): Likewise.
1654
1655 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1656 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1657 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1658 (m4_init): Consolidate wrapped text into single m4_wrap.
1659 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1660 in wrapped text.
1661
1662 2008-08-05 Eric Blake <ebb9@byu.net>
1663
1664 Partial m4sugar merge from autoconf: builtins, version.m4.
1665 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1666 (m4_prepend): Remove, as it is unused and inherently quadratic,
1667 whereas m4_append is linear in newer m4.
1668 (m4_mkstemp): New builtin.
1669 (m4_symbols): Make rename conditional.
1670 (m4_version_prereq): Ensure fatal error if used in bison, which
1671 intentionally lacks version.m4.
1672
1673 Fix comments in m4sugar.
1674 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1675
1676 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1677
1678 Update for recent .gitignore fix in Gnulib.
1679 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1680 anchored .gitignore entries.
1681
1682 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1683
1684 Set gnu or gnits strictness.
1685 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1686 development and gnits strictness for releases. Based on Eric Blake's
1687 suggestion at
1688 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1689
1690 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1691
1692 * NEWS: Clarify documentation of %language.
1693
1694 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1695
1696 Support usage of git-merge-changelog.
1697 * .gitattributes: New.
1698 * HACKING: Document usage of git-merge-changelog.
1699 * bootstrap: Install git-merge-changelog entries in .git/config
1700 if appropriate.
1701
1702 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1703
1704 Remove remaining dependence on CVS Id keyword.
1705 * ChangeLog: For the sake of people still using CVS, don't use dollars
1706 when mentioning Id.
1707 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1708 unusual anyway.
1709 * data/xslt/xml2dot.xsl: Likewise.
1710 * data/xslt/xml2text.xsl: Likewise.
1711 * data/xslt/xml2xhtml.xsl: Likewise.
1712 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1713 * doc/Makefile.am (neutralize): Remove, no longer needed.
1714 (.x.1): Don't use neutralize.
1715 (edit): Don't substitute for ID.
1716 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1717
1718 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1719
1720 Fix dependence on computed configure variables.
1721 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1722 $(top_srcdir)/configure.ac so that changes to computed variables, such
1723 as PACKAGE_VERSION, are seen.
1724 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1725
1726 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1727
1728 Update copyright dates for recent changes.
1729 * Makefile.am: Here.
1730 * src/Makefile.am: Here.
1731 * src/reduce.c: Here.
1732 * tests/reduce.at: Here.
1733
1734 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1735
1736 Use git-version-gen for version names between releases.
1737 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1738 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1739 * .prev-version: New.
1740 * .version.in: Remove.
1741 * ChangeLog: Remove the Id previously used for capturing the CVS
1742 revision.
1743 * GNUmakefile: Remove, now copied from Gnulib.
1744 * Makefile.am: Add code suggested by comments in
1745 build-aux/git-version-gen.
1746 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1747 .prev-version, and .version.
1748 * NEWS (2.3b+): Rename to...
1749 (?.?): ... this because we're dropping the "+" version naming scheme,
1750 but, in general, we still can't be sure of our next release name.
1751 * bootstrap: Add a quick hack to remove from .gitignore the
1752 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1753 entry. This should really be fixed in gnulib instead.
1754 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1755 * configure.ac (AC_INIT): Set version name by invoking
1756 build-aux/git-version-gen.
1757 (AC_CONFIG_FILES): Remove .version, now generated by
1758 build-aux/git-version-gen.
1759 * maint.mk: New, copied from coreutils.
1760 * doc/.cvsignore (bison.1): Add.
1761 * doc/.gitignore (/bison.1): Add.
1762 * doc/bison.1: Remove, generated.
1763 * src/.cvsignore (revision.c): Remove.
1764 * src/.gitignore (/revision.c): Remove.
1765 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1766 (BUILT_SOURCES): Remove revision.c.
1767 (revision.c): Remove.
1768 * src/getargs.c (version): Don't print revision after the VERSION.
1769 * src/revision.h: Remove.
1770
1771 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1772
1773 Fix untranslatable composition of sentences. Reported by Goran
1774 Uddeborg at
1775 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1776 * THANKS (Goran Uddeborg): Add.
1777 * src/reduce.c (reduce_print): Report the number of nonterminals and
1778 rules useless in the grammar in separate sentences.
1779 * tests/reduce.at (Useless Rules): Update output.
1780 (Reduced Automaton): Likewise.
1781 (Underivable Rules): Likewise.
1782 (Empty Language): Likewise.
1783
1784 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1785
1786 Fix some .gitignore and .cvsignore problems.
1787 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1788 (insert_vc_ignore): ... this new function, which prepends `/' to all
1789 .gitignore entries before passing them to insert_sorted_if_absent.
1790 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1791 .cvsignore files are maintained even though Bison developers run
1792 bootstrap while using Git.
1793 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1794 unneeded by Bison.
1795 (gnulib): Add.
1796 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1797 unneeded. Reported by Eric Blake.
1798 * lib/.gitignore (/*~): Add.
1799 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1800 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1801 Blake.
1802 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1803
1804 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1805
1806 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1807 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1808 * bootstrap.conf (gnulib_modules): Add unsetenv.
1809 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1810 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1811 (/setenv.m4): Add.
1812 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1813 the first argument because it may become position-dependent, and unset
1814 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1815 Add comments explaining these issues in more detail.
1816
1817 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1818
1819 Add .gitignore everywhere based on .cvsignore.
1820 * .gitignore: New.
1821 * build-aux/.gitignore: New.
1822 * data/.gitignore: New.
1823 * doc/.gitignore: New.
1824 * etc/.gitignore: New.
1825 * examples/.gitignore: New.
1826 * examples/calc++/.gitignore: New.
1827 * lib/.gitignore: New.
1828 * m4/.gitignore: New.
1829 * po/.gitignore: New.
1830 * runtime-po/.gitignore: New.
1831 * src/.gitignore: New.
1832 * tests/.gitignore: New.
1833
1834 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1835
1836 * NEWS (2.3b+): New section, empty for now.
1837 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1838
1839 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1840
1841 * NEWS (2.3b): Update release date since there has been a delay in
1842 getting the announcements and tarballs out.
1843
1844 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1845
1846 * NEWS: Version 2.3b.
1847 * configure.ac (AC_INIT): Likewise.
1848 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1849
1850 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1851
1852 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1853 been doing it for years.
1854 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1855 (Release Procedure): Add FIXME about make alpha being unmaintained.
1856
1857 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1858
1859 * data/yacc.c: Reformat m4 a little for readability.
1860 * src/lalr.c (build_relations): Correct comment.
1861
1862 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1863
1864 DJGPP specific issue.
1865 * djgpp/config.sed: Fixes required to run configure scripts generated
1866 by autoconf 2.62.
1867
1868 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1869
1870 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1871 coordinator@translationproject.org.
1872
1873 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1874
1875 * THANKS: Add Eric Blake.
1876
1877 2008-04-23 Eric Blake <ebb9@byu.net>
1878
1879 Revert prior patch, by working around autoconf regression.
1880 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1881 ("Output file name: ("): Uncomment test.
1882 ("Output file name: )"): Likewise.
1883 Based on an idea from Noah Misch.
1884
1885 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1886
1887 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1888 2.61. Reported by Juan Manuel Guerrero at
1889 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1890 * tests/output.at ("Output file name: ("): Comment out test case for
1891 now.
1892 ("Output file name: )"): Likewise.
1893
1894 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1895
1896 * GNUmakefile: Update git-version-gen invocation so make dist
1897 succeeds.
1898
1899 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1900
1901 Update to the current gnulib CVS repository, and fix trigraph handling
1902 in Bison.
1903 * bootstrap: Update gnulib CVS repository URL.
1904 (symlink_to_dir): Encapsulate the code that guarantees the destination
1905 directory exists into...
1906 (check_dst_dir): ... this new function, and...
1907 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1908 fail when copying files into lib/uniwidth/.
1909 * src/output.c (prepare_symbols): When writing yytname muscles, where
1910 symbol names will be encoded in C-string literals, tell quotearg to
1911 escape trigraphs. This used to be the default in gnulib.
1912 * tests/regression.at (Token definitions): Because of the change in
1913 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1914 escapes trigraphs in symbol names. Thus, yytname no longer has
1915 trigraphs unnecessarily doubly escaped. Update test case output.
1916 Extend test case to be sure Bison's own error messages will no longer
1917 have trigraphs in symbol names unnecessarily escaped once.
1918
1919 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1920
1921 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1922 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1923 * .cvsignore: Add .version.
1924 * .version.in: New.
1925 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1926 * configure.ac (AC_CONFIG_FILES): Add .version.
1927 * build-aux/.cvsignore: Add git-version-gen.
1928
1929 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1930
1931 * NEWS (2.3a+): Mention that -g now takes an argument.
1932 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1933 consistency. Update the -g and -x entries now that they take
1934 arguments. Use brackets to indicate optional arguments.
1935 * src/getargs.c (usage): Explain the relationship between arguments of
1936 long and short options more completely. Document --defines and -d
1937 separately since the former takes an argument but, for POSIX Yacc, the
1938 latter does not.
1939 (short_options): Let -W take an optional argument like --warnings.
1940 (getargs): Sort cases.
1941
1942 2008-02-28 Akim Demaille <demaille@gostai.com>
1943
1944 * doc/bison.texinfo: Fix a few typos.
1945
1946 2008-02-28 Akim Demaille <akim@epita.fr>
1947
1948 * doc/bison.texinfo (Bison Options): Document -W.
1949 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1950
1951 2008-02-28 Akim Demaille <akim@epita.fr>
1952
1953 * src/getargs.c (short_options): Split and sort for readability.
1954 -g and -x take optional arguments, just like their long options.
1955 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1956 understand.
1957 Fix the handling of $opt which resulted in all the argument to be
1958 considered as optional.
1959
1960 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1961
1962 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1963 say its interface is experimental.
1964 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1965 Java.
1966 (Bison Options): In the -L and --language entry, mention Java.
1967 (Java Bison Interface): Say the interface is experimental.
1968 * src/getargs.c (usage): Mention -L and --language.
1969
1970 * NEWS (2.3a+): Say the push parsing interface is experimental.
1971 * doc/bison.texinfo (Push Decl): Likewise.
1972 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1973 (Push Parser Function): Likewise.
1974 (Pull Parser Function): Likewise.
1975 (Parser Create Function): Likewise.
1976 (Parser Delete Function): Likewise.
1977 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1978 yypull_parse, and yypush_parse entries.
1979
1980 * NEWS (2.3a+): Mention XML support, and say the schema is
1981 experimental.
1982 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1983 * src/getargs.c (usage): Say the XML schema is experimental.
1984
1985 * NEWS (2.3a+): Say option instead of flag.
1986
1987 2008-02-21 Wojciech Polak <polak@gnu.org>
1988
1989 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1990 text.
1991
1992 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1993
1994 Fix impure push parser compile error reported by Bob Rossi at
1995 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1996 * data/yacc.c: Clean up whitespace in the output a little.
1997 (yypstate_allocated): Define for impure push parsers regardless of
1998 whether the pull interface is also requested.
1999 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
2000 check impure push parsers without the pull interface.
2001
2002 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
2003 yyerror takes arguments specified by %parse-param while yypstate_new
2004 does not.
2005 * doc/bison.texinfo (Parser Create Function): Document that
2006 yypstate_new returns 0 for multiple impure parser instances.
2007 * tests/push.at (Push Parsing: Multiple impure instances): Update
2008 expected stderr output.
2009
2010 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
2011
2012 * runtime-po/POTFILES.in (push.c): Remove.
2013
2014 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2015
2016 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
2017 * data/push.c: Rename to...
2018 * data/yacc.c: ... this, overwriting it.
2019 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
2020 `%push-pull-parser' -> `%define api.push_pull "both"'.
2021 Remove old yacc.c tests, and update push.c tests to yacc.c.
2022
2023 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
2024
2025 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
2026 `"%code top" blocks' instead of `%code "top" blocks'.
2027 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
2028 Clean up whitespace in the output a little.
2029
2030 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2031
2032 Fix documentation problems reported by Tim Josling at
2033 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
2034 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
2035 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
2036 integers. Explain the effect of literal string aliases on error
2037 messages. Copy token 0 documentation from the C++ skeleton
2038 documentation.
2039
2040 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
2041
2042 Accept a token number in a %left, %right, or %nonassoc for POSIX
2043 conformance. Reported by Tim Josling at
2044 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
2045 * NEWS (2.3a+): Mention.
2046 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
2047 and code numbers are treated by precedence declarations.
2048 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
2049 of symbols.1.
2050 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
2051 of symbol.
2052 (symbol.prec): New, just like symbol but allows INT.
2053 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
2054 longer holds.
2055 * tests/regression.at (Token number in precedence declaration): New
2056 test case.
2057
2058 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
2059
2060 DJGPP specific issues.
2061 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
2062 be changed. Copyright timestamp adjusted.
2063 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
2064 be changed. Copyright timestamp adjusted.
2065 * djgpp/config.site: Copyright timestamp adjusted.
2066 * djgpp/config_h.sed: Copyright timestamp adjusted.
2067 * djgpp/djunpack.bat: Copyright timestamp adjusted.
2068 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
2069 filename translation list.
2070 * djgpp/subpipe.c (init_subpipe): Check the environment variables
2071 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
2072 files shall be created. Before trying to use the temp dir where the
2073 environment variable points to check that the dir really exists. If
2074 not default to the cwd as temp dir. Copyright timestamp adjusted.
2075 * djgpp/subpipe.h: Copyright timestamp adjusted.
2076 * djgpp/testsuite.sed: Copyright timestamp adjusted.
2077
2078 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
2079
2080 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
2081
2082 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
2083
2084 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
2085 Problem reported by Claudio Saavedra in
2086 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
2087
2088 2008-01-05 Wojciech Polak <polak@gnu.org>
2089
2090 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
2091 document's title with the input grammar file name.
2092
2093 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
2094
2095 Automate regression testing of the XML/XSLT implementation. Discussed
2096 starting at
2097 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
2098 * configure.ac (XSLTPROC): New substitution.
2099 * Makefile.am (maintainer-xml-check): New phony target invoking...
2100 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
2101 invoking make maintainer-check with BISON_TEST_XML=1.
2102 * tests/atlocal.in (XSLTPROC): New.
2103 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
2104 not to report reachable memory when Bison is expected to have a
2105 non-zero exit status and (2) to compare XML/XSLT output with --graph
2106 and --report=all output for every working grammar when
2107 BISON_TEST_XML=1.
2108 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
2109 (AT_BISON_CHECK_XML): New.
2110 (AT_QUELL_VALGRIND): New.
2111 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
2112 (AT_CHECK): ... don't redefine this since this was the old way to
2113 quell Valgrind.
2114 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
2115 AT_BISON_CHECK invocations.
2116 * tests/c++.at: Likewise.
2117 * tests/calc.at: Likewise.
2118 * tests/conflicts.at: Likewise.
2119 * tests/cxx-type.at: Likewise.
2120 * tests/existing.at: Likewise.
2121 * tests/glr-regression.at: Likewise.
2122 * tests/headers.at: Likewise.
2123 * tests/input.at: Likewise.
2124 * tests/java.at: Likewise.
2125 * tests/output.at: Likewise.
2126 * tests/push.at: Likewise.
2127 * tests/reduce.at: Likewise.
2128 * tests/regression.at: Likewise.
2129 * tests/sets.at: Likewise.
2130 * tests/skeletons.at: Likewise.
2131 * tests/synclines.at: Likewise.
2132 * tests/torture.at: Likewise.
2133 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
2134 tends to hang xsltproc.
2135 (Big horizontal): Likewise.
2136
2137 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2138
2139 In XML output, remove redundant class attribute on symbol element.
2140 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
2141 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
2142 look up a symbol to determine whether it's a nonterminal or terminal.
2143 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
2144 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
2145
2146 Add prec/assoc information to XML output.
2147 * src/gram.c (grammar_rules_print_xml): For each rule that has a
2148 %prec, add a percent_prec attribute.
2149 * src/print-xml.c (print_grammar): For each terminal that has a
2150 precedence or associativity, add a prec or assoc attribute.
2151 (xml_indent): New.
2152 (xml_puts): Use xml_indent.
2153 (xml_printf): Use xml_indent.
2154 * src/print-xml.h (xml_indent): Prototype.
2155
2156 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
2157 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
2158
2159 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
2160
2161 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
2162 (bison:ruleByNumber): ... this for clarity.
2163 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
2164 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
2165 (xsl:template match="reduction"): Update.
2166 (xsl:template match="item"): Update.
2167 (xsl:template match="reduction"): Update.
2168
2169 In the XML output, don't print the list of rules where symbols appear.
2170 Compute it in XSLT instead. Discussed at
2171 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
2172 * data/xslt/bison.xsl (bison:ruleByLhs): New.
2173 (bison:ruleByRhs): New.
2174 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
2175 bison:ruleByRhs.
2176 (xsl:template match="terminal/rule"): Remove.
2177 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2178 bison:ruleByRhs.
2179 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2180 Remove.
2181 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
2182 bison:ruleByRhs and mode="number-link" for rule template.
2183 (xsl:template match="terminal/rule"): Remove.
2184 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
2185 bison:ruleByRhs and mode="number-link" for rule template.
2186 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
2187 Rewrite as...
2188 (xsl:template match="rule" mode="number-link"): ... this.
2189 * src/print-xml.c (print_grammar): Don't print the list of rules.
2190
2191 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
2192
2193 Don't let --report affect XML output; always print all information.
2194 Discussed at
2195 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
2196 * src/conflicts.c (log_resolution): Implement.
2197 * src/print-xml.c (print_core): Implement.
2198 (print_state): Implement.
2199 (print_xml): Implement.
2200
2201 * NEWS (2.3a+): Fix quotes.
2202 * src/parse-gram.y (prologue_declaration): For consistency with -v,
2203 don't let %verbose clear the list specified by --report.
2204
2205 2007-11-26 Akim Demaille <akim@epita.fr>
2206
2207 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
2208
2209 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
2210
2211 In the XML output, list useless and unused symbols and rules with the
2212 useful ones and add a "usefulness" attribute. Discussed starting at
2213 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
2214 * src/gram.c (grammar_rules_partial_print_xml): Remove.
2215 (grammar_rules_print_xml): Print all rules instead of just those
2216 useful in the grammar, and add a "usefulness" attribute.
2217 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
2218 * src/print-xml.c (print_rules_useless_in_parser): Remove.
2219 (print_grammar): Print all nonterminals instead of just useful ones,
2220 and add a "usefulness" attribute to nonterminals and terminals.
2221 (print_xml): Don't print a separate "reductions" or
2222 "rules-useless-in-parser" element.
2223 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2224 (reduce_xml): Remove.
2225 (reduce_token_unused_in_grammar): New.
2226 (reduce_nonterminal_useless_in_grammar): New.
2227 * src/reduce.h (reduce_xml): Remove prototype.
2228 (reduce_token_unused_in_grammar): Add prototype.
2229 (reduce_nonterminal_useless_in_grammar): Add prototype.
2230 * data/xslt/xml2text.xsl: Update for XML changes.
2231 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2232 * tests/reduce.at (Useless Terminals): Update output.
2233 (Useless Rules): Update output.
2234 (Reduced Automaton): Update output.
2235
2236 Say "Terminals unused in grammar" instead of "Unused terminals".
2237 * NEWS (2.3a+): Update.
2238 * doc/bison.texinfo (Understanding): Update example output.
2239 * src/reduce.c (reduce_output): Implement.
2240 * data/xslt/xml2text.xsl: Implement.
2241 * data/xslt/xml2xhtml.xsl: Implement.
2242
2243 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2244
2245 Accept --report-file=FILE to override the default `.output' filename.
2246 * NEWS (2.3a+): Mention.
2247 * doc/bison.texinfo (Bison Options): Add an entry.
2248 * src/files.c (compute_output_file_names): Don't override
2249 spec_verbose_file if already set.
2250 * src/getargs.c (usage): Document --report-file.
2251 (REPORT_FILE_OPTION): New anonymous enum member.
2252 (long_options): Add entry for it.
2253 (getargs): Add case for it setting spec_verbose_file.
2254
2255 * build-aux/cross-options.pl: Don't record a short option just because
2256 there's an arg.
2257 * doc/.cvsignore: Add yacc.1.
2258
2259 2007-11-14 Akim Demaille <akim@epita.fr>
2260
2261 * doc/yacc.1.in: New.
2262 * configure.ac, doc/Makefile.am: Adjust.
2263 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2264 config.h symbol.
2265 Use AC_SUBST for assignments too.
2266 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2267
2268 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2269
2270 * src/gram.c: Remove comments that duplicate comments in gram.h.
2271
2272 When reporting useless rules and nonterminals, say "useless in grammar"
2273 instead of "useless", and say "useless in parser" instead of "never
2274 reduced". Discussed starting at
2275 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2276 * NEWS (2.3a+): Mention this change.
2277 * data/xslt/xml2text.xsl: Update output text and expected input XML
2278 element names to match changes below.
2279 * data/xslt/xml2xhtml.xsl: Likewise.
2280 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2281 Contents: "Rules useless in parser due to conflicts".
2282 * doc/bison.texinfo (Decl Summary): Reword a little.
2283 (Understanding): Update example output for changes below.
2284 * src/gram.c: (rule_useful_p): Rename to...
2285 (rule_useful_in_grammar_p): ... this.
2286 (rule_useless_p): Rename to...
2287 (rule_useless_in_grammar_p): ... this.
2288 (rule_never_reduced_p): Rename to...
2289 (rule_useless_in_parser_p): ... this.
2290 (grammar_rules_print): Update for renames.
2291 (grammar_rules_print_xml): Update for renames.
2292 (grammar_rules_never_reduced_report): Rename to...
2293 (grammar_rules_useless_report): ... this since it is used for either
2294 kind of useless rule.
2295 * src/gram.h: Reword comments and update function names in prototypes.
2296 * src/main.c (main): Say "rule useless in parser due to conflicts".
2297 * src/print-xml.c (print_rules_never_reduced): Rename to...
2298 (print_rules_useless_in_parser): ... this, and rename output XML
2299 element "rules-never-reduced" to "rules-useless-in-parser".
2300 (print_xml): Update for rename.
2301 * src/print.c (print_results): Say "Rules useless in parser due to
2302 conflicts".
2303 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2304 (nonterminals_reduce): Say "nonterminal useless in grammar".
2305 (reduce_output): Say "Nonterminals useless in grammar".
2306 Say "Rules useless in grammar".
2307 (reduce_xml): Rename output XML element "useless" to
2308 "useless-in-grammar".
2309 (reduce_print): Don't report the count of grammatically useless rules
2310 as "rules never reduced" just because %yacc is specified.
2311 In the correct report of this count, say nonterminal(s) and rule(s)
2312 "useless in grammar".
2313 * tests/conflicts.at (S/R in initial): Update expected output.
2314 (Defaulted Conflicted Reduction): Likewise.
2315 (Unreachable States After Conflict Resolution): Likewise.
2316 * tests/existing.at (GNU pic Grammar): Likewise.
2317 * tests/reduce.at (Useless Nonterminals): Likewise.
2318 (Useless Rules): Likewise.
2319 (Reduced Automaton): Likewise.
2320 (Underivable Rules): Likewise.
2321 (Empty Language): Likewise.
2322
2323 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2324
2325 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2326 here document and before the EOF so that BSD's implementation of Bourne
2327 shell doesn't parse the delimiter as part of the here document.
2328 * doc/.cvsignore: Add cross-options.texi.
2329 * src/getargs.c (usage): Add a blank line after the warning categories.
2330
2331 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2332
2333 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2334
2335 2007-11-05 Akim Demaille <akim@epita.fr>
2336
2337 Remove Id: from bison.1.
2338 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2339 (perl -0777 -pi -e 's/\.PP\nId): New.
2340 (.x.1): Use it to ignore the version control revision.
2341
2342 2007-11-05 Akim Demaille <demaille@gostai.com>
2343
2344 * build-aux/Makefile.am: Ship cross-options.pl.
2345 * doc/Makefile.am: Always refer to cross-options.texi with
2346 $(srcdir).
2347 (MAINTAINERCLEANFILES): Add it.
2348
2349 2007-11-04 Akim Demaille <demaille@gostai.com>
2350
2351 Generate the long/short option cross-table.
2352 * build-aux/cross-options.pl: New.
2353 * doc/Makefile.am (cross-options.texi): New.
2354 * doc/bison.texinfo: Use it.
2355
2356 2007-11-04 Akim Demaille <demaille@gostai.com>
2357
2358 Generate bison.1 using help2man.
2359 * doc/common.x, doc/bison.x: New.
2360 * doc/Makefile.am (bison.1, .x.1): New.
2361 The code is taken from autoconf-2.61/man/Makefile.am.
2362 * configure.ac: Look for help2man.
2363
2364 2007-11-04 Akim Demaille <demaille@gostai.com>
2365
2366 Complete --help.
2367 * src/getargs.c (usage): Document -W, make it clear that -d,
2368 -g and -x have optional arguments.
2369
2370 2007-11-04 Akim Demaille <demaille@gostai.com>
2371
2372 Find sha1sum when named gsha1sum.
2373 * bootstrap (find_tool): New.
2374 ($SHA1SUM): New.
2375
2376 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2377
2378 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2379 at
2380 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2381 * NEWS (2.3a+): Mention.
2382 * data/bison.m4 (b4_pure_if): Don't define it here.
2383 * data/c.m4 (b4_identification): Depend on individual skeletons to
2384 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2385 values of the %define variables api.pure or api.push_pull. Define
2386 YYPURE, YYPUSH, and YYPULL accordingly.
2387 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2388 glr.cc has already defined b4_pure_flag.
2389 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2390 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2391 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2392 * doc/bison.texinfo (Pure Decl): Update.
2393 (Push Decl): Update.
2394 (Decl Summary): Add api.pure to %define entry.
2395 In %pure-parser entry, say it's deprecated and reference %define.
2396 (Pure Calling): Update.
2397 (Error Reporting): Update.
2398 (C++ Scanner Interface): Update.
2399 (How Can I Reset the Parser): Update.
2400 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2401 reference %define.
2402 * src/getargs.c (pure_parser): Remove global variable.
2403 * src/getargs.h (pure_parser): Remove extern.
2404 * src/output.c (prepare): Don't define pure_flag muscle.
2405 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2406 wrapper around `%define api.pure'.
2407 * tests/calc.at (Simple LALR Calculator): Update.
2408 (Simple GLR Calculator): Update.
2409 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2410 Update.
2411 (GLR: Resolve ambiguity, pure, locations): Update.
2412 (GLR: Merge conflicting parses, pure, no locations): Update.
2413 (GLR: Merge conflicting parses, pure, locations): Update.
2414 * tests/glr-regression.at (Uninitialized location when reporting
2415 ambiguity): Update
2416 * tests/input.at (Unused %define api.pure): New test case.
2417 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2418 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2419 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2420
2421 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2422
2423 %define push_pull -> %define api.push_pull. Discussed starting at
2424 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2425 * data/push.c: Expect the new name.
2426 * data/yacc.c: Likewise.
2427 * doc/bison.texinfo (Push Decl): Update.
2428 (Decl Summary): Update %define entry.
2429 (Push Parser Function): Update.
2430 (Pull Parser Function): Update.
2431 (Parser Create Function): Update.
2432 (Parser Delete Function): Update.
2433 * tests/calc.at (Simple LALR Calculator): Update.
2434 * tests/input.at (%define enum variables): Update.
2435 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2436 (Push Parsing: Multiple impure instances): Update.
2437 (Push Parsing: Unsupported Skeletons): Update.
2438 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2439 (Exploding the Stack Size with Malloc): Update.
2440
2441 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2442 other entries some.
2443
2444 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2445
2446 For the XML output's terminal element, rename @number to @token-number,
2447 and add @symbol-number. In the nonterminal element, rename @number to
2448 @symbol-number. Discussed starting at
2449 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2450 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2451 renames.
2452 (xsl:template match="nonterminal"): Likewise.
2453 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2454 (xsl:template match="nonterminal"): Likewise.
2455 * src/print-xml.c (print_grammar): Implement.
2456
2457 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2458
2459 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2460 2007-10-11 change, the child elements here are items not rules.
2461 (xsl:template match="item"): New.
2462 (xsl:template match="rule"): Update for new reduced itemset.
2463 (xsl:template match="point"): Remove.
2464 (xsl:template match="empty"): For consistency with --graph, don't
2465 output "/* empty */".
2466 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2467 line-wrap, don't pass a negative value as first-line-length since this
2468 won't work with the following changes.
2469 (xsl:template name="line-wrap"): Simplify slightly.
2470 (xsl:template name="ws-search"): Eliminate recursion.
2471 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2472 set next to an item whose dot is not at the end of the RHS even if it
2473 happens to be associated with the same rule.
2474
2475 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2476
2477 Add %define lr.keep_unreachable_states.
2478 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2479 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2480 * src/main.c (main): Implement it.
2481 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2482 Extend to test it, and fix a typo.
2483
2484 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2485
2486 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2487 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2488 the example .output text.
2489 * tests/regression.at (Extra lookahead sets in report): Improve wording
2490 of comments.
2491
2492 2007-10-17 Wojciech Polak <polak@gnu.org>
2493
2494 * src/print-xml.c (print_grammar): Renamed
2495 <terminal> and <nonterminal> attributes:
2496 "type" to "number" and "symbol" to "name".
2497 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2498 Use new attribute names.
2499 (xsl:template match="nonterminal"): Likewise.
2500 * data/xslt/xml2xhtml.xsl: Likewise.
2501
2502 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2503
2504 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2505 (Option Cross Key): Likewise.
2506
2507 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2508 next to an item whose dot is not at the end of the RHS even if it
2509 happens to be associated with the same rule.
2510 * src/print.c (print_core): Likewise.
2511 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2512 (Resolved SR Conflicts): Update output.
2513 * tests/regression.at (Extra lookahead sets in report): New test case.
2514
2515 2007-10-11 Wojciech Polak <polak@gnu.org>
2516
2517 * src/print-xml.c (print_core): Remove item set
2518 redundancy.
2519 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2520 Improve processing time. Suggested by Joel E. Denny.
2521 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2522 Write xsl:param "required" attribute as comment.
2523 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2524 (xsl:template match="rule"): Support new reduced itemset.
2525 (xsl:template match="point"): Remove.
2526 * data/xslt/xml2xhtml.xsl: Likewise.
2527
2528 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2529
2530 * src/getargs.c (version): Update copyright year.
2531
2532 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2533
2534 Make xml2dot.xsl and --graph produce the same output.
2535 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a `&#10;'
2536 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2537 escaped later.
2538 (xsl:template name="output-node"): Use the new escape template instead
2539 of the string-replace template directly.
2540 (xsl:template name="output-edge"): Likewise.
2541 (xsl:template name="escape"): New, escapes backslashes and newlines in
2542 addition to quotation marks.
2543 * src/graphviz.c (start_graph, output_node, output_edge): Add
2544 whitespace to output for legibility.
2545
2546 Make xml2text.xsl and --report produce the same output, and remove the
2547 XML "conflicts" element since a conflict summary is easily extracted
2548 from the automaton.
2549 * data/xslt/bison.xsl: New.
2550 (xsl:template match="state" mode="bison:count-conflicts): New.
2551 * data/xslt/xml2text.xsl: Import bison.xsl.
2552 (xsl:template match="bison-xml-report"): Instead of styling the
2553 "conflicts" element, style the "automaton" element with mode
2554 "conflicts". Unlike the former, the latter lists S/R and R/R
2555 conflicts for a state on the same line.
2556 (xsl:template match="conflicts"): Remove.
2557 (xsl:template match="conflict"): Remove.
2558 (xsl:template match="terminal"): Line-wrap the list of rules in which
2559 the terminal is used.
2560 (xsl:template match="nonterminal"): Likewise for nonterminals.
2561 (xsl:template match="automaton" mode="conflicts"): New.
2562 (xsl:template match="state" mode="conflicts"): New.
2563 (xsl:template name="line-wrap"): New.
2564 (xsl:template name="ws-search"): New.
2565 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2566 (xsl:template match="bison-xml-report"): Instead of styling the
2567 "conflicts" element, style the "automaton" element with mode
2568 "conflicts."
2569 (xsl:template match="conflicts"): Remove.
2570 (xsl:template match="conflict"): Remove.
2571 (xsl:template match="automaton" mode="conflicts"): New.
2572 (xsl:template match="state" mode="conflicts): New.
2573 * src/conflicts.c (conflicts_output_xml): Remove.
2574 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2575 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2576 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2577 the corresponding XSLT is easier. Also, never wrap between a word and
2578 the comma that follows it.
2579
2580 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2581
2582 Improve C++ namespace support. Discussed starting at
2583 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2584 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2585 b4_namespace_close): New macros that interpret the %define variable
2586 "namespace" so its value can contain "::" to indicate nested
2587 namespaces.
2588 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2589 the above macros.
2590 * data/lalr1.cc (b4_namespace): Likewise.
2591 * data/location.cc (b4_namespace): Likewise.
2592 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2593 inside a new table in the general %define entry. Document `%define
2594 namespace' there as well. Point the %name-prefix entry to it since it
2595 explains it more completely in the case of C++.
2596 (C++ Bison Interface): Mention `%define namespace' instead of
2597 %name-prefix.
2598 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2599 entry suffices.
2600 * tests/c++.at (Relative namespace references): New test case.
2601 (Absolute namespace references): New test case.
2602 (Syntactically invalid namespace references): New test case.
2603 * tests/input.at (C++ namespace reference errors): New test case.
2604
2605 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2606
2607 Add syncline support and location accessor to internal %define
2608 interfaces.
2609 * data/bison.m4 (b4_percent_define_get_loc): New.
2610 (b4_percent_define_get_syncline): New.
2611 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2612 (b4_percent_define_default): Record defining location as line 1 rather
2613 than 0 for the sake of synchronizing #line's, and define
2614 b4_percent_define_syncline(VARIABLE).
2615 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2616 * src/muscle_tab.c (muscle_syncline_grow): New.
2617 (muscle_code_grow): Use muscle_syncline_grow.
2618 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2619 define b4_percent_define_syncline(VARIABLE).
2620 (muscle_percent_define_get_loc): New.
2621 (muscle_percent_define_get_syncline): New.
2622 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2623 remove some unused variables.
2624 (muscle_percent_define_default): Record defining location as line 1
2625 rather than 0 for the sake of synchronizing #line's, and define
2626 b4_percent_define_syncline(VARIABLE).
2627 (muscle_percent_define_check_values): Use
2628 muscle_percent_define_get_loc.
2629 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2630 (muscle_percent_define_get_syncline): Prototype.
2631 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2632 defaults): Update output for location change.
2633 (Complaining during macro argument expansion): Extend to test
2634 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2635
2636 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2637
2638 Fix some error-reporting macro bugs.
2639 * data/bison.m4 (b4_cat): New.
2640 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2641 to stdout so they don't become arguments to other macros. Update
2642 comments and add examples.
2643 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2644 add examples.
2645 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2646 after printing the error directive so that M4 doesn't report subsequent
2647 problems that are induced by this problem.
2648 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2649 instead of just in them. Recognize @\n in both places. Both expand to
2650 the empty string. Needed by b4_cat.
2651 * tests/skeletons.at (Complaining during macro argument expansion):
2652 New test case.
2653 (Fatal errors make M4 exit immediately): New test case.
2654
2655 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2656
2657 Implement --print-datadir.
2658 * src/getargs.c (usage): Mention.
2659 (PRINT_DATADIR_OPTION): New anonymous enum member.
2660 (long_options): Add entry for it.
2661 (getargs): Add case for it calling compute_pkgdatadir.
2662 * src/output.c (output_skeleton): Encapsulate data directory
2663 computation from here...
2664 (prepare): ... and from here...
2665 (compute_pkgdatadir): ... into this new function.
2666 * src/output.h (compute_pkgdatadir): Prototype.
2667
2668 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2669
2670 * src/print-xml.c (escape_bufs): New static global variable
2671 replacing...
2672 (xml_escape_n): ... the static local variable buf here.
2673 (print_xml): Free memory for escape_bufs.
2674 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2675
2676 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2677
2678 Replace `%push-parser' and `%push-pull-parser' with
2679 `%define push_pull "push"' and `%define push_pull "both"'.
2680 `%define push_pull "pull"' is the default.
2681 * doc/bison.texinfo (Push Decl, Push Parser Function,
2682 Pull Parser Function, Parser Create Function, Parser Delete Function):
2683 Update declarations.
2684 (Decl Summary, Table of Symbols): Replace %push-parser and
2685 %push-pull-parser entries with a %define push_pull entry.
2686 * data/bison.m4 (b4_percent_define_check_values): New macro.
2687 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2688 definitions...
2689 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2690 definitions...
2691 * data/push.c: ... to here and compute them from the value of the
2692 %define variable push_pull.
2693 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2694 parsing requests here...
2695 * data/yacc.c: ... hack this to switch to push.c any time
2696 b4_use_push_pull_flag or the %define variable push_pull is set. This
2697 will go away when we mv push.c yacc.c.
2698 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2699 push parsing is not supported since unused %define variables are
2700 reported anyway.
2701 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2702 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2703 comments for consistency with b4_percent_define_check_values.
2704 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2705 muscles.
2706 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2707 Remove.
2708 (prologue_declaration): Remove %push-parser and %push-pull-parser
2709 rules.
2710 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2711 * tests/calc.at: Update declarations.
2712 * tests/input.at (%define enum variables): New test case.
2713 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2714 declaration.
2715 (Push Parsing: Multiple impure instances): Update declaration.
2716 (Push Parsing: Unsupported Skeletons): New test case.
2717 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2718 declaration.
2719 (Exploding the Stack Size with Malloc): Update declaration.
2720
2721 2007-09-24 Wojciech Polak <polak@gnu.org>
2722
2723 Add XSLT transformations.
2724
2725 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2726 * data/xslt/xml2text.xsl: Transform XML into plain text.
2727 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2728 * data/Makefile.am (xsltdir): New variable.
2729 (dist_xslt_DATA): Add xslt/*.xsl files.
2730
2731 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2732
2733 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2734 Problem reported by Wojciech Polak.
2735 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2736 (xml_printf): Undo change I made on 21 September; that is,
2737 indent 2 spaces, not 1.
2738
2739 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2740
2741 Pacify ./configure --enable-gcc-warnings.
2742 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2743 `char const *' instead of `char *'.
2744 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2745 local variable `sep'.
2746
2747 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2748
2749 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2750 elsewhere.
2751 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2752 (xml_printf): Indent just 1 space for level.
2753 (e_char, xlate_char): Remove.
2754 (xml_escape_string): Rewrite to avoid undefined behavior (used
2755 storage that was freed from the stack).
2756 (xml_escape_n): Don't bother checking for subscript error.
2757
2758 2007-09-21 Wojciech Polak <polak@gnu.org>
2759
2760 Add Bison XML Automaton Report.
2761
2762 Add support for an -x option to generate an XML report.
2763 It is not documented yet.
2764 * src/print-xml.c: New file.
2765 * src/print-xml.h: Likewise.
2766 * lib/timevar.def (TV_XML): New var.
2767 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2768 * src/conflicts.c: Include print-xml.h.
2769 (solved_conflicts_xml_obstack): New var.
2770 (log_resolution, conflicts_solve, conflicts_free):
2771 Add support for XML report.
2772 (conflicts_output_val): New function.
2773 * src/conflicts.h (conflicts_output_val): New decl.
2774 * src/files.c (spec_xml_file): New var.
2775 (compute_output_file_names, output_file_names_free): Add XML support.
2776 * src/files.h (spec_xml_file): New decl.
2777 * src/getargs.c (xml_flag): New var.
2778 (usage, short_options, long_options, getargs): Add XML support.
2779 * src/getargs.h (xml_flag): New decl.
2780 * src/gram.c: Include print-xml.h.
2781 (rule_lhs_print_xml, rule_rhs_print_xml):
2782 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2783 New functions.
2784 * src/gram.h: Declare external ones.
2785 * src/main.c: Include print-xml.h.
2786 (main): Add XML support.
2787 * src/reduce.c: Include print-xml.h.
2788 (reduce_xml): New function.
2789 * src/reduce.h: Declare it.
2790 * src/state.c: Include print-xml.h.
2791 (state_new): Add XML support.
2792 (state_rule_lookahead_tokens_print_xml): New function.
2793 * src/state.h: Declare it.
2794 (struct state): New member solved_conflicts_xml.
2795 * src/symtab.c (symbol_class_get_string): New function.
2796 * src/symtab.h: Declare it.
2797
2798 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2799
2800 * GNUmakefile: Switch to coreutils's version.
2801 * bootstrap: Likewise.
2802 * Makefile.cfg: Adjust to new GNUmakefile.
2803 * README-hacking: Likewise.
2804
2805 Import from gnulib:
2806
2807 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2808 Bruno Haible <bruno@clisp.org>
2809
2810 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2811 and is a script that invokes bison. Tighten the code. Add comments.
2812
2813 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2814
2815 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2816 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2817 * doc/bison.texinfo (Decl Summary): Fix.
2818 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2819 * tests/input.at (Boolean %define variables): Update output.
2820 * tests/skeletons.at (%define boolean variables: invalid skeleton
2821 defaults): Rename to...
2822 (%define Boolean variables: invalid skeleton defaults): ... this and
2823 update output.
2824
2825 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2826
2827 In impure push mode, don't allow more than one yypstate to be allocated
2828 since multiple impure parsers would corrupt yynerrs.
2829 * data/push.c (yypstate_allocated): New static global variable
2830 initialized to 0.
2831 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2832 exhaustion if yypstate_allocated is 1, but still return 2.
2833 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2834 already 1. Otherwise, set it to 1.
2835 (yypstate_delete): Set it to 0.
2836 * tests/push.at (Push Parsing: Multiple impure instances): New test
2837 case.
2838
2839 2007-08-17 Bob Rossi <bob@brasko.net>
2840
2841 * doc/bison.texinfo (Push Decl): Document the push parser.
2842 (Table of Symbols): Ditto.
2843 (Pure Decl): Ditto.
2844 (Decl Summary): Ditto.
2845 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2846 Parser Create Function, Parser Delete Function):
2847 Add new push parser symbols.
2848 (Table of Symbols): Document push-parser, push-pull-parser,
2849 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2850
2851 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2852
2853 Update to GPLv3.
2854 * doc/gpl-3.0.texi: New file.
2855 * doc/gpl.texi: Remove.
2856 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2857 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2858 * README-hacking, TODO, bootstrap, bootstrap.conf:
2859 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2860 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2861 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2862 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2863 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2864 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2865 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2866 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2867 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2868 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2869 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2870 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2871 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2872 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2873 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2874 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2875 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2876 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2877 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2878 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2879 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2880 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2881 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2882 * src/complain.c, src/complain.h, src/conflicts.c:
2883 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2884 * src/files.h, src/flex-scanner.h, src/getargs.c:
2885 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2886 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2887 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2888 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2889 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2890 * src/print.c, src/print.h, src/print_graph.c:
2891 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2892 * src/reduce.h, src/relation.c, src/relation.h:
2893 * src/revision.h, src/scan-code.h, src/scan-code.l:
2894 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2895 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2896 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2897 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2898 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2899 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2900 * tests/existing.at, tests/glr-regression.at:
2901 * tests/headers.at, tests/input.at, tests/java.at:
2902 * tests/local.at, tests/output.at, tests/push.at:
2903 * tests/reduce.at, tests/regression.at, tests/sets.at:
2904 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2905 * tests/torture.at:
2906 Update to GPLv3.
2907
2908 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2909
2910 Get rid of broken %no-parser, -n, and --no-parser implementation and
2911 documentation.
2912 * TODO: Don't mention them.
2913 * doc/bison.1: Likewise.
2914 * doc/bison.texinfo (Decl Summary): Likewise.
2915 (Bison Options): Likewise.
2916 (Option Cross Key): Likewise.
2917 * src/getargs.c (no_parser_flag): Remove global variable.
2918 (usage): Don't print description of -n and --no-parser.
2919 (long_options): Remove --no-parser entry here.
2920 (getargs): Remove -n case in the switch here.
2921 * src/getargs.h (no_parser_flag): Remove extern.
2922 * tests/regression.at (Web2c Actions): Remove comment that mentions
2923 --no-parser.
2924
2925 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2926
2927 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2928 name user variables starting with `yy'. Just pass NULL instead of a
2929 dummy local &yylval to yypush_parse.
2930 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2931 starting with `yy'.
2932
2933 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2934
2935 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2936 true since it's then always used regardless of whether yyoverflow is
2937 defined. Reported by Christian Burger at
2938 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2939 * THANKS: Add Christian Burger.
2940
2941 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2942 node names: say "Decl Summary" not "Bison Declaration Summary".
2943
2944 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2945
2946 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2947 determine whether this function has already complained about an invalid
2948 value for a %define boolean variable, don't check whether Bison has
2949 ever examined the value. As written, the check was a tautology.
2950 Instead, record and check for this complaint using a separate muscle.
2951
2952 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2953
2954 Fix push parsing memory leak reported by Brandon Lucia at
2955 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2956 * THANKS: Add Brandon Lucia.
2957 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2958 but the parse never completed and thus freed it.
2959 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2960 * tests/testsuite.at: Include push.at.
2961 * test/push.at: New.
2962 (Push Parsing: Memory Leak for Early Deletion): New test case.
2963
2964 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2965
2966 Improve handling of multiple S/R conflicts in the same state and of S/R
2967 conflicts involving multiple reductions.
2968 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2969 set for a state here or Bison will abort if it is reassigned on a
2970 later conflicted reduction in the same state.
2971 Similarly, don't finalize and assign the solved conflicts report here
2972 or it will be lost if it is reassigned on a later conflicted reduction
2973 in the same state.
2974 (set_conflicts): Instead, assign them both here after all S/R conflicts
2975 in the state have been fully examined.
2976 * src/print.c (shift_set): Rename to...
2977 (no_reduce_set): ... this.
2978 (print_reductions): Update for rename, and add %nonassoc error action
2979 tokens to no_reduce_set so that, when printing the first remaining
2980 reduction on an error action token, the reduction is enclosed in
2981 brackets.
2982 (print_results): Update for rename.
2983 * tests/conflicts.at (Solved conflicts report for multiple reductions
2984 in a state): New test case.
2985 (%nonassoc error actions for multiple reductions in a state): New test
2986 case.
2987
2988 * src/main.c (main): Don't depend on C99 features.
2989
2990 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2991
2992 * build-aux/.cvsignore: Add compile.
2993 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2994 uniwidth.
2995
2996 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2997
2998 * bootstrap (slurp): Create target directories that don't exist.
2999 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
3000
3001 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
3002
3003 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
3004 than item number.
3005 * closure.c (closure): Likewise.
3006 * state.h (reductions): Comment sorting of rules.
3007 (state): Comment sorting of items.
3008
3009 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
3010
3011 Fix C++ test cases after recent Gnulib changes. Discussed starting at
3012 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
3013 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
3014 definition in order to avoid Gnulib headers since we don't use config.h
3015 here.
3016 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
3017 rather than AT_DATA so that config.h is included.
3018
3019 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
3020
3021 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
3022 instead of fprintf. Guard these functions with #if YYDEBUG instead of
3023 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
3024 and so that YYFPRINTF is guaranteed to be defined here.
3025
3026 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
3027
3028 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
3029 with...
3030 (muscle_percent_define_check_values): ... this more helpful function.
3031 Again, it's not used yet, but it will be.
3032 * src/muscle_tab.h: Likewise.
3033
3034 Improve some comments in parser table construction.
3035 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
3036 (generate_states): Don't mention ruleset, which is internal to closure.
3037 * src/closure.c (closure): Explain sorting of core and itemset, which
3038 is required for this function to behave correctly.
3039 * src/closure.h (closure): Mention sorting.
3040
3041 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
3042
3043 * src/lalr.c (state_lookahead_tokens_count): For code readability,
3044 move the check for disabled transitions to an aver since conflict
3045 resolution hasn't happened yet.
3046
3047 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
3048 labels a state as inconsistent just because it has error transitions.
3049 The original form of this check appeared in revision 1.1 of lalr.c,
3050 which was committed on 1991-12-21. Now (at least), changing the
3051 consistency label on such a state appears to have no useful effect in
3052 any of the places it is examined, which I enumerate below. The key
3053 point to understanding each item in this enumeration is that a state
3054 with an error transition is labelled consistent in the first place only
3055 if it has no rules, so the check cannot matter for states that have
3056 rules. (1) Labelling a state as inconsistent will cause set_conflicts
3057 to try to identify its conflicts, and a state must have *rules* to have
3058 conflicts. (2) Labelling a state as inconsistent will affect how
3059 action_row sets the default *rule* for the state. (3) Labelling a
3060 state as inconsistent will cause build_relations to add lookback edges
3061 to *rules* in that state.
3062 * src/state.h (struct state): Word the comment for member consistent
3063 more carefully.
3064
3065 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3066
3067 Don't depend on C99 features.
3068 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
3069 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
3070 * src/reader.c (check_and_convert_grammar): Fix for-loop.
3071 * src/state.c (state_mark_reachable_states): Fix for-loop.
3072 (state_remove_unreachable_states): Fix for-loop.
3073
3074 Don't widen struct state with member reachable just to temporarily
3075 record reachability. Instead, use a local bitset.
3076 * src/state.h (struct state): Remove member.
3077 * src/state.c (state_new): Don't initialize it.
3078 (state_mark_reachable_states): Rename to...
3079 (state_record_reachable_states): ... this, and use bitset.
3080 (state_remove_unreachable_states): Use bitset.
3081
3082 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
3083
3084 * src/Makefile.am (yacc): Quote target action commands properly so
3085 that the yacc script isn't corrupt. Reported by Hans Aberg at
3086 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
3087
3088 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
3089 the case of pure parsers. Reported by Frans Englich at
3090 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
3091 * THANKS: Add Frans Englich.
3092
3093 * NEWS (2.3a+): In the %code entry, reference section `Bison
3094 Declaration Summary' from the manual now since the %code summary has
3095 moved there.
3096 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
3097 in the rules section must be terminated by semicolons.
3098
3099 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
3100
3101 Extend the front-end API for %define variables to more completely
3102 mirror the back-end. This will be useful in the future.
3103 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
3104 Update comments to mention the new front-end counterparts of these
3105 macros.
3106 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
3107 for muscle_string_decode and muscle_location_decode.
3108 (muscle_string_decode): New static function.
3109 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
3110 (muscle_percent_define_get, muscle_percent_define_ifdef): New
3111 functions.
3112 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
3113 muscle_percent_define_get to mimic the b4_percent_define_flag_if
3114 implementation more closely.
3115 (muscle_percent_define_invalid_value): New function.
3116 * src/muscle_tab.h (muscle_percent_define_get,
3117 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
3118 Prototype.
3119
3120 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3121
3122 * NEWS (2.3a+): Mention yesterday's state-removal change.
3123 (2.3a): Remove the %language entry, which was added after 2.3a.
3124 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
3125 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
3126 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
3127 tests/existing.at: Update copyright date.
3128
3129 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3130
3131 If conflict resolution makes states unreachable, remove those states,
3132 report rules that are then unused, and don't report conflicts in those
3133 states.
3134 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
3135 New global function.
3136 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
3137 function.
3138 * src/main.c (main): After conflict resolution, remove the unreachable
3139 states and update all data structures that reference states by number.
3140 * src/state.c (state_new): Initialize each state's reachable member to
3141 false.
3142 (state_mark_reachable_states): New static function.
3143 (state_remove_unreachable_states): New global function.
3144 * src/state.h (struct state): Add member bool reachable.
3145 (state_remove_unreachable_states): Prototype.
3146 * tests/conflicts.at (Unreachable States After Conflict Resolution):
3147 New test case.
3148 * tests/existing.at (GNU pic Grammar): Update test case output now that
3149 an unused rule is discovered.
3150
3151 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3152
3153 Minor code cleanup in parser table construction.
3154 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
3155 (new_itemsets, save_reductions): Update for rename to nitemset.
3156 * src/closure.c (nritemset): Rename to...
3157 (nitemset): ... this since the "r" appears to meaningless and isn't
3158 used in the comments.
3159 (closure): Update for rename.
3160 * src/closure.h (nritemset): Update extern to...
3161 (nitemset): ... this.
3162 * src/lalr.c (LA): Fix a typo in comments.
3163 * src/print.c (print_core): Update for rename to nitemset.
3164 * src/print_graph.c (print_graph): Likewise.
3165 * src/state.h: Fix some typos in header comments.
3166
3167 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
3168
3169 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
3170 still sticks to ASCII. Sorry!
3171
3172 * README-hacking: New file, taken mostly from coreutils, with changes
3173 for Bison. Contains much of the contents of:
3174 * README-cvs: Remove.
3175 * bootstrap: Sync from gnulib.
3176 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
3177 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
3178
3179 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
3180
3181 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
3182 Setzer.
3183 (Java Differences): Fix some typos.
3184 * THANKS: Add Sebastian Setzer.
3185
3186 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
3187
3188 * data/java.m4 (b4_single_class_if): Remove.
3189 (b4_abstract_if): Look at "%define abstract".
3190 (b4_lexer_if): New.
3191 (b4_union_name): Rename...
3192 (b4_yystype): ... to this. Map to "%define stype".
3193 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
3194 b4_maybe_throws): Fix quoting.
3195 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
3196 * data/lalr1.java (Lexer interface): Always define.
3197 (Lexer interface within parser class): Remove.
3198 (YYLexer class): New, used when "%code lexer" is present.
3199 (constructor): When "%code lexer" is used, pass %lex-param
3200 to the lexer constructor.
3201 (yylex, yyparse): Remove %lex-param from method invocations
3202 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
3203
3204 * doc/bison.texinfo (Java Bison Interface): Mention "%define
3205 abstract". Rename "%define union_name" to "%define stype".
3206 Rename method names according to previous patch.
3207 (Java Scanner Interface): Describe "%code lexer" instead of
3208 "%pure-parser" and "%define single_class".
3209 (Java Differences): Mention "%code lexer".
3210
3211 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
3212 Include scanner here, using macros from tests/local.at.
3213 (AT_DATA_CALC_Y): Remove final argument.
3214 (_AT_CHECK_JAVA_CALC): Likewise.
3215 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
3216 of %locations and %error-verbose.
3217 (main): Test with and without %lex-param.
3218 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
3219 (AT_BISON_OPTION_POPDEFS): Pop it.
3220
3221 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3222
3223 DJGPP spefic issue. Inhibit the use of disallowed characters for
3224 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3225 and concern testsuite case 46.
3226 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3227 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3228 * djgpp/config.bat: Inhibit the use of disallowed characters.
3229
3230 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3231
3232 Miscellaneous %define and %code cleanup.
3233 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3234 values are interpreted.
3235 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3236 documentation a little more.
3237 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3238 muscle_percent_define_insert, muscle_percent_code_grow): New
3239 functions/macros.
3240 * src/muscle_tab.h (muscle_percent_define_insert,
3241 muscle_percent_code_grow): Prototype.
3242 * src/parse-gram.y (prologue_declaration): Use
3243 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3244 %define and %code directives.
3245
3246 Make it easy to share %define boolean variables between the front-end
3247 and back-end. Though not used yet, this will be useful in the future.
3248 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3249 Bison uses of names rather than just skeleton uses of names.
3250 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3251 b4_percent_define_skeleton_variables(VARIABLE) to
3252 b4_percent_define_bison_variables(VARIABLE).
3253 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3254 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3255 b4_percent_code_bison_qualifiers(QUALIFIER).
3256 (b4_check_user_names_wrap): Update for renames.
3257 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3258 muscle_percent_define_default): New functions mimicking
3259 b4_percent_define_flag_if and b4_percent_define_default.
3260
3261 For %define variables, report locations for invalid values and
3262 redefinitions.
3263 * data/bison.m4 (b4_percent_define_flag_if): Read
3264 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3265 value for VARIABLE.
3266 (b4_percent_define_default): Save a special location in
3267 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3268 must later be reported as invalid.
3269 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3270 functions.
3271 (muscle_percent_define_insert): Record the location of VARIABLE in
3272 muscle percent_define_loc(VARIABLE), and use it to report the previous
3273 location for a redefinition.
3274 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3275 (muscle_percent_define_default): Update like b4_percent_define_default.
3276 (muscle_grow_user_name_list): Rename to...
3277 (muscle_user_name_list_grow): ... this for consistency and use
3278 muscle_location_grow.
3279 * src/muscle_tab.h (muscle_location_grow): Prototype.
3280 * tests/input.at (%define errors): Update expected output.
3281 * tests/skeletons.at (%define boolean variables: invalid skeleton
3282 defaults): New test case.
3283
3284 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3285
3286 * src/print.c (lookahead_set, state_default_rule): Remove.
3287 (print_reductions): Replace state_default_rule invocation with
3288 equivalent use of yydefact, which was computed in token_actions in
3289 tables.c.
3290 (print_results): Don't allocate lookahead_set.
3291
3292 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3293
3294 * data/lalr1.java: Prefix all private members with yy.
3295
3296 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3297
3298 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3299 Sebastien Fricker at
3300 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3301 * THANKS: Add Sebastien Fricker.
3302 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3303 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3304 accept a variable number of arguments.
3305
3306 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3307
3308 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3309
3310 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3311
3312 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3313 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3314 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3315
3316 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3317
3318 Undo my 2007-02-07 change, switching back to the c-strcase module
3319 introduced in the 2007-02-03 change. Bruno Haible reported that
3320 the 2007-02-07 change would be dangerous in Turkish if we add a
3321 language whose name contains "i", since "i" is not lowercase "I"
3322 in Turkish.
3323 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3324 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3325 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3326 * m4/.cvsignore: Remove strcase.m4.
3327 * src/getargs.c: Revert 2007-02-07 change, as follows.
3328 Include c-strcase.h.
3329 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3330
3331 2007-02-11 Bruno Haible <bruno@clisp.org>
3332
3333 Enable the Java related testsuite tests when the only Java compiler
3334 found is a gcj < 4.3. Discussed at
3335 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3336 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3337
3338 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3339
3340 * data/Makefile.am: Update copyright date.
3341 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3342 yypstate_new returns NULL.
3343 (yypstate_new): Return NULL if malloc does.
3344 * src/reader.c (packgram): Move translation of rule actions from the
3345 beginning of packgram to...
3346 (check_and_convert_grammar): ... here right before packgram is invoked
3347 so it's easier to write more complete comments, and remove redundant
3348 code.
3349
3350 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3351
3352 As in semantic actions, make @$ in %initial-action, %destructor, and
3353 %printer imply %locations.
3354 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3355 scanning @$.
3356 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3357 (@$ in %initial-action implies %locations,
3358 @$ in %destructor implies %locations,
3359 @$ in %printer implies %locations): ... these new test cases.
3360
3361 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3362
3363 Undo most of the 2007-02-03 change, switching to the strcase module
3364 now that gnulib strcase has been fixed.
3365 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3366 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3367 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3368 * m4/.cvsignore: Add strcase.m4.
3369 * src/getargs.c: Revert 2007-02-03 change, as follows.
3370 Don't include c-strcase.h.
3371 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3372 strcasecmp has "unspecified behavior" outside the POSIX locale,
3373 but it works fine in practice if at least one argument is ASCII,
3374 as is the case in Bison.
3375
3376 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3377
3378 * tests/java.at: Skip tests if only one of javac/java is present.
3379 Reported by Joel E. Denny.
3380 * tests/atlocal.in: Adjust copyright years.
3381
3382 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3383
3384 * data/lalr1.java (Stack): Work around old verifiers that disallow
3385 access to the private fields of an inner class, from the outer class.
3386 We can make Stack's fields public because user code doesn't have access
3387 to the instance of Stack used by parse(). Reported by Paul Eggert.
3388
3389 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3390
3391 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3392 the right spot for these files?
3393 * bootstrap.conf (gnulib_modules): Add c-strcase.
3394 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3395 c-strncasecmp.c.
3396 * src/getargs.c: Include c-strcase.h.
3397 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3398 to avoid unspecified behavior.
3399
3400 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3401
3402 * doc/bison.texinfo (Decl Summary): Correct typo.
3403
3404 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3405
3406 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3407 Complain if the value does not match empty, "true" or "false".
3408 * data/c++.m4: Adjust default definitions of %define variables.
3409 * data/java.m4: Adjust default definitions of %define variables.
3410 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3411 to above behavior.
3412 * tests/input.at (Boolean %define variables): Test new behavior.
3413
3414 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3415
3416 * NEWS: Mention java.
3417 * TODO: Remove things that are done.
3418 * bootstrap.conf: Add javacomp-script and javaexec-script.
3419 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3420
3421 * data/Makefile.am: Add new files.
3422 * data/java-skel.m4: New.
3423 * data/java.m4: New.
3424 * data/lalr1.java: New.
3425
3426 * doc/bison.texinfo: Put "A Complete C++ Example" under
3427 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3428 under Other Languages.
3429
3430 * src/getargs.c (valid_languages): Add Java.
3431 * src/getargs.h (struct bison_language): Update size of string fields.
3432
3433 * tests/Makefile.am: Add java.at.
3434 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3435 * tests/java.at: New.
3436 * tests/testsuite.at: Include it.
3437
3438 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3439
3440 Clean up.
3441 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3442 at_directive_argv arguments so these no longer have to be global
3443 variables. Also, update the implementation for the following changes.
3444 (fail_for_at_directive_too_many_args,
3445 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3446 (at_directive_name): Remove as at_directive_argv[0] will be used for
3447 this now.
3448 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3449 for the directive name.
3450 (at_directive_argc, at_directive_argv): Make these local within
3451 skel_lex instead of global.
3452 (INITIAL): Update directive start action for above changes.
3453 (SC_AT_DIRECTIVE_ARG): Rename to...
3454 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3455 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3456 (scan_skel): Move yylex_destroy to...
3457 (skel_scanner_free): ... here.
3458 * tests/skeletons.at (installed skeleton file name): Rename to...
3459 (installed skeleton file names): ... this.
3460
3461 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3462
3463 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3464 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3465 Summary" not "Directives".
3466 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3467 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3468 since the former is now the more complete one.
3469 (Prologue Alternatives): Likewise and do the same for %defines.
3470 (Table of Symbols): Add summary of %code, add summary of %define, and
3471 move full %code documentation to...
3472 (Decl Summary): ... here for consistency with other entries in these
3473 sections.
3474 Move %define entry in order to keep this list alphabetized.
3475 Reword %define entry a little to put less emphasis on the skeleton
3476 concept, which most users shouldn't have to think about.
3477
3478 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3479
3480 Adjust to recent gnulib changes.
3481 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3482 Add string.h, string_.h, unistd_.h, wchar_.h.
3483 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3484 * src/system.h: Don't include <stpcpy.h>; this is now done by
3485 <string.h>.
3486
3487 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3488
3489 Simplify implementation of unqualified %code, implement macros for
3490 uniform treatment of boolean %define flags. Document %define.
3491 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3492 b4_percent_code_ifdef): New.
3493 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3494 * data/c++.m4: Define default value for global_tokens_and_yystype.
3495 * data/glr.cc: Likewise.
3496 * data/location.cc: Use b4_percent_define_flag_if.
3497
3498 * doc/bison.texinfo (Decl Summary): Document %define.
3499
3500 * src/parse-gram.y (Unqualified %code): Change muscle name to
3501 b4_percent_code().
3502 (content.opt): Default to empty.
3503
3504 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3505
3506 Implement support for relative and absolute skeleton file names.
3507 Discussed starting at
3508 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3509 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3510 (Bison Options): Document in --skeleton entry.
3511 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3512 full_skeleton can't necessarily hold all of pkgdatadir.
3513 If the specified skeleton file name contains a `/', don't prepend
3514 pkgdatadir.
3515 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3516 file name contains a `/', prepend the grammar file directory.
3517 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3518 * skeletons.at: New file.
3519 (relative skeleton file names): New test case.
3520 (installed skeleton file names): New test case.
3521 * tests/testsuite.at: Include skeletons.at.
3522
3523 * bootstrap: Update copyright to 2007.
3524
3525 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3526
3527 * bootstrap: Remove occurrences of .#bootmp from the files.
3528
3529 2007-01-17 Akim Demaille <akim@epita.fr>
3530
3531 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3532 nonterminals.
3533 Use per-type %printer.
3534
3535 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3536
3537 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3538 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3539 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3540 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3541 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3542 tests/glr-regression.at, tests/input.at, tests/local.at,
3543 tests/output.at, tests/torture.at: Update copyright to 2007.
3544
3545 2007-01-16 Akim Demaille <akim@epita.fr>
3546
3547 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3548 error code.
3549 (Calc++ Scanner): Exit with failure if we can't open the input
3550 file.
3551 Accept "-" standing for stdin.
3552 (Calc++ Top Level): Print the result only if the parsing was
3553 successful.
3554
3555 2007-01-16 Akim Demaille <akim@epita.fr>
3556
3557 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3558
3559 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3560 and Joel E. Denny <jdenny@ces.clemson.edu>
3561
3562 Clean up %define and %code implementation in M4 some. Most
3563 importantly, rename all related macros to be in the b4_percent_define
3564 and b4_percent_code namespaces. Also, complete support for `.' in
3565 %define variable names and %code qualifiers.
3566 * data/bison.m4 (b4_check_user_names): Check for special
3567 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3568 m4_foreach loops.
3569 (b4_get_percent_define, b4_get_percent_code): Rename to...
3570 (b4_percent_define_get, b4_percent_code_get): ... these.
3571 Extend documentation with examples.
3572 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3573 b4_percent_define_skeleton_variables and
3574 b4_percent_code_skeleton_qualifiers.
3575 Expect any value for the %define variable `foo' to be stored in the
3576 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3577 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3578 expect any unqualified %code blocks to be stored in a macro named
3579 `b4_percent_code_unqualified'.
3580 Use m4_indir so that %define variable names and %code qualifiers can
3581 contain `.', which is allowed by the grammar parser.
3582 (b4_percent_define_default): New macro to set a default value for a
3583 %define variable.
3584 (m4_wrap): Update wrapped code, and fix some underquoting.
3585 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3586 Expect grammar uses of %define variables and %code qualifiers to be
3587 defined in b4_percent_define_user_variables and
3588 b4_percent_code_user_qualifiers.
3589 * data/c++.m4: Use b4_percent_define_default rather than
3590 m4_define_default. Fix some underquoting. Skeleton usage of %define
3591 variable define_location_comparison now implies skeleton usage of
3592 %define variable filename_type.
3593 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3594 data/push.c, data/yacc.c: Update macro names.
3595 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3596 muscle names.
3597
3598 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3599
3600 DJGPP specific issues.
3601
3602 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3603 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3604
3605 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3606
3607 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3608 run parsers in all tests so that Valgrind is invoked during
3609 maintainer-check-valgrind.
3610 (Duplicate representation of merged trees): Free all semantic values.
3611 (Duplicated user destructor for lookahead): Likewise.
3612
3613 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3614
3615 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3616 command-line prefix.
3617 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3618 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3619 miss Valgrind messages.
3620 (Exploding the Stack Size with Malloc): Likewise.
3621
3622 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3623
3624 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3625 locals. Reported by Juan Manuel Guerrero at
3626 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3627 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3628 Fix some indentation also.
3629 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3630 explaining this issue.
3631
3632 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3633 and Joel E. Denny <jdenny@ces.clemson.edu>
3634
3635 Simplify union and prologue handling, and escape union and lex/parse
3636 params with digraphs.
3637 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3638 values to the empty string since these are no longer guaranteed
3639 initialized by the front-end.
3640 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3641 braces around b4_user_stype since this is no longer done by the
3642 front-end.
3643 * src/files.c, src/files.h (pre_prologue_obstack,
3644 post_prologue_obstack): Remove.
3645 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3646 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3647 with digraphs. This fixes lex params and parse params.
3648 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3649 * src/output.c (prepare): Remove muscle insertion of the prologues.
3650 (output): Remove freeing of pre_prologue_obstack and
3651 post_prologue_obstack.
3652 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3653 than prologue_augment for prologue parsing so you don't need prologue
3654 obstacks.
3655 (grammar_declaration): For %union RHS, use `braceless' instead of
3656 "{...}" so that braces are already stripped and code is escaped with
3657 digraphs.
3658 * src/reader.c (prologue_augment): Remove.
3659 (reader): Remove initialization of pre_prologue_obstack and
3660 post_prologue_obstack.
3661 * src/reader.h (prologue_augment): Remove.
3662
3663 * data/c.m4: Remove stray parenthesis.
3664
3665 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3666
3667 Remove quotes from variables names in %define directives and from
3668 qualifiers in %code directives, and restrict the characters that are
3669 allowed in them to M4-friendly ones. For %define, continue to support
3670 the quoted form as a deprecated feature. Discussed starting at
3671 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3672 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3673 %code.
3674 * doc/bison.texinfo (Prologue Alternatives): Update.
3675 (Decl Summary): In %defines entry, update mention of `%code requires'
3676 and `%code provides'.
3677 (C++ Location Values): Update %define uses.
3678 (Calc++ Parser Interface): Likewise.
3679 (Calc++ Parser): Likewise, and update `%code requires' uses.
3680 (Table of Symbols): Update %code documentation.
3681 * src/parse-gram.y (prologue_declaration): For %define variables, use
3682 `variable' instead of `STRING'.
3683 (grammar_declaration): For %code qualifiers, use `ID' instead of
3684 `STRING'.
3685 (variable): New nonterminal that takes an `ID' or a `STRING'.
3686 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3687 and %define uses.
3688 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3689 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3690 (%define errors): Update %define uses.
3691
3692 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3693
3694 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3695 instead of muscle_insert for %define values so that M4-special
3696 characters are replaced with digraphs.
3697 * tests/input.at (%define errors): Extend to check weird values.
3698
3699 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3700
3701 Instead of having skeletons declare all valid %define variables and
3702 %code qualifiers, provide macros that retrieve the associated values
3703 and build these lists automatically. Thus Bison will now warn when a
3704 variable or qualifier is not used by the skeleton in the current
3705 invocation regardless of whether it might sometimes be used by that
3706 skeleton in other invocations. Also, move all %define value macros to
3707 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3708 form, which is replaced by %code.
3709 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3710 (b4_check_user_names): ... this, and change the series of valid name
3711 arguments to a single list argument for names used in the skeleton
3712 similar to the existing list argument for names used in the grammar.
3713 Warn instead of complaining.
3714 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3715 values and %code code, to format %code code properly, and to build
3716 lists of all %define variables and %code qualifiers used in the
3717 skeleton: b4_skeleton_percent_define_variables and
3718 b4_skeleton_percent_code_qualifiers.
3719 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3720 Remove, and...
3721 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3722 the skeleton names lists can finish building first. In place of
3723 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3724 expect the lists b4_user_percent_define_variables and
3725 b4_user_percent_code_qualifiers.
3726 * data/c++.m4: Where setting default values for b4_parser_class_name,
3727 b4_location_type, b4_filename_type, b4_namespace, and
3728 b4_define_location_comparison, update their names to the
3729 b4_percent_define_ namespace.
3730 * data/glr.c: Don't use b4_check_percent_define_variables and
3731 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3732 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3733 (b4_parser_class_name, b4_namespace): Define these using
3734 b4_get_percent_define for parser_class_name and namespace.
3735 * data/location.cc: Use b4_get_percent_define.
3736 * data/push.c: Don't use b4_check_percent_define_variables and
3737 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3738 * data/yacc.c: Likewise, and don't call m4_exit in
3739 b4_use_push_for_pull_if or m4_wrap code will never execute.
3740 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3741 Rename to...
3742 (muscle_grow_user_name_list): ... this for consistency with the
3743 terminology used in bison.m4.
3744 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3745 %define variable names, and rename muscle used_percent_define_variables
3746 to user_percent_define_variables.
3747 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3748 user_percent_code_qualifiers.
3749 (content): Remove.
3750 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3751 {CODE} form is no longer accepted.
3752 * tests/input.at (Reject bad %code qualifiers): Rename to...
3753 (Reject unused %code qualifiers): ... this, and update test output.
3754 (%define error): Update test output.
3755
3756 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3757
3758 Check for unrecognized %define variables similar to checking for
3759 unrecognized %code qualifiers. Check for redefined %define variables.
3760 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3761 generalizes...
3762 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3763 (b4_check_percent_define_variables): New, also wraps it.
3764 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3765 variables using b4_check_percent_define_variables.
3766 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3767 all those exercised in the test suite and all those listed in the
3768 `Default values' section of c++.m4. Are there others?
3769 * data/push.c, data/yacc.c: Declare no valid %define variables.
3770 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3771 similar to muscle_find, but it works even when the muscle stores a
3772 const value.
3773 (muscle_grow_used_name_list): New function for constructing the used
3774 name list muscles that b4_check_for_unrecognized_names requires.
3775 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3776 %define'd more than once. Define the b4_used_percent_define_variables
3777 muscle with muscle_grow_used_name_list.
3778 (grammar_declaration): Abbreviate %code code with
3779 muscle_grow_used_name_list.
3780 * tests/input.at (%define errors): New.
3781
3782 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3783
3784 Provide warn_at, complain_at, and fatal_at function callbacks to the
3785 skeletons, and use this for %code qualifier complaints.
3786 * data/bison.m4 (b4_error_at): New, invoked by...
3787 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3788 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3789 @fatal_at(...@) directives.
3790 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3791 qualifiers in b4_used_percent_code_qualifiers and to use
3792 b4_complain_at.
3793 * src/location.c, src/location.h (boundary_set_from_string): New global
3794 function.
3795 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3796 function.
3797 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3798 to b4_used_percent_code_qualifiers.
3799 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3800 function.
3801 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3802 (lineno): Rename to...
3803 (out_lineno): ... this so I don't misunderstand it again.
3804 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3805 here; these newlines are in the input but not the output file.
3806 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3807 (at_directive_perform): ... this new static function, and add handling
3808 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3809 directives.
3810 * tests/input.at (Reject bad %code qualifiers): Update test output with
3811 locations and extend.
3812
3813 * tests/output.at (Output file name: [, Output file name: ]): Remove
3814 bogus comment about these tests failing.
3815
3816 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3817
3818 Clean up b4_check_percent_code_qualifiers a little.
3819 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3820 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3821 documentation and add examples.
3822 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3823 qualifiers here.
3824
3825 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3826
3827 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3828 unreliable -- especially when they're hidden inside another macro.
3829 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3830 data/c.m4: Remove m4_divert(-1).
3831 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3832 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3833 m4_divert_push(0) and m4_divert_pop(0).
3834 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3835 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3836 pushed and popped by m4sugar, should be first on the stack.
3837
3838 Provide warn, complain, and fatal function callbacks to the skeletons.
3839 This provides more flexibility than m4_fatal, improves the error
3840 message format, and captures messages for translation. Discussed
3841 starting at
3842 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3843 * data/bison.m4 (b4_error): New, invoked by...
3844 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3845 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3846 directives. Because these M4 macros might be called when the current
3847 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3848 the previous removal of uses of m4_divert, which caused trouble.
3849 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3850 m4_fatal to report unrecognized %code qualifiers.
3851 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3852 push parser requests.
3853 * data/glr.c: Use b4_complain instead of m4_fatal to report
3854 non-deterministic push parser requests.
3855 Update @output usage to @output(...@) form.
3856 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3857 report missing %defines. Update @output usage to @output(...@) form.
3858 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3859 @output(...@) form.
3860 * src/main.c (main): Invoke skel_scanner_free.
3861 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3862 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3863 obstack_for_string from flex-scanner.h.
3864 (YY_DECL): Use to declare skel_lex static.
3865 (decode_at_digraphs): Remove; now handled in the new
3866 SC_AT_DIRECTIVE_ARG start condition.
3867 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3868 functions.
3869 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3870 at_directive_argv): New static globals.
3871 (INITIAL): Use fail_for_invalid_at.
3872 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3873 recognize the start of a generalized `@directive(...@)' form and
3874 start...
3875 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3876 directive args (using the new obstack_for_string), to decode the
3877 contained @ diagraphs, and to perform the directive. It recognizes
3878 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3879 @output(...@).
3880 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3881 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3882 `@,'.
3883 (scan_skel): Initialize obstack_for_string on the first call.
3884 (skel_scanner_free): New function to free obstack_for_string.
3885 * tests/input.at (Reject bad %code qualifiers): Update test output.
3886
3887 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3888
3889 Consolidate the 4 prologue alternative directives (%code, %requires,
3890 %provides, and %code-top) into a single %code directive with an
3891 optional qualifier field. Discussed at
3892 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3893 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3894 alternatives.
3895 * doc/bison.texinfo (Prologue Alternatives): Update.
3896 (Decl Summary): Update to %code "requires" and %code "provides".
3897 (Calc++ Parser): Update to %code "requires".
3898 (Table of Symbols): Remove entries for %requires, %provides, and
3899 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3900 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3901 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3902 which are skeleton-specific.
3903 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3904 declare what %code qualifiers it supports and to complain if any other
3905 qualifiers were used in the grammar.
3906 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3907 and b4_user_code([b4_percent_code_provides]) in place of
3908 b4_user_requires and b4_user_provides.
3909 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3910 Add b4_user_code([b4_percent_code_top]) and
3911 b4_user_code([b4_percent_code]).
3912 Invoke b4_check_percent_code_qualifiers.
3913 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3914 PERCENT_REQUIRES): Remove.
3915 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3916 %requires. Rewrite the %code RHS as the unqualified form defining the
3917 muscle b4_percent_code. Add another RHS for the qualified %code form,
3918 which defines muscles of the form b4_percent_code_QUALIFIER and the
3919 b4_used_percent_code_qualifiers muscle.
3920 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3921 PERCENT_REQUIRES): Remove.
3922 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3923 %code "requires" and %code "provides".
3924 * tests/input.at (Reject bad %code qualifiers): New.
3925
3926 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3927
3928 Use the new code_props interface for destructors and printers.
3929 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3930 printer_location members, and change the type of the destructor and
3931 printer members to code_props.
3932 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3933 symbol_printer_get, semantic_type_destructor_set,
3934 semantic_type_printer_set, default_tagged_destructor_set,
3935 default_tagless_destructor_set, default_tagged_printer_set,
3936 default_tagless_printer_set): Use code_props in arguments and return
3937 types in place of char const * and location.
3938 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3939 since the locations are now contained in the return of
3940 symbol_destructor_get and symbol_printer_get.
3941 * src/output.c (symbol_destructors_output, symbol_printers_output):
3942 Replace with...
3943 (symbol_code_props_output): ... this to eliminate duplicate code.
3944 (output_skeleton): Update to use symbol_code_props_output.
3945 * src/reader.c (symbol_should_be_used): Update use of
3946 symbol_destructor_get.
3947 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3948 Update uses of the various _destructor_set and _printer_set functions.
3949 * src/symtab.c: (default_tagged_destructor_location,
3950 default_tagless_destructor_location, default_tagged_printer_location,
3951 default_tagless_printer_location): Remove since we...
3952 (default_tagged_destructor, default_tagless_destructor,
3953 default_tagged_printer, default_tagless_printer): ... change the type
3954 of these to code_props.
3955 (symbol_new, semantic_type_new, symbol_destructor_set,
3956 semantic_type_destructor_set, symbol_destructor_get,
3957 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3958 symbol_check_alias_consistency, default_tagged_destructor_set,
3959 default_tagless_destructor_set, default_tagged_printer_set,
3960 default_tagless_printer_set): Update.
3961 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3962 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3963 code_props members.
3964 (symbol_print): Use SYMBOL_CODE_PRINT.
3965
3966 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3967
3968 Use the new code_props interface for rule actions.
3969 * src/symlist.h (symbol_list): Replace action, action_location, and
3970 used members with a code_props action_props member.
3971 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3972 grammar_midrule_action, grammar_current_rule_merge_set,
3973 grammar_current_rule_symbol_append, packgram): Update.
3974 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3975 * src/scan-code.l (handle_action_dollar): Update.
3976 (translate_rule_action): Remove, no longer used.
3977 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3978
3979 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3980
3981 Use the new code_props interface in parse-gram.y.
3982 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3983 Update all uses of translate_* functions to use the new code_props
3984 interface and to use gram_scanner_last_string_free and
3985 code_scanner_last_string_free where possible.
3986 (grammar_declaration): symbol_list_destructor_set and
3987 symbol_list_printer_set now perform the translation, so don't do it
3988 here. Use gram_scanner_last_string_free where possible.
3989 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3990 translate_code): Remove, no longer used.
3991 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3992 symbol_list_printer_set): Perform code translation here rather than
3993 depending on the caller to do so.
3994
3995 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3996 * src/scan-gram.h (gram_last_string): Remove declaration.
3997 * src/scan-gram.l (last_string): Declare it static.
3998
3999 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
4000
4001 Encapsulate code properties and related functionality for the various
4002 destructors, printers, and actions into a code_props structure and
4003 interface. This patch merely implements code_props in scan-code.h and
4004 scan-code.l. Future patches will rewrite other modules to use it.
4005 Discussed starting at
4006 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
4007 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
4008 consistently initialize const structs that have an empty location
4009 field.
4010 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
4011 to ensure consistency.
4012 * src/scan-code.h (code_props): New structure.
4013 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
4014 function, macro, and const global variable for initializing a
4015 code_props with no code.
4016 (code_props_plain_init, code_props_symbol_action_init,
4017 code_props_rule_action_init, code_props_translate_code): The rest of
4018 the new code_props functional interface. Among other things, the init
4019 functions set the code_props kind field so that
4020 code_props_translate_code will know whether to behave like
4021 translate_symbol_action, translate_rule_action, or translate_code.
4022 These old translate functions must remain until all other modules are
4023 updated to use the new code_props interface.
4024 (code_scanner_last_string_free): New function similar to
4025 gram_scanner_last_string_free.
4026 (code_scanner_free): Add documentation.
4027 * src/scan-code.l: Implement the new interface.
4028 (code_lex): Make it static, add a code_props* argument, and remove the
4029 rule argument.
4030 (last_string): New static global similar to the one in scan-gram.l.
4031 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
4032 instead of rule.
4033 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
4034 code_props since Bison may one day use this information for destructors
4035 and printers.
4036 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
4037 (handle_action_dollar): Use symbol_list_n_get and set used flag
4038 directly since symbol_list_n_used_set is removed.
4039 (translate_action): Add a code_props* argument and remove the rule,
4040 action, and location arguments. Pass the code_props* on to code_lex.
4041 (translate_rule_action, translate_symbol_action, translate_code):
4042 Rewrite as wrappers around the new code_props interface.
4043 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
4044 it would eventually need to break the encapsulation of code_props.
4045
4046 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4047
4048 * etc/.cvsignore: New.
4049
4050 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
4051
4052 Add maintainer-push-check to run maintainer-check using push parsing in
4053 place of pull parsing where available.
4054 * Makefile.am (maintainer-push-check): New.
4055 * data/bison.m4 (b4_use_push_for_pull_if): New.
4056 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
4057 appropriately based on their existing values.
4058 (yypush_parse): Don't print push-parser-specific diagnostics if push
4059 parsing is being used in place of pull parsing.
4060 * data/yacc.c: If push parsing should replace pull parsing, redirect to
4061 push.c.
4062 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
4063 variable, and insert b4_use_push_for_pull_flag into muscles.
4064 * tests/Makefile.am (maintainer-push-check): New.
4065
4066 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4067
4068 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
4069 (whether successful or failed) so that yypush_parse can be invoked
4070 again to start a new parse using the same yypstate.
4071 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
4072 check multiple yypull_parse invocations on the same yypstate. For pull
4073 mode, extend to check multiple yyparse invocations.
4074 (Exploding the Stack Size with Alloca): Extend to try with
4075 %push-pull-parser.
4076 (Exploding the Stack Size with Malloc): Likewise.
4077
4078 * tests/calc.at (Simple LALR Calculator): Don't specify
4079 %skeleton "push.c" since %push-pull-parser implies that now.
4080 * tests/headers.at (export YYLTYPE): Don't check for the push
4081 declarations. Otherwise, this test case can't be used to see if push
4082 mode can truly emulate pull mode.
4083 * tests/input.at (Torturing the Scanner): Likewise.
4084 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
4085 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
4086 AT_YACC_IF, which now includes the case of push mode since %skeleton
4087 need not be used for push mode. This will be more intuitive once
4088 push.c is renamed to yacc.c.
4089
4090 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
4091
4092 For push mode, convert yyparse from a macro to a function, invoke yylex
4093 instead of passing a yylexp argument to yypull_parse, and don't
4094 generate yypull_parse or yyparse unless %push-pull-parser is declared.
4095 Discussed starting at
4096 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
4097 * data/bison.m4 (b4_pull_if): New.
4098 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
4099 * data/push.c: Improve M4 quoting a little.
4100 (b4_generate_macro_args, b4_parenthesize): Remove.
4101 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
4102 any time a pull parser is requested.
4103 Don't #define this as a wrapper around yypull_parse. Instead, when
4104 both push and pull are requested, make it a function that does that
4105 same thing.
4106 (yypull_parse): If there's a b4_prefix, #define this to
4107 b4_prefix[pull_parse] when both push and pull are requested.
4108 Don't define this as a function unless both push and pull are
4109 requested.
4110 Remove the yylexp argument and hard-code yylex invocation instead.
4111 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
4112 %push-parser.
4113 * src/getargs.c (pull_parser): New global initialized to true.
4114 * getargs.h (pull_parser): extern it.
4115 * src/output.c (prepare): Insert pull_flag muscle.
4116 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
4117 (prologue_declaration): Set both push_parser and pull_parser = true for
4118 %push-pull-parser. Set push_parser = true and pull_parser = false for
4119 %push-parser.
4120 * src/scan-gram.l: Don't accept %push_parser as an alternative to
4121 %push-parser since there's no backward-compatibility concern here.
4122 Scan %push-pull-parser.
4123 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
4124 instead of %push-parser.
4125 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
4126 prototype it in the module that calls yyparse.
4127 * tests/input.at (Torturing the Scanner): Likewise.
4128 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
4129
4130 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
4131
4132 Update etc/bench.pl. Optimize push mode a little (the yyn change
4133 deserves most of the credit).
4134 * Makefile.am (SUBDIRS): Add etc subdirectory.
4135 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
4136 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
4137 yytoken, yyval, and yyloc declarations to...
4138 (yyparse or yypush_parse): ... here to improve performance. For
4139 yypush_parse invocations after the first, be sure to assign yyn its old
4140 value again.
4141 (yypstate_new): Don't bother initializing the yyresult field since the
4142 initial value isn't used.
4143 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
4144 remove the #define that, in push mode, set it to yyps->NAME.
4145 * etc/Makefile.am: New.
4146 * etc/bench.pl: Remove and build it instead from...
4147 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
4148 "tests/bison" from the build directory by default rather than just
4149 invoking "bison" from $PATH.
4150 (calc_grammar): Update push parser code: don't declare yylval globally,
4151 don't define yyparse_wrapper, and don't #define yyparse.
4152 (bench_grammar): Update to check all working combinations of yacc.c,
4153 push.c, impure, pure, pull, and push.
4154
4155 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4156
4157 For push mode, add pull wrappers around yypush_parse.
4158 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
4159 (yypull_parse): New function wrapping yypush_parse.
4160 (yyparse): New #define wrapping yypull_parse.
4161 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
4162 is declared.
4163 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
4164 prototype yylex in the module that calls yyparse, and don't prototype
4165 yyparse there. Otherwise, the yyparse expansion won't compile.
4166 * tests/input.at (Torturing the Scanner): Likewise.
4167
4168 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
4169
4170 Enable push parsers to operate in impure mode. Thus, %push-parser no
4171 longer implies %pure-parser. The point of this change is to move
4172 towards being able to test the push parser code by running the entire
4173 test suite as if %push-parser had been declared.
4174 * data/push.c (yypush_parse): For impure mode, remove the
4175 yypushed_char, yypushed_val, and yypushed_loc arguments.
4176 Instead, declare these as local variables initialized to the global
4177 yychar, yylval, and yylloc.
4178 For the first yypush_parse invocation only, restore the initial values
4179 of these global variables when it's time to read a token since they
4180 have been overwritten.
4181 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
4182 %push-parser.
4183 * tests/calc.at (Simple LALR(1) Calculator): Always declare
4184 %pure-parser along with %push-parser since this test case was designed
4185 for pure push parsers.
4186 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
4187 (AT_YACC_OR_PUSH_IF): New.
4188 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
4189 add a note that it's still wrong for some cases (as it has been for a
4190 while).
4191 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
4192 %push-parser no longer implies %pure-parser.
4193
4194 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4195
4196 Remove some unnecessary differences between the pull parser code and
4197 the push parser code. This patch enables yynerrs in push mode.
4198 * data/push.c: Reformat M4 a little.
4199 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
4200 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
4201 because push mode is on. Instead, if pure mode is on, move yynerrs
4202 to...
4203 (b4_declare_parser_state_variables): ... here.
4204 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
4205 to yyps->NAME so it can be used in yypush_parse.
4206 (yypush_parse): Don't omit uses of yynerrs in push mode.
4207
4208 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4209
4210 Fix bug such that the first pushed token's value and location are
4211 sometimes overwritten (sometimes by %initial-action) before being used.
4212 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
4213 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
4214 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
4215 more closely mimic the pull parser logic.
4216 Don't copy the pushed token to yychar, yylval, and yylloc until it's
4217 time to read a token, which is after any initialization of yylval and
4218 yylloc.
4219 (gottoken): Rename label to...
4220 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4221 user namespace.
4222
4223 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4224
4225 Rearrange initialization of the parser state variables so that the
4226 skeleton doesn't have to have a copy for pull mode and another for push
4227 mode. This patch also fixes at least a bug such that yylloc was not
4228 initialized (with b4_location_initial_line and
4229 b4_location_initial_column) upon calling yypush_parse. However, that
4230 initialization now overwrites the first token's location;
4231 %initial-action assigning @$ already did the same thing, and both bugs
4232 will be fixed in a later patch.
4233 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4234 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4235 yyss, yyvs, yyls, and yystacksize.
4236 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4237 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4238 yylsp.
4239 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4240 yyps->NAME so it can be used in yypush_parse.
4241 (yyparse or yypush_parse): For yypush_parse, don't print the
4242 "Starting parse" diagnostic for invocations after the first.
4243 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4244 yypush_parse, only do it for the first invocation.
4245 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4246 initialization to occur in yypush_parse but only on the first
4247 invocation.
4248
4249 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4250
4251 * data/push.c: Add CPP guards around push parser declarations in both
4252 the header and the code file.
4253 In the code file, move the push parser declarations to the same place
4254 they appear in the header file.
4255 Clean up the M4 some, especially the inconsistent underquoting in
4256 some b4_c_function_def and b4_c_function_decl uses.
4257
4258 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4259
4260 Encapsulate the push parser state variables into an M4 macro so the
4261 push skeleton doesn't have to list them again for pull mode's yyparse.
4262 For push mode, remove yypush_parse's local equivalents of these
4263 variables to eliminate unnecessary copying between the two sets at
4264 run-time. This patch also fixes at least a bug related to multiple
4265 %initial-action invocations in push mode.
4266 * data/push.c (b4_declare_parser_variables): Rename to...
4267 (b4_declare_scanner_communication_variables): ... this for clarity and
4268 update both uses.
4269 (b4_declare_yyparse_variables): Remove and move its contents to the one
4270 spot where it was invoked.
4271 (b4_declare_parser_state_variables): New macro containing the parser
4272 state variables required by push mode.
4273 (struct yypstate): Replace all fields but yynew with
4274 b4_declare_parser_state_variables.
4275 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4276 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4277 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4278 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4279 parser state variable declarations with
4280 b4_declare_parser_state_variables.
4281 Don't initialize parser state variables when calling yypush_parse since
4282 yypstate_new already does that.
4283 Invoke the user's initial action only upon the first yypush_parse
4284 invocation.
4285 Remove all code that copies between the local parser state variables
4286 and the yypstate.
4287
4288 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4289
4290 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4291 prevent a name collision in a future patch where these names will
4292 sometimes be #define'd.
4293 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4294 since it no longer has the same name as the existing argument.
4295 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4296
4297 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4298 and Joel E. Denny <jdenny@ces.clemson.edu>
4299
4300 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4301 that the argument is case-insensitive, and there's no `=' here.
4302 For the %skeleton entry, mention that %language is better.
4303 (Bison Options): Likewise for --language and --skeleton. Move the
4304 --skeleton entry so that the `Tuning the parser' section is sorted
4305 alphabetically on long options.
4306 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4307 %language directive in detail here; cross-reference the %language
4308 documentation instead.
4309 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4310 `%require "2.3b"' so that the example is always up-to-date.
4311 (Table of Symbols): Add entries for %language and %skeleton.
4312 * examples/extexi (normalize): Instead of replacing every %require
4313 argument with the current Bison version, just substitute for
4314 `@value{VERSION}'. This guarantees that we're testing what actually
4315 appears in the documentation.
4316 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4317 rather than `@VERSION@'.
4318
4319 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4320
4321 * NEWS: Reword the %language news a bit, and put it earlier.
4322
4323 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4324 Rewrite to simplify the logic.
4325 (language_argmatch): Likewise.
4326 (program_name): We now own this var.
4327 * src/getargs.h (struct bison_language): Use char[] rather than
4328 const char *.
4329
4330 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4331 Java is supported.
4332 * src/complain.c (program_name): Remove decl; no longer needed.
4333 * src/main.c (program_name): Remove; now belongs to getargs.
4334
4335 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4336
4337 * NEWS: Document %language.
4338
4339 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4340
4341 * data/c-skel.m4, data/c++-skel.m4: New files.
4342 * data/glr.c: Complain on push parsers.
4343
4344 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4345 over %skeleton.
4346 (Decl Summary): Document %language and %skeleton.
4347 (Command line): Document -L.
4348
4349 * examples/extexi: Rewrite %require directive.
4350 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4351
4352 * src/files.c (compute_exts_from_gc): Look in language structure
4353 for .y extension.
4354 (compute_file_name_parts): Check whether .tab should be added.
4355 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4356 (language, skeleton_arg, language_argmatch): New.
4357 (long_options): Add --language.
4358 (getargs): Use skeleton_arg, add -L/--language.
4359 * src/getargs.h: Include location.h.
4360 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4361 * src/output.c (prepare): Pick default skeleton from struct language.
4362 Don't dispatch C skeletons here.
4363 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4364 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4365 * src/scan-gram.l ("%language"): New rule.
4366
4367 * tests/calc.at: Test %skeleton and %language.
4368 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4369 (AT_GLR_IF): Look for %skeleton "glr.cc".
4370 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4371 (AT_YACC_IF): Reject %language.
4372
4373 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4374
4375 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4376 since it wasn't used; only the typedef name 'semantic_type' is needed.
4377 Also, omit trailing white space.
4378
4379 * bootstrap: Sync from coreutils.
4380 (gnulib_extra_files): Add build-aux/announce.gen.
4381 (slurp): Adjust .gitignore files like .cvsignore files.
4382 * build-aux/announce-gen: Remove from CVS, since bootstrap
4383 now creates this.
4384
4385 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4386
4387 Make %push-parser imply %pure-parser. This fixes several bugs; see
4388 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4389 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4390 pure_parser = true.
4391 * data/push.c: Don't bother testing b4_push_if when deciding whether
4392 to expand b4_declare_parser_variables globally.
4393 (yypush_parse): Likewise in here.
4394
4395 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4396 (yy_reduce_print): Reformat M4 for readability.
4397
4398 2006-12-15 Bob Rossi <bob@brasko.net>
4399 and Joel Denny <jdenny@ces.clemson.edu>
4400
4401 * data/push.c (yypstate): Add typedef, and update all uses of
4402 struct yypstate to just yypstate.
4403 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4404
4405 2006-12-14 Bob Rossi <bob@brasko.net>
4406
4407 * data/push.c (yypush_parse): Declare prototype regardless of
4408 %locations option.
4409
4410 2006-12-14 Bob Rossi <bob@brasko.net>
4411
4412 * data/push.c (yyparse): Remove the prototype and the #define when in
4413 push-parser mode.
4414
4415 2006-12-13 Bob Rossi <bob@brasko.net>
4416
4417 * data/push.c (yypstate_init): Rename to...
4418 (yypstate_new): ... this and use b4_c_function_def.
4419 (yypstate_delete): New.
4420 (yypush_parse): Change parameters yynval and yynlloc to be const.
4421 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4422 yypstate_delete functions.
4423
4424 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4425
4426 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4427 strange test case titles. Reported by Bob Rossi.
4428
4429 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4430
4431 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4432 of potential ambiguities in GLR grammers.
4433
4434 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4435
4436 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4437 `bison ', use m4_index instead of m4_substr since chopping up a string
4438 containing M4-special characters causes problems here.
4439
4440 Fix a couple of bugs related to special characters in user-specified
4441 file names, and make it easier for skeletons to compute output file
4442 names with the same file name prefix as Bison-computed output file
4443 names.
4444 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4445 b4_parser_file_name and b4_spec_defines_file instead of
4446 @output_parser_name@ and @output_header_name@, which are now redundant.
4447 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4448 b4_parser_file_name, b4_spec_defines_file, and the new
4449 @basename(FILENAME@) instead of @output_parser_name@ and
4450 @output_header_name@, which inappropriately escaped the file names as
4451 C string literals.
4452 * src/files.c (all_but_ext): Remove static qualifier.
4453 (compute_output_file_names): Move `free (all_but_ext)' to...
4454 (output_file_names_free): ... here since all_but_ext is needed later.
4455 * src/files.h (all_but_ext): Extern.
4456 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4457 exactly what MUSCLE_INSERT_STRING used to do.
4458 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4459 characters are escaped properly.
4460 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4461 all_but_ext.
4462 For pkgdatadir muscle, maintain previous functionality by using
4463 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4464 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4465 digraphs would never be expanded. Hopefully no one has M4-special
4466 characters in his Bison installation path.
4467 * src/scan-skel.l: Don't parse @output_header_name@ and
4468 @output_parser_name@ anymore since they're now redundant.
4469 In @output, use decode_at_digraphs.
4470 Parse a new @basename command that invokes last_component.
4471 (decode_at_digraphs): New.
4472 (BASE_QPUTS): Remove unused.
4473 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4474 (Output file name): New tests.
4475
4476 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4477
4478 Warn about output files that are generated by the skeletons and that
4479 conflict with other output files.
4480 * data/glr.c: Don't generate the header file here when glr.cc does.
4481 * src/files.c (file_names, file_names_count): New static globals.
4482 (compute_output_file_names): Invoke output_file_name_check for files
4483 not generated by the skeletons and remove existing checks.
4484 (output_file_name_check): New function that warns about conflicting
4485 output file names.
4486 (output_file_names_free): Free file_names.
4487 * src/files.h (output_file_name_check): Declare.
4488 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4489 the skeletons.
4490 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4491 (Conflicting output files): New tests.
4492
4493 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4494
4495 * doc/bison.texinfo: Fix a couple of typos.
4496
4497 2006-12-08 Bob Rossi <bob@brasko.net>
4498
4499 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4500 Rename to...
4501 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4502 update all uses.
4503 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4504 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4505 local pv.
4506 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4507 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4508
4509 2006-12-07 Bob Rossi <bob@brasko.net>
4510 and Joel Denny <jdenny@ces.clemson.edu>
4511
4512 * data/push.c (yypvarsinit): Change return type from void* to struct
4513 yypvars*. No longer cast to void* on return.
4514 (struct yypvars): Remove yylen since it need not be remembered between
4515 yypushparse invocations.
4516 (yypushparse): Don't copy between yylen and pv->yylen.
4517
4518 2006-12-05 Bob Rossi <bob@brasko.net>
4519
4520 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4521 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4522 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4523 (struct yypvars): Remove b4_declare_parser_variables.
4524 (yypvarsinit): Remove init code for removed variables.
4525 (global scope): Do not declare b4_declare_parser_variables if
4526 push or pure mode.
4527 (yypushparse): Add b4_declare_parser_variables.
4528 Init new local variables, and remove init code for removed
4529 yypvars variables.
4530 (yyparse): Delete.
4531 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4532 and yyparse for other modes.
4533 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4534 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4535 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4536 (AT_PURE_LEX_IF): True if pure or push parser.
4537
4538 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4539
4540 Document Yacc prologue alternatives and default %destructor's and
4541 %printer's as experimental. Don't mention Java yet. Discussed at
4542 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4543 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4544 (2.3a): Annotate this entry to say the old forms of these features were
4545 also experimental.
4546 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4547 Table of Symbols): Say they're experimental. Comment out any mention
4548 of Java (we'll want this back eventually).
4549
4550 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4551
4552 Support a file name argument to %defines. Deprecate `=' in
4553 %file-prefix, %name-prefix, and %output. Discussed at
4554 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4555 * NEWS (2.3a+): Mention.
4556 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4557 form of %defines, and remove `=' from entries for %file-prefix,
4558 %name-prefix, and %output.
4559 * src/parse-gram.y (prologue_declaration): Implement.
4560 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4561 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4562 all but one occurrence of %name-prefix.
4563 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4564 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4565 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4566 occurrence of each of %file-prefix and %output. Add check for %defines
4567 with argument.
4568 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4569 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4570 Remove the `=' from %output.
4571
4572 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4573
4574 Don't escape $ in test case titles since Autoconf 2.61 now does that
4575 correctly.
4576 * tests/actions.at (Default %printer and %destructor are not for error
4577 or $undefined): Here.
4578 (Default %printer and %destructor are not for $accept): Here.
4579 * tests/input.at (Invalid $n and @n): Here.
4580
4581 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4582
4583 Rename <!> to <>. Discussed starting at
4584 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4585 * NEWS (2.3a+): Update.
4586 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4587 Update.
4588 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4589 * src/scan-gram.l (INITIAL): Implement.
4590 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4591 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4592 comment.
4593 * tests/actions.at (Default tagless %printer and %destructor,
4594 Default tagged and per-type %printer and %destructor,
4595 Default %printer and %destructor are not for error or $undefined,
4596 Default %printer and %destructor are not for $accept,
4597 Default %printer and %destructor for mid-rule values): Update.
4598 * tests/input.at (Default %printer and %destructor redeclared,
4599 Unused values with default %destructor): Update.
4600
4601 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4602
4603 Don't let %prec take a nonterminal.
4604 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4605 token.
4606 * tests/input.at (%prec takes a token): New test checking that %prec
4607 won't take a nonterminal.
4608
4609 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4610
4611 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4612 it was double-quoted.
4613 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4614 grammar is maintained with Bison's highest standards.
4615 * src/getargs.c: Fix some typos in Doxygen comments.
4616
4617 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4618
4619 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4620 later. Reported by Paul Eggert in
4621 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4622 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4623 * src/scan-code.l (translate_action): Don't bother invoking
4624 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4625 (code_scanner_free): Instead of invoking
4626 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4627 which frees more.
4628 * src/scan-gram.l (gram_scanner_free): Likewise.
4629 * src/scan-skel.l (scan_skel): Likewise.
4630
4631 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4632
4633 * src/files.c (tr): Change return type to void.
4634 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4635 has been called previously for the same key.
4636 (muscle_find): Return storage instead of value so that
4637 --enable-gcc-warnings doesn't produce warnings that the return discards
4638 const. aver that the value and storage are the same since storage
4639 could potentially be NULL when value is not.
4640 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4641 same as 0.
4642
4643 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4644
4645 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4646 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4647 us a slightly cleaner distribution, and also works.
4648 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4649 gnulib changes.
4650
4651 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4652 and Paul Eggert <eggert@cs.ucla.edu>
4653
4654 Don't let Bison leak memory except when it complains.
4655 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4656 (spec_defines_file, dir_prefix): Now char *, not const char *,
4657 since they are freed.
4658 * src/files.c: Likewise.
4659 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4660 Likewise.
4661 (tr): Now operates in-place. All uses changed.
4662 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4663 values.
4664 (compute_file_name_parts, compute_output_file_names): Don't store
4665 read-only data in variables that will be freed.
4666 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4667 src_extension, and header_extension.
4668 (output_file_names_free): New public function to free
4669 spec_verbose_file, spec_graph_file, spec_defines_file,
4670 parser_file_name, and dir_prefix.
4671 * src/getargs.c (getargs): Don't store read-only data in variables that
4672 will be freed.
4673 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4674 (which previously existed but was unused), and quotearg_free.
4675 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4676 * src/muscle_tab.c: Likewise.
4677 (muscle_entry): Make the value char const *,
4678 and add a new storage member that is char * and can be freed.
4679 (muscle_entry_free): New private function.
4680 (muscle_init): Use it instead of free.
4681 (muscle_insert, muscle_grow): Update and use new storage member.
4682 (muscle_code_grow): Free the string passed to muscle_grow
4683 since it's not needed anymore.
4684 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4685 add a new `char *code' member.
4686 ("{...}"): Declare semantic type as code.
4687 * src/scan-code.h (translate_rule_action):
4688 (translate_symbol_action, translate_code, translate_action): Return
4689 `char const *' rather than `char *' since external code should not free
4690 these strings.
4691 * src/scan-code.l: Likewise.
4692 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4693 which is "{...}" in the parser.
4694 * tests/Makefile.am (maintainer-check-valgrind): Set
4695 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4696 Valgrind.
4697 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4698 complain.
4699 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4700 expecting a non-zero exit status sets --leak-check=summary and
4701 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4702 this case, and we don't want to hear about it.
4703
4704 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4705
4706 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4707 instead of from the template, to simplify configuration a bit.
4708 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4709 and m4/wint_t.m4, as they are needed with the latest gnulib.
4710
4711 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4712
4713 Disable unset/unused mid-rule value warnings by default, and recognize
4714 --warnings=midrule-values to enable them. Discussed starting at
4715 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4716 * NEWS (2.3a+): Mention.
4717 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4718 warnings): Add entry for midrule-values subargument.
4719 * src/reader.c (symbol_should_be_used): Don't return true just because
4720 the value is a set/used mid-rule value unless
4721 --warnings=midrule-values was specified.
4722 * tests/input.at (Unused values, Unused values before symbol
4723 declarations): Run tests with and without --warnings=midrule-values.
4724
4725 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4726 than LIST_FREE directly.
4727
4728 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4729
4730 Finish implementing --warnings=error, which should not be implied by
4731 --warnings=all (or by its synonyms -W and --warnings without
4732 subarguments).
4733 * src/complain.c (set_warning_issued): New function to report that
4734 warnings are being treated as errors and to record an error if so.
4735 Invoke...
4736 (warn_at, warn): ... here.
4737 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4738 "error - warnings are errors" does not appear above "all - all of the
4739 above".
4740 (getargs): For -W and --warnings without subarguments, don't let
4741 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4742 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4743
4744 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4745
4746 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4747 empty subargument list. For example: `bison --warnings= parser.y'.
4748
4749 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4750
4751 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4752 the parser header file so that gcc doesn't warn.
4753
4754 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4755
4756 Split the default %destructor/%printer into two kinds: <*> and <!>.
4757 Discussed starting at
4758 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4759 * NEWS (2.3a+): Mention.
4760 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4761 previous change today related to mid-rules.
4762 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4763 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4764 (TYPE_TAG_ANY): Add as <*>.
4765 (TYPE_TAG_NONE): Add as <!>.
4766 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4767 for <*> and <!>.
4768 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4769 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4770 * src/symlist.c (symbol_list_default_new): Split into tagged and
4771 tagless versions.
4772 (symbol_list_destructor_set, symbol_list_printer_set): Split
4773 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4774 SYMLIST_DEFAULT_TAGLESS.
4775 * src/symlist.h: Update symbol_list_default*_new prototypes.
4776 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4777 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4778 * src/symtab.c (default_destructor, default_destructor_location,
4779 default_printer, default_printer_location): Split each into tagged and
4780 tagless versions.
4781 (symbol_destructor_get, symbol_destructor_location_get,
4782 symbol_printer_get, symbol_printer_location_get): Implement tagged
4783 default and tagless default cases.
4784 (default_destructor_set, default_printer_set): Split each into tagged
4785 and tagless versions.
4786 * src/symtab.h: Update prototypes.
4787 * tests/actions.at (Default %printer and %destructor): Rename to...
4788 (Default tagless %printer and %destructor): ... this, and extend.
4789 (Per-type %printer and %destructor): Rename to...
4790 (Default tagged and per-type %printer and %destructor): ... this, and
4791 extend.
4792 (Default %printer and %destructor for user-defined end token): Extend.
4793 (Default %printer and %destructor are not for error or $undefined):
4794 Update.
4795 (Default %printer and %destructor are not for $accept): Update.
4796 (Default %printer and %destructor for mid-rule values): Extend.
4797 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4798 (Unused values with default %destructor): Extend.
4799
4800 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4801
4802 Don't apply the default %destructor/%printer to an unreferenced midrule
4803 value. Mentioned at
4804 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4805 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4806 like $@n instead of just @n so that the default %destructor/%printer
4807 logic doesn't see them as user-defined symbols.
4808 (symbol_is_dummy): Check for both forms of the name.
4809 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4810 name for which the midrule value is referenced in any action.
4811 * tests/actions.at (Default %printer and %destructor for mid-rule
4812 values): New test.
4813 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4814 for change to dummy symbol names.
4815
4816 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4817
4818 Warn about unset midrule $$ if the corresponding $n is used.
4819 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4820 $n usage.
4821 (packgram): Before invoking grammar_rule_check on any rule, make sure
4822 all actions have already been scanned in order to set `used' flags.
4823 Otherwise, checking that a midrule's $$ is set will not always work
4824 properly because the midrule check must forward-reference the midrule's
4825 parent rule.
4826 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4827 warning.
4828
4829 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4830
4831 More improvements to the documentation of the prologue alternatives:
4832 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4833 Bison manual.
4834 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4835 some text to clarify the relative importance of the new directives and
4836 to show how these directives may be viewed as code labels.
4837
4838 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4839
4840 Similar to the recently removed %before-header, add %code-top as the
4841 alternative to the pre-prologue. Mentioned at
4842 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4843 Also, let the prologue alternatives appear in the grammar section.
4844 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4845 (prologue_declaration): Move the existing prologue alternatives to...
4846 (grammar_declaration): ... here and add %code-top.
4847 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4848
4849 Clean up and extend documentation for the prologue alternatives.
4850 * NEWS (2.3a+): Describe prologue alternatives.
4851 * doc/bison.texinfo (Prologue): Move discussion of prologue
4852 alternatives to...
4853 (Prologue Alternatives): ... this new section, and extend it to discuss
4854 all 4 directives in detail.
4855 (Table of Symbols): Clean up discussion of prologue alternatives and
4856 add %code-top.
4857
4858 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4859
4860 DJGPP specific issues.
4861
4862 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4863 config.bat accordingly.
4864 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4865 * djgpp/config.site: Likewise.
4866
4867 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4868
4869 Replace %*-header with %provides, %requires, %code. See discussion at
4870 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4871
4872 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4873 (b4_user_start_header): Remove.
4874 * data/glr.c: Use new macros instead of b4_*start_header
4875 and b4_*end_header.
4876 * data/glr.cc: Likewise.
4877 * data/lalr1.cc: Likewise.
4878 * data/push.c: Likewise.
4879 * data/yacc.c: Likewise.
4880
4881 * doc/bison.texinfo: Remove %before-header, rename
4882 %{start,end,after}-header to %requires, %provides, %code.
4883
4884 * src/parse-gram.y: Likewise (also rename token names accordingly).
4885 * src/scan-gram.l: Likewise.
4886 * tests/actions.at: Likewise.
4887
4888 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4889
4890 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4891 Problem reported by Joel E. Denny.
4892
4893 2006-10-14 Jim Meyering <jim@meyering.net>
4894
4895 (Sync from coreutils.)
4896 Work also when the working directory (with e.g. coreutils sources)
4897 is version controlled with git, rather than CVS.
4898 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4899 rather than CVS.
4900 In messages and comments, say e.g., "checked-out sources",
4901 rather than "CVS sources".
4902 (version_controlled_file): New function. Work for git as well as
4903 for CVS. Don't use grep's -q option.
4904 (slurp): Call it here, in place of CVS-specific code.
4905
4906 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4907
4908 Fix testsuite for ./configure --enable-gcc-warnings:
4909 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4910 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4911 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4912 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4913 * test/regression.at (Diagnostic that expects two alternatives):
4914 Likewise.
4915
4916 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4917
4918 * bootstrap.conf (gnulib_modules): Add config-h.
4919 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4920 worry about HAVE_CONFIG_H.
4921 * lib/abitset.c: Likewise.
4922 * lib/bitset.c: Likewise.
4923 * lib/bitset_stats.c: Likewise.
4924 * lib/bitsetv-print.c: Likewise.
4925 * lib/bitsetv.c: Likewise.
4926 * lib/ebitset.c: Likewise.
4927 * lib/get-errno.c: Likewise.
4928 * lib/lbitset.c: Likewise.
4929 * lib/subpipe.c: Likewise.
4930 * lib/timevar.c: Likewise.
4931 * lib/vbitset.c: Likewise.
4932 * lib/bitset.c: Include "bitset.h" first, to test interface.
4933 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4934 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4935 * lib/bitsetv.c: Include "bitsetv.h" first.
4936 * lib/get-errno.c: Include "get-errno.h" first.
4937 * m4/.cvsignore: Add config-h.m4.
4938 * tests/actions.at (Default %printer and %destructor for ...):
4939 Adjust expected line numbers in output to reflect removal of #if
4940 HAVE_CONFIG_H lines.
4941 * tests/glr-regression.at (Missed %merge type warnings when ...):
4942 Likewise.
4943 * tests/regression.at (Braced code in declaration in rules section):
4944 Likewise.
4945 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4946 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4947 Include <config.h> unconditionally.
4948
4949 * bootstrap: Sync from coreutils, as follows:
4950
4951 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4952
4953 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4954 variable was sometimes used without being initialized. This
4955 messed up the installation of the INSTALL file in some cases.
4956
4957 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4958
4959 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4960 --copy. Inspired by a suggestion from Bruno Haible.
4961
4962 2006-10-03 Jim Meyering <jim@meyering.net>
4963
4964 * bootstrap: Undo last change to this file, since now gnulib-tool
4965 sticks with the automake default in generating dependencies.
4966
4967 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4968
4969 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4970 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4971
4972 * doc/bison.1: Add copyright notice.
4973
4974 * data/glr.c: Don't include <stdarg.h>; not used.
4975
4976 * NEWS: The -g and --graph options now output graphs in Graphviz
4977 DOT format, not VCG format.
4978 * doc/bison.1: Likewise.
4979 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4980 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4981 of this change in
4982 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4983 * TODO: Remove Graphviz entry.
4984 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4985 remove vcg.c, vcg.h, vcg_defaults.h.
4986 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4987 * src/graphviz.c, src/graphviz.h: New files.
4988 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4989 * src/files.h: Make comment more generic.
4990 * src/main.c (main): Likewise.
4991 * src/print_graph.h: Likewise.
4992 * src/getargs.c (usage): Make usage description more generic.
4993 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4994 (static_graph, fgraph): Remove. All uses changed to pass
4995 arguments instead of sharing a static var.
4996 (print_core, print_actions, print_state, print_graph):
4997 Output graphviz format rather than VCG format.
4998 * tests/.cvsignore: Remove *.vcg; add *.dot.
4999 * tests/output.at: Expect *.dot files, not *.vcg files.
5000
5001 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
5002 accommodates the 2006-10-08 change.
5003
5004 2006-10-11 Bob Rossi <bob@brasko.net>
5005
5006 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
5007 (b4_yyssa, b4_yyerror_range): New macros.
5008 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
5009 (yypvarsinit): Remove init of removed fields.
5010 (yypushparse): Remove use of removed fields; use new macros instead.
5011
5012 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
5013
5014 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
5015 in a push parser. Reindent slightly to match yacc.c better.
5016
5017 2006-10-11 Bob Rossi <bob@brasko.net>
5018
5019 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
5020 yymsg_alloc fields.
5021 (yypvarsinit, yypushparse): Remove init of removed fields.
5022 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
5023
5024 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
5025
5026 * THANKS: Add Paolo Bonzini and Bob Rossi.
5027
5028 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
5029
5030 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
5031 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
5032 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
5033 b4_define_user_cde and uses): Remove.
5034 (b4_comment, b4_prefix, b4_sync_start): New.
5035 * data/bison.m4: New file, with most of the content removed from c.m4.
5036 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
5037 * src/output.c (output_skeleton): Pass bison.m4.
5038 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
5039 only if specified.
5040
5041 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
5042
5043 Fix test failure reported by Tom Lane in
5044 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
5045 and try to make such failures easier to catch in the future.
5046 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
5047 that's now the caller's responsibility.
5048 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
5049 Set yychar = YYEOF if it's negative.
5050 * tests/actions.at (yylex): Abort if asked to read past EOF.
5051 * tests/conflicts.at (yylex): Likewise.
5052 * tests/cxx-type.at (yylex): Likewise.
5053 * tests/glr-regression.at (yylex): Likewise.
5054 * tests/input.at (yylex): Likewise.
5055 * tests/regression.at (yylex): Likewise.
5056 * tests/torture.at (yylex): Likewise.
5057
5058 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
5059
5060 Fix problems with translating English-language diagnostics.
5061 * bootstrap: Fix bug introduced in recent bootstrap changes, with
5062 respect to bison-runtime pot generation. The YY_ stuff
5063 wasn't being captured.
5064 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
5065 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
5066 * runtime-po/POTFILES.in: Add data/push.c.
5067
5068 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
5069
5070 Merge bootstrap changes from coreutils.
5071
5072 2006-09-28 Jim Meyering <jim@meyering.net>
5073
5074 Automatically generated dependencies are important even
5075 when all of the sources in a directory come from gnulib.
5076 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
5077 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
5078
5079 2006-09-23 Jim Meyering <jim@meyering.net>
5080
5081 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
5082
5083 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5084
5085 * bootstrap: Add support for --force.
5086 (usage): New function. Describe usage less tersely.
5087 (CVS_only_file): New var.
5088
5089 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
5090
5091 * data/push.c (YYPUSH_MORE): Make it an enum instead.
5092 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
5093 Adjust white space and comments to match GNU style better.
5094
5095 2006-09-20 Bob Rossi <bob@brasko.net>
5096
5097 * data/push.c (yyresult_get): Remove function.
5098 (YYPUSH_MORE): Add #define.
5099 (yypushparse): Modify return value.
5100
5101 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5102
5103 * stamp-h.in: Remove; no longer needed.
5104 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
5105 Remove config.h, config.hin, intl (no longer created).
5106 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
5107 stamp-h1.
5108
5109 Sync bootstrap from coreutils, as follows:
5110
5111 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
5112
5113 * bootstrap (symlink_to_gnulib): New function.
5114 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
5115 to copies-of-gnulib.
5116 (cp_mark_as_generated, slurp, gnulib_files):
5117 Avoid making a copy if it's the same as the old version.
5118 (gnulib_files): Add support for this variable (used by Bison).
5119
5120 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
5121
5122 * src/getargs.c (usage): Rework to use conventions similar to
5123 coreutils, to make translation a bit easier and the code a bit
5124 smaller. Problem reported by Tim Van Holder.
5125
5126 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
5127
5128 Use some of gnulib's new modules, taken from coreutils.
5129
5130 * bootstrap: Sync from coreutils, except add support for gnulib_files.
5131 * bootstrap.conf: New file.
5132 (gnulib_modules): Add configmake, inttypes, unistd.
5133 (XGETTEXT_OPTIONS): Add complain, complain_at,
5134 fatal, fatal_at, warn, warn_at, unexpected_end.
5135 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
5136 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
5137 (gl_EARLY): Add.
5138 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
5139 (gl_INIT): Add
5140 (GNULIB_AUTOCONF_SNIPPET): Remove.
5141 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
5142 the pickiest.
5143 * lib/.cvsignore: Add inttypes_.h.
5144 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
5145 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
5146 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
5147 no-longer-necessary initializations.
5148 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
5149 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
5150 use the unistd module.
5151 * src/system.h: Likewise.
5152 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
5153 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
5154 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
5155 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
5156 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
5157 * src/system.h: Include inttypes.h unconditionally, now that we
5158 use the inttypes module. Don't bother to include stdint.h, since
5159 inttypes.h now does that for us.
5160 (LOCALEDIR): Remove, now that we use the configmake module.
5161 * src/getargs.c: Include configmake.h.
5162 * src/main.c: Likewise.
5163 * src/output.c: Likewise.
5164 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
5165 not from $abs_top_builddir, since config.h moved.
5166
5167
5168 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
5169 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
5170
5171 * src/parse-gram.y (symbol_declaration): Don't put statements
5172 before declarations; it's not portable to C89.
5173 * src/scan-code.l (handle_action_at): Likewise.
5174
5175 * src/scan-code.l: Always initialize braces_level; the old code
5176 left it uninitialized and therefore had undefined behavior.
5177
5178 Don't attempt to redefine 'assert', since it runs afoul of
5179 systems where standard headers (mistakenly) include <assert.h>.
5180 Instead, define and use our own alternative, called 'aver'.
5181 * src/reader.c: Don't include assert.h, since we no longer
5182 use assert.
5183 * src/scan-code.l: Likewise.
5184 * src/system.h (assert): Remove, replacing with....
5185 (aver): New function, taking a bool arg. All uses changed.
5186 * src/tables.c (pack_vector): Ensure that aver arg is bool,
5187 not merely an integer.
5188
5189 2006-09-15 Bob Rossi <bob@brasko.net>
5190
5191 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
5192 * data/c.m4 (YYPUSH): New.
5193 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
5194 * src/getargs.c (push_parser): New var.
5195 * src/getargs.h (push_parser): New declaration.
5196 * src/output.c (prepare): Add macro insertion of `push_flag'.
5197 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
5198 (prologue_declaration): Parse %push-parser.
5199 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
5200 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
5201 list of removed lines from the traces observed.
5202 (AT_CHECK_CALC_LALR): Added push parser tests.
5203
5204 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
5205
5206 * NEWS: Version 2.3a.
5207 * configure.ac (AC_INIT): Likewise.
5208
5209 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
5210 "#define YYSTYPE int" that caused "make maintainer-check" to fail
5211 due to header ordering dependencies. I don't know why the #define
5212 was there.
5213
5214 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
5215 runtime cost when YYDEBUG is not defined, and so that some tests
5216 that used to fail now work. Problem and initial suggestion by
5217 Paolo Bonzini.
5218 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
5219 * data/glr.cc (b4_parser_class_name):
5220 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
5221 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5222 (yydebug_) [YYDEBUG]: New member.
5223 (yycdebug_): Now defined only if YYDEBUG.
5224 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5225 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5226 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5227 if YYYDEBUG.
5228 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5229 Define only if YYDEBUG.
5230 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5231 set_debug_level.
5232 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5233 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5234 AT_CHECK_CALC_GLR_CC that are working now.
5235
5236 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5237
5238 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5239 We don't need them in glr.cc, and glr.c defines them.
5240 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5241 assumes that defining it to anything is the same as defining
5242 it to 1. Problem reported by Paolo Bonzini.
5243
5244 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5245
5246 * data/c.m4 (b4_null, b4_case): Define.
5247 * src/output.c (prepare_symbols): Use b4_null.
5248 (user_actions_output): Use b4_case.
5249
5250 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5251
5252 * data/glr.c (b4_shared_declarations): Put start-header first,
5253 before any #includes that we generate, so that feature-test
5254 macros work. Problem reported by Michael Deutschmann in
5255 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5256 * data/lalr1.cc: Likewise.
5257 * doc/bison.texinfo (Prologue): Document that feature-test macros
5258 should be defined before any Bison declarations.
5259 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5260 that depend on location.hh after, not before, Bison decls, since
5261 we now include location.hh after the first user prologue.
5262
5263 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5264 Sander Brandenburg in
5265 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5266 Also, fix minor white space and comment issues.
5267 (Prologue): Mention that it's better to define feature-test macros
5268 before Bison declarations. Problem reported by Michael Deutschmann.
5269
5270 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5271 by Jim Meyering.
5272 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5273 This adjusts to recent gnulib changes.
5274
5275 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5276
5277 Finish implementation of per-type %destructor/%printer. Discussed
5278 starting at
5279 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5280 and
5281 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5282 * NEWS (2.3+): Add a description of this feature to the default
5283 %destructor/%printer description.
5284 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5285 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5286 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5287 list node contains a semantic type.
5288 * src/symtab.c, src/symtab.h: Extend with a table that associates
5289 semantic types with their %destructor's and %printer's.
5290 (semantic_type_from_uniqstr, semantic_type_get,
5291 semantic_type_destructor_set, semantic_type_printer_set): New functions
5292 composing the public interface of that table.
5293 (symbol_destructor_get, symbol_destructor_location_get,
5294 symbol_printer_get, symbol_printer_location_get): If there's no
5295 per-symbol %destructor/%printer, look up the per-type before trying
5296 the default.
5297 * tests/actions.at (Per-type %printer and %destructor): New test case.
5298 * tests/input.at (Default %printer and %destructor redeclared):
5299 Extend to check that multiple occurrences of %symbol-default in a
5300 single %destructor/%printer declaration is an error.
5301 (Per-type %printer and %destructor redeclared, Unused values with
5302 per-type %destructor): New test cases.
5303
5304 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5305
5306 Require default %destructor/%printer to be declared using
5307 %symbol-default instead of an empty symbol list, and start working on
5308 new per-type %destructor/%printer. Discussed at
5309 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5310 * NEWS (2.3+): Add %symbol-default to example.
5311 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5312 (Table of Symbols): Add entry for %symbol-default.
5313 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5314 (generic_symlist, generic_symlist_item): New nonterminals for creating
5315 a list in which each item is a symbol, semantic type, or
5316 %symbol-default.
5317 (grammar_declaration): Use generic_symlist in %destructor and %printer
5318 declarations instead of symbols.1 or an empty list.
5319 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5320 for changes to symbol_list.
5321 * src/reader.c: Update for changes to symbol_list.
5322 * src/scan-code.l: Likewise.
5323 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5324 * src/symlist.c, src/symlist.h: Extend such that a list node may
5325 represent a semantic type or a %symbol-default in addition to just an
5326 ordinary symbol. Add switched functions for setting %destructor's and
5327 %printer's.
5328 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5329 %destructor/%printer declarations.
5330
5331 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5332
5333 Whether the default %destructor/%printer applies to a particular symbol
5334 isn't a question of whether the user *declares* that symbol (in %token,
5335 for example). It's a question of whether the user by any means
5336 *defines* the symbol at all (by simply using a char token, for
5337 example). $end is defined by Bison whereas any other token with token
5338 number 0 is defined by the user. The error token is always defined by
5339 Bison regardless of whether the user declares it with %token, but we
5340 may one day let the user define error as a nonterminal instead.
5341 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5342 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5343 the meaning of "user-defined".
5344 * tests/actions.at (Default %printer and %destructor for user-declared
5345 end token): Rename to...
5346 (Default %printer and %destructor for user-defined end token): ...
5347 this.
5348
5349 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5350 computation of whether to apply the default, don't maintain a list of
5351 every Bison-defined symbol. Instead, just check for a first character
5352 of '$', which a user symbol cannot have, and check for the error token.
5353
5354 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5355
5356 Don't apply the default %destructor or %printer to the error token,
5357 $undefined, or $accept. This change fits the general rule that the
5358 default %destructor and %printer are only for user-declared symbols,
5359 and it solves several difficulties that are described in the new test
5360 cases listed below.
5361 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5362 * tests/actions.at (Default %printer and %destructor are not for error
5363 or $undefined, Default %printer and %destructor are not for $accept):
5364 New test cases.
5365
5366 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5367
5368 Allow %start after the first rule.
5369 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5370 when parsing the first rule.
5371 (check_and_convert_grammar): Search for it here after all grammar
5372 declarations have been parsed. Skip midrules, which have dummy LHS
5373 nonterminals.
5374 * src/symtab.c (symbol_is_dummy): New function.
5375 * src/symtab.h (symbol_is_dummy): Declare it.
5376 * tests/input.at (%start after first rule): New test.
5377
5378 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5379
5380 Redo some of the previous commit: add back the ability to use
5381 non-aliased/undeclared string literals since it might be useful to
5382 those declaring %token-table.
5383 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5384 commit: don't worry about complaints from symbols_pack.
5385 * src/symtab.c (symbol_new, symbol_class_set,
5386 symbol_check_alias_consistency): Undo changes in previous commit: count
5387 each string literal as a new symbol and token, assign it a symbol
5388 number, and don't complain about non-aliased string literals.
5389 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5390 and token counts but does still set aliased tokens to the same number,
5391 symbol_pack_processor now leaves empty slots in the symbols array.
5392 Remove those slots.
5393 * tests/regression.at (Undeclared string literal): Remove test case
5394 added in previous commit since non-aliased string literals are allowed
5395 again.
5396 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5397 remove unnecessary string literal declarations.
5398 * tests/sets.at (Firsts): Likewise.
5399
5400 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5401
5402 Don't allow an undeclared string literal, but allow a string literal to
5403 be used before its declaration.
5404 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5405 symbols_pack complained.
5406 * src/symtab.c (symbol_new): Don't count a string literal as a new
5407 symbol.
5408 (symbol_class_set): Don't count a string literal as a new token, and
5409 don't assign it a symbol number since symbol_make_alias does that.
5410 (symbol_make_alias): It's not necessary to decrement the symbol and
5411 token counts anymore. Don't assume that an alias declaration occurs
5412 before any uses of the identifier or string, and thus don't assert that
5413 one of them has the highest symbol number so far.
5414 (symbol_check_alias_consistency): Complain if there's a string literal
5415 that wasn't declared as an alias.
5416 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5417 symbol_pack asserts that every token has been assigned a symbol number
5418 although undeclared string literals have not.
5419 * tests/regression.at (String alias declared after use, Undeclared
5420 string literal): New test cases.
5421 (Characters Escapes, Web2c Actions): Declare string literals as
5422 aliases.
5423 * tests/sets.at (Firsts): Likewise.
5424
5425 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5426
5427 In the grammar scanner, STRING_FINISH unclosed constructs and return
5428 them to the parser in order to improve error messages.
5429 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5430 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5431 * tests/input.at (Unclosed constructs): New test case.
5432 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5433 seen.
5434
5435 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5436 unused global.
5437
5438 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5439
5440 Handle string aliases for character tokens correctly.
5441 * src/symtab.c (symbol_user_token_number_set): If the token has an
5442 alias, check and set its alias's user token number instead of its own,
5443 which is set to indicate the alias. Previously, every occurrence of
5444 the character token in the grammar overwrote that alias indicator with
5445 the character code.
5446 * tests/input.at (String aliases for character tokens): New test.
5447
5448 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5449
5450 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5451
5452 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5453
5454 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5455 to prevent failures when building on older platforms.
5456 Check for autopoint failure.
5457 Set XGETTEXT_OPTIONS to values that check for C format strings,
5458 so that translators are warned about them (this also helps
5459 prevent core dumps).
5460
5461 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5462 function, since it simplifies our code a bit.
5463
5464 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5465 rather than -W, so we don't get bogus warnings about sign comparisons.
5466 Add -Wpointer-arith, since that warning is useful (it reports code
5467 that does not conform to C89 and that some compilers reject).
5468 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5469 since it's no longer needed.
5470
5471 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5472
5473 Clean up scanners a bit.
5474 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5475 definitions so gcc won't warn when obstack_for_string is unused.
5476 * src/scan-code.l: config.h and system.h are already #include'd by
5477 scan-code-c.c, so get rid of them here.
5478 * src/scan-gram.l: Likewise.
5479 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5480 definitions rather than duplicating the rest of it.
5481 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5482
5483 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5484
5485 Suppress signed/unsigned comparison warnings for yycheck.
5486 * data/c.m4 (b4_safest_int_type): New macro.
5487 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5488 a signed int type, cast it to b4_safest_int_type first.
5489 * data/yacc.c: Likewise.
5490 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5491 also overwritten.
5492
5493 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5494
5495 * doc/bison.texinfo: Fix some typos.
5496
5497 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5498
5499 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5500 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5501
5502 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5503 the latest gnulib does this a different way.
5504 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5505 translation was patched, so stop omitting it.
5506
5507 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5508
5509 Enable declaration of default %printer/%destructor. Make the parser
5510 use these for all user-declared grammar symbols for which the user does
5511 not declare a specific %printer/%destructor. Thus, the parser uses it
5512 for token 0 if the user declares it but not if Bison generates it as
5513 $end. Discussed starting at
5514 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5515 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5516 and
5517 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5518 * NEWS (2.3+): Mention.
5519 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5520 declare a %destructor for a mid-rule's semantic value. It's just
5521 impossible to declare one specific to it.
5522 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5523 code. Describe default %destructor form.
5524 * src/parse-gram.y (grammar_declaration): Parse default
5525 %printer/%destructor declarations.
5526 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5527 and symbol_destructor_location_get rather than accessing the destructor
5528 and destructor_location members of struct symbol.
5529 (symbol_printers_output): Likewise but for %printer's.
5530 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5531 again.
5532 * src/symtab.c (default_destructor, default_destructor_location,
5533 default_printer, default_printer_location): New static global
5534 variables to record the default %destructor and %printer.
5535 (symbol_destructor_get, symbol_destructor_location_get,
5536 symbol_printer_get, symbol_printer_location_get): New functions to
5537 compute the appropriate %destructor and %printer for a symbol.
5538 (default_destructor_set, default_printer_set): New functions to set the
5539 default %destructor and %printer.
5540 * src/symtab.h: Prototype all those new functions.
5541 * tests/actions.at (Default %printer and %destructor): New test to
5542 check that the right %printer and %destructor are called, that they're
5543 not called for $end, and that $$ and @$ work correctly.
5544 (Default %printer and %destructor for user-declared end token): New
5545 test to check that the default %printer and %destructor are called for
5546 a user-declared end token.
5547 * tests/input.at (Default %printer and %destructor redeclared, Unused
5548 values with default %destructor): New tests to check related grammar
5549 warnings and errors.
5550
5551 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5552
5553 Clean up handling of %destructor for the end token (token 0).
5554 Discussed starting at
5555 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5556 and
5557 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5558
5559 Make the skeletons consistent in how they pop the end token and invoke
5560 its %destructor.
5561 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5562 state, which has token number 0, since this would invoke the
5563 %destructor for the end token.
5564 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5565 until after shifting the end token, or else it won't be popped.
5566 * data/yacc.c (yyparse): Likewise.
5567
5568 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5569 it's the end token. Upon termination, destroy an unshifted lookahead
5570 even when it's the end token.
5571 * data/lalr1.cc (yy::parser::parse): Likewise.
5572 * data/yacc.c (yyparse): Likewise.
5573
5574 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5575 value warnings for the end token when the user gives the end token a
5576 %destructor.
5577
5578 * tests/actions.at (Printers and Destructors): Test all the above.
5579
5580 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5581
5582 Update to latest gnulib and gettext versions.
5583 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5584 Add fopen-safer.
5585 (gnulib_files): Add m4/warning.m4. Don't worry about files
5586 overwritten by autopoint.
5587 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5588 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5589 rejects them.
5590 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5591 so that we can remove the intl files at a better time.
5592 (intl_files_to_remove): Remove aclocal.m4, since it gets
5593 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5594 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5595 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5596 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5597 Remove datarootdir hack; no longer needed.
5598 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5599 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5600 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5601 strdup.h.
5602 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5603 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5604
5605 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5606
5607 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5608 it with --assume-autoconf='latest-stable'.
5609
5610 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5611
5612 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5613 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5614 YYSTYPE' and `{'.
5615 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5616 those from muscle_tab.c since the old ones are misleading.
5617
5618 2006-07-13 Akim Demaille <akim@epita.fr>
5619
5620 Support %define "KEY" {VALUE}.
5621 * src/scan-code.h, src/scan-code.l (translate_action)
5622 (translate_rule_action, translate_symbol_action, translate_code):
5623 Return char *, not const char *.
5624 * src/parse-gram.y (declaration): Rename as...
5625 (prologue_declaration): this.
5626 (string_content): Remove this nonterminal, use STRING.
5627 (braceless, content, content.opt): New nonterminal.
5628 Use them.
5629 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5630 as value.
5631 * src/scan-gram.l (getargs.h): Don't include it.
5632
5633 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5634
5635 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5636 rather than a for-loop that declares a local bool variable. This
5637 should work around a compatibility problem with a Cray x1e C++
5638 compiler reported by Hung Nguyen in
5639 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5640 The for-loop was introduced in the 2004-11-17 change but I don't
5641 know why it was needed.
5642
5643 2006-07-12 Akim Demaille <akim@epita.fr>
5644
5645 * data/c.m4: Comment changes.
5646
5647 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5648
5649 * src/complain.c (error_message, ERROR_MESSAGE): New.
5650 To factor...
5651 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5652 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5653
5654 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5655
5656 * NEWS: Instead of %union, you can define and use your own union type
5657 YYSTYPE if your grammar contains at least one <type> tag.
5658 Your YYSTYPE need not be a macro; it can be a typedef.
5659 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5660 (Union Decl, Decl Summary): Document this.
5661 * data/glr.c (YYSTYPE): Implement this.
5662 * data/glr.cc (YYSTYPE): Likewise.
5663 * data/lalr1.cc (YYSTYPE): Likewise.
5664 * data/yacc.c (YYSTYPE): Likewise.
5665 * src/output.c (prepare): Output tag_seen_flag.
5666 * src/parse-gram.y (declaration, grammar_declaration):
5667 Use 'union_seen' rather than 'typed' to determine whether
5668 %union has been seen, since grammars can now be typed without
5669 %union.
5670 (symbol_declaration, type.opt, symbol_def):
5671 Keep track of whether a tag has been seen.
5672 * src/reader.c (union_seen, tag_seen): New vars.
5673 (typed): remove.
5674 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5675 * src/scan-code.l (untyped_var_seen): New variable.
5676 (handle_action_dollar): Adjust to above changes.
5677 (handle_action_dollar, handle_action_at):
5678 Improve overflow checking for outlandish numbers.
5679 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5680 avoid new diagnostics generated by above changes.
5681 * tests/regression.at (YYSTYPE typedef): Add test to check
5682 for type tags without %union.
5683
5684 * src/symlist.c (symbol_list_length): Return int, not unsigned
5685 int, since callers expect int. This may need to get revisited
5686 once we have proper integer overflow checking.
5687
5688 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5689 object is now static.
5690
5691 * src/getargs.c (flags_argmatch): Return void, not int,
5692 to pacify ./configure --enable-gcc-warnings.
5693
5694 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5695 since last_string is already defined to FLEX_PREFIX (last_string).
5696
5697 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5698
5699 Implement --warnings/-W.
5700 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5701 replaced by...
5702 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5703 Adjust callers.
5704 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5705 (warnings_args, warnings_types): New.
5706 (getargs, short_options, long_options): Accept -W/--warnings.
5707 Sort the options by alphabetical order, upper case letter right
5708 before its lower case.
5709
5710 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5711
5712 Change %merge result type clash warnings to errors. Discussed at
5713 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5714 * src/reader.c (record_merge_function_type): Use complain_at.
5715 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5716 declared later): Update test case results.
5717
5718 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5719
5720 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5721 to be in alphabetical order.
5722 (trace_args): Spelling fixes.
5723
5724 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5725
5726 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5727 so they don't collide with user-defined macros.
5728 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5729 this was never guaranteed, and now that we're using gnulib stdint,
5730 which defines int_fast16_t to long int, the problem is exposed.
5731
5732 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5733
5734 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5735 need the full POSIX semantics (and weren't implementing them
5736 anyway).
5737
5738 Adjust to Autoconf 2.60 and today's gnulib.
5739 * bootstrap (gnulib_modules): Add stdint.
5740 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5741 no longer copies it.
5742 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5743 since stdint needs the former and wcwidth (which is now required
5744 by mbswidth) needs the latter.
5745 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5746 work around a compatibility glitch between gettext 0.14.6 and
5747 Autoconf 2.60.
5748 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5749 Do not check for uintptr_t, since new stdint module does the right
5750 thing.
5751 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5752 Add stdint.h, stdint_.h, wcwidth.h.
5753 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5754 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5755 stdint.m4, wchar_t.m4, wcwidth.m4.
5756 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5757 usual order for ../lib/*.h files.
5758 (file_name_split): Use last_component, not base_name, to adjust
5759 to gnulib changes.
5760 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5761 for ../lib/*.h files.
5762 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5763 Define unconditionally, since we now assume the stdint module.
5764 * src/scan-skel.l: Include <dirname.h>.
5765 (BASE_QPUTS): Use last_component, not base_name.
5766 * src/system.h: Include <unlocked-io.h> in the usual order
5767 for ../lib/*.h files. Include <stdint.h> unconditionally,
5768 since we now use the stdint module.
5769 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5770 HAVE_UINTPTR_T, since we now use the stdint module.
5771 (base_name): Remove decl, since files now include <dirname.h>
5772 to get the decl.
5773
5774 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5775
5776 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5777 New, default to 1.
5778 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5779 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5780 default.
5781 * tests/calc.at: Adjust.
5782
5783 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5784
5785 * data/c.m4 (b4_basename): New.
5786 (b4_syncline): Also output the location of its invocation (from
5787 the skeleton).
5788 (b4_user_action, b4_define_user_action, b4_user_actions)
5789 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5790 (b4_user_stype): New.
5791 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5792
5793 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5794
5795 In the grammar file, the first column is 1 not 0 on the first line as
5796 on every other line.
5797 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5798 * tests/input.at (Torturing the Scanner): Update output.
5799
5800 * src/scan-gram.l (scanner_cursor): Declare it static.
5801
5802 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5803
5804 In warnings, say "previous declaration" rather than "first
5805 declaration".
5806 * src/symtab.c (redeclaration): Do that here.
5807 * src/reader.c (record_merge_function_type): In the case of a result
5808 type clash, report the previous declaration rather than the very first
5809 one in the grammar file.
5810 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5811 declared later): Add a third declaration to check this behavior.
5812 * tests/input.at (Incompatible Aliases): Update output.
5813
5814 2006-06-27 Akim Demaille <akim@epita.fr>
5815
5816 * doc/Doxyfile.in: New.
5817 * doc/Makefile.am: Use it.
5818 * src/lalr.h, src/symtab.h: Initial doxygenation.
5819
5820 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5821
5822 Don't miss %merge result type warnings just because the LHS types are
5823 declared after the %merge. This continues the effort of the previous
5824 patch.
5825 * src/reader.c (get_merge_function): Don't set the merger type yet.
5826 (record_merge_function_type): New function for setting the merger type
5827 and checking for clashes.
5828 (grammar_current_rule_merge_set): Set the location of the %merge for
5829 the current rule.
5830 (packgram): Invoke record_merge_function_type for each rule now that
5831 all symbol type declarations have been parsed.
5832 * src/reader.h (merger_list.type_declaration_location): New member
5833 storing the location of the first %merge from which the type for this
5834 merging function was derived.
5835 * src/symlist.h (symbol_list.merger_declaration_location): New member
5836 storing the location of a rule's %merge, if any.
5837 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5838 declared later): New test to catch the error fixed by the above patch.
5839
5840 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5841
5842 Get action warnings (grammar_rule_check) right even when symbol
5843 declarations appear after the rules. Discussed at
5844 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5845 and
5846 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5847 Don't mistake the type of $$ in a midrule to be that of its parent
5848 rule's $$.
5849 * src/reader.c (grammar_current_rule_end): Don't invoke
5850 grammar_rule_check yet since not all symbol declarations may have been
5851 parsed yet.
5852 (grammar_midrule_action): Likewise.
5853 Don't record whether the midrule's $$ has been used yet since actions
5854 haven't been translated yet.
5855 Record the midrule's parent rule and its RHS index within the parent
5856 rule.
5857 (grammar_current_rule_action_append): Don't translate the action yet
5858 since not all symbol declarations may have been parsed yet and, thus,
5859 warnings about types for $$, $n, @$, and @n can't be reported yet.
5860 (packgram): Translate the action and invoke grammar_rule_check now that
5861 all symbol declarations have been parsed.
5862 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5863 after parsing the entire grammar file, the symbol list here in the case
5864 of a midrule is actually the midrule's empty RHS, so reference its
5865 parent rule's RHS where necessary.
5866 On the other hand, now that you can already know it's a midrule, you
5867 aren't forced to think $$ has the same type as its parent rule's $$.
5868 (handle_action_at): In the case of a midrule, reference the parent rule
5869 where necessary.
5870 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5871 members.
5872 (symbol_list_length): Now that this is invoked after all rules have
5873 been parsed, a NULL symbol (rather than a NULL symbol list node)
5874 terminates a rule. symbol_list_print already does this correctly.
5875 * src/symlist.h (symbol_list.midrule_parent_rule,
5876 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5877 remember their relationships with their parents.
5878 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5879 fixed by the above patch.
5880 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5881 implementing...
5882 (Unused values): ... this old test case and...
5883 (Unused values before symbol declarations): ... this new test case.
5884 This one is the same as `Unused values' except that all symbol
5885 declarations appear after the rules in order to catch the rest of the
5886 errors fixed by the above patch.
5887
5888 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5889
5890 More cleanup.
5891 * src/reader.c (current_rule): Declare it static since it's no longer
5892 used outside this file.
5893 (grammar_current_rule_action_append): Remove redundant arguments from
5894 translate_rule_action invocation.
5895 * src/reader.h (current_rule): Remove this unused extern.
5896 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5897 * src/scan-code.l (translate_rule_action): Likewise.
5898
5899 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5900
5901 Clean up yesterday's patch.
5902 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5903 to...
5904 * src/reader.c (grammar_current_rule_action_append): ... here for
5905 consistency with grammar_current_rule_symbol_append.
5906 * tests/regression.at (Braced code in declaration in rules section):
5907 Make yyerror and yylex static as usual.
5908
5909 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5910
5911 Fix bug that mistakes braced code in a declaration in the rules section
5912 to be a rule action. Mentioned at
5913 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5914 * src/scan-gram.l: Move midrule action detection from the start of the
5915 scanning of any braced code to...
5916 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5917 action. For readability, use $2 and @2 rather than the equivalent
5918 global variables.
5919 * tests/regression.at (Braced code in declaration in rules section):
5920 New test to catch the error fixed by the above patch.
5921
5922 Work on code readability some.
5923 * src/scan-code.l (current_rule): Get rid of this misleading and
5924 redundant declaration: it's actually extern'ed in reader.h.
5925 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5926 translate_action): Add a rule argument and use it instead of the global
5927 current_rule.
5928 (translate_rule_action): This already receives current_rule through an
5929 argument, so pass it on to translate_action instead of assigning
5930 current_rule to current_rule.
5931 (translate_symbol_action, translate_code): Pass rule = NULL to
5932 translate_action.
5933
5934 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5935
5936 Rename %before-definitions to %start-header and %after-definitions to
5937 %end-header. Don't use these declarations to separate pre-prologue
5938 blocks from post-prologue blocks. Add new order-independent
5939 declarations %before-header and %after-header as alternatives to the
5940 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5941 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5942 * NEWS (2.3+): Update for these changes.
5943 * data/glr.c (b4_before_definitions): Update to...
5944 (b4_start_header): ... this.
5945 (b4_after_definitions): Update to...
5946 (b4_end_header): ... this.
5947 * data/glr.cc: Likewise.
5948 * data/lalr1.cc: Likewise.
5949 * data/yacc.c: Likewise.
5950 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5951 prologue blocks with %*-header declarations.
5952 (Calc++ Parser): Likewise.
5953 (Decl Summary): Update names.
5954 (Table of Symbols): Update description.
5955 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5956 (PERCENT_END_HEADER): ... this.
5957 (PERCENT_BEFORE_DEFINITIONS): Update to...
5958 (PERCENT_START_HEADER): ... this.
5959 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5960 (declaration): Update token names and m4 macro names.
5961 When parsing %end-header and %start-header, invoke translate_code
5962 before muscle_code_grow, and no longer set global booleans to remember
5963 whether these declarations have been seen.
5964 Parse new %after-header and %before-header.
5965 * src/reader.c (before_definitions, after_definitions): Remove.
5966 (prologue_augment): Accept a new bool argument to specify whether to
5967 augment the pre-prologue or post-prologue.
5968 * src/reader.h (before_definitions, after_definitions): Remove these
5969 extern's.
5970 (prologue_augment): Add new bool argument.
5971 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5972 (PERCENT_END_HEADER): ... this.
5973 (PERCENT_BEFORE_DEFINITIONS): Update to...
5974 (PERCENT_START_HEADER): ... this.
5975 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5976 * tests/actions.at (Printers and Destructors): Update names.
5977
5978 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5979
5980 Add comparison operators for C++ location classes. Discussed at
5981 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5982 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5983 declaration indicating whether filename_type has an operator==. If
5984 filename_type is `std::string', it defaults to `1', `0' otherwise.
5985 * data/location.cc: Iff b4_define_location_comparison is `1', add
5986 operator== and operator!= for class position and for class location.
5987
5988 Some minor fixes.
5989 * src/scan-action.l: Remove unused file.
5990 * src/symtab.c (symbol_printer_set): Use printer_location not
5991 destructor_location.
5992 * src/symtab.h (struct symbol): Replace incorrect source comment for
5993 printer members.
5994 * tests/input.at (Incompatible Aliases): Update output with correct
5995 printer location.
5996
5997 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5998
5999 Don't put the pre-prologue in the header file. For the yacc.c code
6000 file and the glr.c header and code files, move the pre-prologue before
6001 the token definitions. Add new %before-definitions and
6002 %after-definitions to declare code that will go in both the header file
6003 and code file. Discussed at
6004 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
6005 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
6006 and
6007 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
6008 * NEWS (2.3+): Describe these changes.
6009 * data/glr.c (b4_pre_prologue): Move from within to before...
6010 (b4_shared_declarations): ... this.
6011 Add new b4_before_definitions before b4_token_enums.
6012 Add new b4_after_definitions at the end.
6013 * data/glr.cc (b4_pre_prologue): Replace with...
6014 (b4_before_definitions): ... this in the header file.
6015 (b4_after_definitions): New near the end of the header file.
6016 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
6017 code file right before including the header file.
6018 (b4_before_definitions): New in the previous position of
6019 b4_pre_prologue in the header file.
6020 (b4_after_definitions): New near the end of the header file.
6021 * data/yacc.c: Clean up some m4 quoting especially in the header file.
6022 (b4_token_enums_defines): In the code file, move to right before
6023 YYSTYPE for consistency with the header file.
6024 (b4_before_definitions): New right before b4_token_enums_defines in
6025 both the header and code file.
6026 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
6027 header and code file.
6028 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
6029 of prologues for %union dependencies.
6030 (Decl Summary): In %defines description, mention the effect of
6031 %before-definitions and %after-definitions on the header file.
6032 (Calc++ Parser): Forward declare driver in a %before-definitions rather
6033 than in the pre-prologue so that make check succeeds.
6034 (Table of Symbols): Add entries for %before-definitions and
6035 %after-definitions.
6036 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
6037 %before-definitions.
6038 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
6039 (declaration): Parse those declarations and append to
6040 b4_before_definitions and b4_after_definitions, respectively.
6041 * src/reader.c (before_definitions, after_definitions): New bools to
6042 track whether those declarations have been seen.
6043 (prologue_augment): Add to the post-prologue if %union,
6044 %before-definitions, or %after-definitions has been seen.
6045 * src/reader.h (before_definitions, after_definitions): New extern's.
6046 * src/scan-gram.l: Scan the new declarations.
6047 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
6048 prologue block in a %before-definitions or a %after-definitions based
6049 on whether the %union is declared.
6050 * tests/regression.at (Early token definitions with --yacc, Early token
6051 definitions without --yacc): Move tests for token definitions into the
6052 post-prologue since token names are no longer defined in the
6053 pre-prologue.
6054
6055 2006-06-20 Akim Demaille <akim@epita.fr>
6056
6057 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
6058 (symbol_get): Use it.
6059 * src/parse-gram.y: Use it.
6060
6061 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
6062
6063 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
6064 build succeeds when configured with --enable-gcc-warnings.
6065
6066 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
6067
6068 * src/parse-gram.y (char_name): New function.
6069 (CHAR, STRING, string_content): For %printer, properly escape.
6070 (ID): Prefer fputs to fprintf.
6071 (id): Reindent to be consistent with other rules.
6072 Properly quote char.
6073
6074 The Translation Project changed its way of publishing translations
6075 to maintainers. I haven't received any responses to my request
6076 for supporting the old way, or for documenting the new way. I
6077 have modified 'bootstrap' to use screen scraping
6078 (in this case, HTML scraping). This is unreliable and inelegant,
6079 but I don't see any better way. Yuck.
6080 * bootstrap (TP_URL, WGET_COMMAND): New vars.
6081 (get_translations): New function, which uses HTML scraping to
6082 deduce locations of latest translations.
6083 Use this function to grab both bison and bison-runtime .po files.
6084 Don't bother priming the pump for the runtime-po domain any more,
6085 as it's now translated better than bison is.
6086
6087 2006-06-19 Akim Demaille <akim@epita.fr>
6088
6089 * src/scan-gram.l: No longer "parse" things after `%union' until
6090 `{'. Rather, return a single "%union" token.
6091 No longer make symbols: return strings, and leave the conversion
6092 to symbols to the parser.
6093 (SC_PRE_CODE, token_type): Remove.
6094 * src/parse-gram.y (%union): New field `character'.
6095 Sort tokens.
6096 (CHAR): New token.
6097 (ID, ID_COLON): Now that the scanner no longer makes them
6098 identifiers, adjust all uses to invoke symbol_get.
6099 (id_colon): New, wraps the conversion from string to symbol.
6100 (%union): Accept a possible union_name.
6101 (symbol): Now can be a char.
6102 * data/c.m4 (b4_union_name): Leave a default value.
6103 * data/glr.c, data/yacc.c: Use it.
6104
6105 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
6106
6107 For associating token numbers with token names for "yacc.c", don't use
6108 #define statements unless `--yacc' is specified; always use enum
6109 yytokentype. Most important discussions start at:
6110 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
6111 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
6112 and
6113 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
6114 * NEWS (2.3+): Mention.
6115 * data/c.m4 (b4_yacc_if): New.
6116 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
6117 token #define's.
6118 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
6119 on token name definitions.
6120 * src/getargs.c (usage): Capitalize `Yacc' in English.
6121 * src/output.c (prepare): Define b4_yacc_flag.
6122 * tests/regression.at (Early token definitions): Test that tokens names
6123 are defined before the pre-prologue not just before the post-prologue.
6124 Remove this test case and copy to...
6125 (Early token definitions with --yacc): ... this to test #define's.
6126 (Early token definitions without --yacc): ... and this to test enums.
6127
6128 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
6129
6130 * NEWS: Reword the post-2.3 change to not be so optimistic about
6131 removing the old "look-ahead" spelling.
6132 Update previous look-ahead/lookahead change reports.
6133 * REFERENCES: look-ahead -> lookahead (since that's
6134 what he actually wrote).
6135 * doc/refcard.tex: look ahead -> lookahead,
6136 look-ahead -> lookahead
6137
6138 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
6139
6140 For consistency, use `lookahead' instead of `look-ahead' or
6141 `look_ahead'. Discussed starting at
6142 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
6143 and then at
6144 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
6145 * NEWS: For the next release, note the change to `--report'.
6146 * TODO, doc/bison.1: Update English.
6147 * doc/bison.texinfo: Update English.
6148 (Understanding Your Parser, Bison Options): Document as
6149 `--report=lookahead' rather than `--report=look-ahead'.
6150 * src/conflicts.c: Update English in comments.
6151 (lookahead_set): Rename from look_ahead_set.
6152 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
6153 (resolve_sr_conflict): Rename local look_ahead_tokens to
6154 lookahead_tokens, and update other uses.
6155 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
6156 count_rr_conflicts, conflicts_free): Update uses.
6157 * src/getargs.c (report_args): Move "lookahead" before alternate
6158 spellings.
6159 (report_types): Update uses.
6160 (usage): For `--report' usage description, state `lookahead' spelling
6161 rather than `look-ahead'.
6162 * src/getargs.h (report.report_lookahead_tokens): Rename from
6163 report_look_ahead_tokens.
6164 * src/lalr.c: Update English in comments.
6165 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
6166 (state_lookahead_tokens_count): Rename from
6167 state_look_ahead_tokens_count.
6168 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6169 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
6170 Rename local n_look_ahead_tokens to n_lookahead_tokens.
6171 Update other uses.
6172 Update English in output.
6173 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
6174 * src/print.c: Update English in comments.
6175 (lookahead_set): Rename from look_ahead_set.
6176 (print_reduction): Rename argument lookahead_token from
6177 look_ahead_token.
6178 (print_core, state_default_rule, print_reductions, print_results):
6179 Update uses.
6180 * src/print_graph.c: Update English in comments.
6181 (print_core): Update uses.
6182 * src/state.c: Update English in comments.
6183 (reductions_new): Update uses.
6184 (state_rule_lookahead_tokens_print): Rename from
6185 state_rule_look_ahead_tokens_print, and update other uses.
6186 * src/state.h: Update English in comments.
6187 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
6188 (state_rule_lookahead_tokens_print): Rename from
6189 state_rule_look_ahead_tokens_print.
6190 * src/tables.c: Update English in comments.
6191 (conflict_row, action_row): Update uses.
6192 * tests/glr-regression.at
6193 (Incorrect lookahead during deterministic GLR,
6194 Incorrect lookahead during nondeterministic GLR): Rename
6195 print_look_ahead to print_lookahead.
6196 * tests/torture.at: Update English in comments.
6197 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
6198 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
6199 (Many lookahead tokens): Update uses.
6200 * data/glr.c: Update English in comments.
6201 * lalr1.cc: Likewise.
6202 * yacc.c: Likewise.
6203 * src/conflicts.h: Likewise.
6204 * src/lalr.h: Likewise.
6205 * src/main.c: Likewise.
6206 * src/output.c: Likewise.
6207 * src/parse-gram.c: Likewise.
6208 * src/tables.h: Likewise.
6209 * tests/calc.at: Likewise.
6210
6211 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
6212
6213 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
6214
6215 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
6216
6217 * TODO: Add request from Nelson H. F. Beebe to be able to install
6218 Bison without installing the yacc script.
6219
6220 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6221
6222 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6223 and yytext if they're already #define'd.
6224 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6225 * src/scan-code-c.c: ... here.
6226 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6227 <config.h>.
6228
6229 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6230
6231 Get Bison to build again when configured with --enable-gcc-warnings.
6232 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6233 missing #include's.
6234 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6235 loc argument as it shadows a global.
6236 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6237 invocation.
6238
6239 * src/.cvsignore: Add scan-code.c.
6240
6241 2006-06-07 Akim Demaille <akim@epita.fr>
6242
6243 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6244 to...
6245 * src/scan-code.l: here.
6246 * tests/input.at (Torturing the Scanner): Fix another location
6247 error.
6248
6249 2006-06-07 Akim Demaille <akim@epita.fr>
6250
6251 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6252
6253 2006-06-06 Akim Demaille <akim@epita.fr>
6254
6255 Extract the parsing of user actions from the grammar scanner.
6256 As a consequence, the relation between the grammar scanner and
6257 parser is much simpler. We can also split "composite tokens" back
6258 into simple tokens.
6259 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6260 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6261 rename as...
6262 * src/location.h, src/location.c (add_column_width)
6263 (location_compute): these.
6264 Fix the column count: the initial column is 0.
6265 (location_print): Be robust to ending column being 0.
6266 * src/location.h (boundary_set): New.
6267 * src/main.c: Adjust to scanner_free being renamed as
6268 gram_scanner_free.
6269 * src/output.c: Include scan-code.h.
6270 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6271 Use boundary_set.
6272 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6273 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6274 which is now, again, a separate token.
6275 Adjust all dependencies.
6276 Whereever actions with $ and @ are used, use translate_code.
6277 (action): Remove this nonterminal which is now useless.
6278 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6279 (grammar_current_rule_action_append): Use translate_code.
6280 (packgram): Bound check ruleno, itemno, and rule_length.
6281 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6282 (last_string, last_braced_code_loc, max_left_semantic_context)
6283 (scanner_initialize, scanner_free, scanner_last_string_free)
6284 (gram_out, gram_lineno, YY_DECL_): Move to...
6285 * src/scan-gram.h: this new file.
6286 (YY_DECL): Rename as...
6287 (GRAM_DECL): this.
6288 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6289 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6290 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6291 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6292 Move these declarations, and...
6293 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6294 these to...
6295 * src/flex-scanner.h: this new file.
6296 * src/scan-gram.l (rule_length, rule_length_overflow)
6297 (increment_rule_length): Remove.
6298 (last_braced_code_loc): Rename as...
6299 (gram_last_braced_code_loc): this.
6300 Adjust to the changes of the parser.
6301 Move all the handling of $ and @ into...
6302 * src/scan-code.l: here.
6303 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6304 (handle_action_dollar, handle_action_at): Move to...
6305 * src/scan-code.l: here.
6306 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6307 scan-code.h, scan-code-c.c, scan-gram.h.
6308 (EXTRA_bison_SOURCES): Add scan-code.l.
6309 (BUILT_SOURCES): Add scan-code.c.
6310 (yacc): Be robust to white spaces.
6311
6312 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6313 * tests/regression.at: Adjust the column numbers.
6314 * tests/regression.at: Adjust the error message.
6315
6316 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6317
6318 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6319 Use Akim's wording from
6320 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6321
6322 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6323
6324 Between Bison releases, manually append `+' to the previous Bison
6325 release number, and use that as a signal to automatically print the
6326 ChangeLog's CVS Id keyword from --version. Discussed starting at
6327 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6328 * ChangeLog: Add Id header.
6329 * configure.ac (AC_INIT): Append `+' to `2.3'.
6330 * src/.cvsignore: Add revision.c.
6331 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6332 (BUILT_SOURCES): Add revision.c.
6333 (revision.c): New target rule. This file defines a new global variable
6334 named revision. It initializes it with either the Id from ChangeLog
6335 or, if VERSION doesn't contain `+', with the empty string.
6336 * src/getargs.c (version): Print the value of revision.
6337 * src/revision.h: Extern revision.
6338
6339 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6340
6341 * NEWS: Version 2.3.
6342 * configure.ac (AC_INIT): Likewise.
6343
6344 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6345
6346 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6347 with no arguments, not as an object-like macro. This is for
6348 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6349 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6350 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6351 Document this.
6352
6353 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6354
6355 * src/getargs.c (usage): Back out yesterday's modification of the
6356 --help output so that we don't have to wait for translation before
6357 releasing 2.3.
6358
6359 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6360
6361 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6362 Problem reported by Akim Demaille.
6363
6364 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6365
6366 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6367
6368 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6369
6370 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6371 generated source code. Problem reported by Frans Englich in
6372 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6373
6374 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6375
6376 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6377 shell, not within 'make', so that 'make' by an ordinary builder
6378 (using GNU make) does not worry about configuring gzip. This also
6379 works around a bug reported independently by Keith Thompson and by
6380 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6381 stderr rather than stdout, messing up the build logs.
6382
6383 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6384
6385 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6386 to make sure that YYID will never be unused. This fixes a 'make
6387 maintainer-check' failure caused by the recent changes to the 'Trivial
6388 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6389 not used.
6390 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6391
6392 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6393
6394 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6395 state before an empty RHS is always resolved here. Only the location
6396 of that state is guaranteed to be resolved, and that's enough. This
6397 fixes the remaining bug reported by Derek M. Jones in
6398 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6399 * tests/glr-regression.at (Uninitialized location when reporting
6400 ambiguity): Test the above case.
6401 Also, the embedded comments in this test case claim it checks the case
6402 of an empty RHS that has inherited the initial location. However, the
6403 corresponding LHS was already resolved, so yyresolveLocations didn't
6404 actually have reason to modify it. Fix this by forcing
6405 nondeterministic operation at the beginning of the parse.
6406
6407 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6408
6409 * data/c.m4 (b4_yy_symbol_print_generate):
6410 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6411 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6412 of the bugs reported today by Derek M Jones in
6413 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6414 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6415 defined to be a type name without parens or brackets.
6416 (Location Type): Similarly for YYLTYPE.
6417 * tests/regression.at (Trivial grammars): Put in a test for this
6418 bug that will be caught by 'make maintainer-check' (though not,
6419 alas, by 'make check' unless your compiler is picky).
6420
6421 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6422
6423 * NEWS: Version 2.2.
6424 * configure.ac (AC_INIT): Likewise.
6425
6426 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6427
6428 * data/glr.c (yyreportTree): Make room in yystates for the state
6429 preceding the RHS. This fixes the segmentation fault reported by Derek
6430 M. Jones in
6431 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6432 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6433 to the user. Reported for yyreportTree by Derek M. Jones later in the
6434 same thread.
6435 * THANKS: Add Derek M. Jones.
6436 Update my email address.
6437 Fix typo in Steve Murphy's name.
6438
6439 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6440
6441 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6442 checking against YYLAST that caused the parser to miss a potential
6443 alternative in its diagnostic.
6444 Problem reported by Maria Jose Moron Fernandez in
6445 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6446 * data/lalr1.cc (yysyntax_error_): Likewise.
6447 * data/yacc.c (yysyntax_error): Likewise.
6448 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6449 tokens, in case we run into an older C compiler.
6450 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6451 Use them to check for the off-by-one error fixed above.
6452
6453 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6454 YYSIZE_T, not size_t.
6455 * tests/regression.at (Trivial grammars): New test, to catch
6456 the error fixed by the above patch.
6457
6458 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6459
6460 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6461 scheme.
6462 Reported by Steve Murphy.
6463
6464 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6465
6466 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6467 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6468
6469 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6470
6471 Implement --trace=m4.
6472 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6473 * src/output.c (output_skeleton): When set, pass -dV to m4.
6474
6475 Factor the handling of flags in m4.
6476 * src/output.c (prepare): Rename the muscle names debug, defines,
6477 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6478 * data/c.m4: Adjust.
6479 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6480 Use b4_define_flag_if to define other b4_FLAG_if macros.
6481 (b4_location_if): As a consequence, rename as...
6482 (b4_locations_if): this, for consistency.
6483 Adjust all the skeletons.
6484
6485 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6486
6487 * etc/bench.pm: Shorten bench names.
6488
6489 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6490
6491 * src/output.h, src/output.c (error_verbose): Move to...
6492 * src/getargs.h, src/getargs.c: here.
6493 Sort the flags.
6494 Adjust dependencies.
6495
6496 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6497
6498 * data/c.m4 (b4_copyright): Put the special exception for Bison
6499 skeletons here, so we don't have to put it in each skeleton. All
6500 uses changed. Suggested by Akim Demaille. Also, wrap the
6501 copyright notice, in case it is longer than 80 columns. Replace
6502 comma by newline after title.
6503
6504 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6505
6506 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6507 incompatibility, not a bug. Mention that it wasn't fixed as of
6508 flex 2.5.33.
6509
6510 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6511
6512 * examples/extexi: Enforce the precedence of concatenation over
6513 >>.
6514 Reported by Tommy Nordgren.
6515
6516 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6517
6518 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6519 with the member "token".
6520 Reported by Martin Nylin.
6521
6522 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6523
6524 * data/glr.c: Switch to Bison 2.2 special-exception language in
6525 the copyright notice. Use more-regular format for titles and
6526 copyright notices.
6527 * data/glr.cc: Likewise.
6528 * data/location.cc: Likewise.
6529 * data/yacc.cc: Likewise.
6530 * doc/bison.texinfo (Conditions): Document this.
6531 * NEWS: likewise. Upgrade version to 2.2.
6532
6533 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6534
6535 * data/glr.cc: Remove dead code.
6536
6537 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6538
6539 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6540 that variable and the line breaks the bootstrap. Problem reported
6541 by Juan M. Guerrero.
6542
6543 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6544
6545 * doc/bison.texinfo (Multiple start-symbols): New.
6546
6547 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6548
6549 * etc/README, etc/bench.pl: New.
6550
6551 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6552
6553 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6554 rule.
6555 Reported by Mickael Labau.
6556 * tests/input.at (Torturing the Scanner): Test it.
6557
6558 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6559
6560 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6561 Problem reported by Bob Rossi.
6562
6563 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6564
6565 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6566 and didn't really work.
6567 For the index, use @ifnotinfo, not @iftex.
6568 Minor cleanups of spacing and terminology.
6569
6570 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6571
6572 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6573 of AT_NAME_PREFIX when %name-prefix is not used.
6574
6575 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6576
6577 Apply --prefix to C++ skeletons too: they change the namespace.
6578 The test suite already exercize these cases.
6579 * data/c++.m4 (b4_namespace): New.
6580 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6581 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6582 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6583 * doc/bison.texinfo: Document it.
6584 (Option Cross Key): Use @multitable in all formats. It looks
6585 nicer, even in TeX outputs.
6586 (Rules): Use the same code whatever the output type is.
6587 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6588 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6589 * tests/calc.at: Use it, instead of hard coding `yy'.
6590
6591 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6592
6593 * TODO: Remove dead items.
6594
6595 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6596
6597 * doc/FAQ: Remove, merged into...
6598 * doc/bison.texinfo (FAQ): this.
6599 * doc/Makefile.am (EXTRA_DIST): Adjust.
6600
6601 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6602
6603 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6604 even if empty.
6605 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6606 * doc/bison.texinfo (Calc++ Scanner): Use it.
6607
6608 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6609
6610 Fix two nits reported by twlevo, plus one more that I discovered.
6611
6612 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6613 this is the usual Bison style.
6614 * src/location.h (location_print): Likewise.
6615
6616 * src/reader.h (token_name): Likewise.
6617
6618 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6619
6620 Fix some nits reported by twlevo.
6621 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6622 and "POSIX". Use more-modern syntax for URLs. Mention C++
6623 and ask for Java. Don't hardwire OS version numbers. Add
6624 copyright notice.
6625 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6626 * src/conflicts.c (solved_conflicts_obstack): Now static.
6627
6628 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6629
6630 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6631 page. Say "you can use it" not "you may use it" as on the web page;
6632 we're describing capabilities not granting permission.
6633
6634 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6635
6636 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6637 shadowing warnings. Use usual patter for iterating through RHS.
6638 * tests/glr-regression.at
6639 (Uninitialized location when reporting ambiguity):
6640 Modify yylex so that it uses its argument, rather than trying
6641 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6642 const char -> char const.
6643
6644 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6645 Don't use tabs inside commands; it messes up 'ps'.
6646 Problem reported by twlevo.
6647
6648 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6649
6650 * tests/glr-regression.at (Uninitialized location when reporting
6651 ambiguity): New test case.
6652 * data/glr.c (yyresolveLocations): New function, which uses
6653 YYLLOC_DEFAULT.
6654 (yyresolveValue): Invoke yyresolveLocations before reporting an
6655 ambiguity.
6656 * doc/bison.texinfo (Default Action for Locations): Note
6657 YYLLOC_DEFAULT's usage for ambiguity locations.
6658 (GLR Semantic Actions): Cross-reference those notes.
6659
6660 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6661
6662 * tests/glr-regression.at (Leaked semantic values when reporting
6663 ambiguity): Remove unnecessary union and type declarations.
6664 (Leaked lookahead after nondeterministic parse syntax error): New test
6665 case.
6666 * data/glr.c (yyparse): Check for zero stacks remaining before
6667 attempting to shift the lookahead so that you don't lose it.
6668
6669 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6670
6671 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6672 * tests/glr-regression.at (Leaked semantic values when reporting
6673 ambiguity): New test case.
6674 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6675 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6676 now unnecessary yystackp parameter.
6677 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6678 destructors can be called.
6679
6680 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6681 in existing testcases.
6682
6683 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6684
6685 Don't leak semantic values for parent RHS when a user action cuts the
6686 parser, and clean up related code a bit.
6687 * tests/glr-regression.at (Leaked merged semantic value if user action
6688 cuts parse): Rename to...
6689 (Leaked semantic values if user action cuts parse): ... this. Add check
6690 for leaked parent RHS values.
6691 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6692 between an unresolved state (non-empty chain of semantic options) and
6693 an incomplete one (signaled by an empty chain).
6694 (yyresolveStates): Document the interface. Move all manipulation of a
6695 successfully or unsuccessfully resolved yyGLRState to...
6696 (yyresolveValue): ... here so that yyresolveValue always leaves a
6697 yyGLRState with consistent data and thus is easier to understand.
6698 Remove the yyvalp and yylocp parameters since they are always just
6699 taken from the yys parameter. When reporting a discarded merged value
6700 in debugging output, note that it is incompletely merged. Document the
6701 interface.
6702 (yyresolveAction): If resolving any of the RHS states fails, destroy
6703 them all rather than leaking them. Thus, as long as user actions are
6704 written to clean up the RHS correctly, yyresolveAction always cleans up
6705 the RHS of a semantic option. Document the interface.
6706
6707 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6708
6709 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6710 led to a segmentation fault in GNU Pascal. Problem reported
6711 by Waldek Hebisch.
6712
6713 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6714
6715 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6716 mid-rule action inside a nonterminal symbol in order to declare a
6717 destructor for its semantic value.
6718
6719 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6720
6721 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6722 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6723 __cplusplus && ! defined _STDLIB_H && !
6724 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6725 defined free))]: Include <stdlib.h> rather than rolling our own
6726 declarations of malloc and free, to avoid problems with
6727 incompatible declarations (using 'throw') C++'s stdlib.h. This
6728 should fix Debian bug 340012
6729 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6730 reported by Guillaume Melquiond.
6731
6732 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6733
6734 * NEWS: Clarify symbols versus types in unused-value warnings.
6735
6736 * configure.ac (AC_INIT): Bump version number.
6737
6738 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6739
6740 * NEWS: Version 2.1a.
6741 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6742 since C99 requires this.
6743
6744 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6745
6746 * m4/c-working.m4: New file.
6747 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6748
6749 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6750
6751 * Makefile.maint: Merge from coreutils.
6752
6753 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6754
6755 More portability fixes for problems summarized by Nelson H. F. Beebe.
6756
6757 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6758 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6759 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6760 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6761 messes up because C++ code is compiled in 32-bit mode but linked
6762 in 64-bit mode.
6763
6764 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6765
6766 More portability fixes for problems summarized by Nelson H. F. Beebe.
6767
6768 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6769 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6770
6771 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6772 nodist_PROGRAMS, since we don't need to actually compile the
6773 example if we're just doing a plain 'make'. This avoids bothering
6774 the installer unnecessarily about problems due to weird C++
6775 compilers.
6776
6777 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6778
6779 More portability fixes for problems summarized by Nelson H. F. Beebe.
6780
6781 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6782 than #include "...", and compile with -I'.'. The old method was
6783 not portable, according to Posix and the C standard, and it does
6784 not work with Sun C 5.7, where previous #line directives affect
6785 the working directory used in later #include "..." directives.
6786
6787 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6788
6789 Various DJGGP specific issues in /djgpp
6790
6791 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6792
6793 More portability fixes for problems summarized by Nelson H. F. Beebe.
6794
6795 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6796 '#include <map>' works and that you can apply ++ to iterators.
6797
6798 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6799
6800 Work around portability problems summarized by Nelson H. F. Beebe in
6801 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6802
6803 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6804 that '#include <string>' works.
6805
6806 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6807 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6808 "warning: sorry: semantics of inline function static data `const
6809 unsigned char translate_table[262]' are wrong (you'll wind up with
6810 multiple copies)".
6811
6812 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6813 or, xor to not_, and_, or_, and xor_, respectively. This works
6814 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6815 random system header somewhere that includes the equivalent of
6816 <iso646.h>.
6817
6818 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6819 -E" works; it apparently doesn't work with PathScale EKO Compiler
6820 Suite Version 2.0.
6821
6822 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6823
6824 During deterministic GLR operation, user actions should be able to
6825 influence the parse by changing yychar. To make this easier to fix and
6826 to make glr.c easier to evolve in general, don't maintain yytoken in
6827 parallel with yychar; just compute yytoken when needed.
6828 * tests/glr-regression.at (Incorrect lookahead during deterministic
6829 GLR): Check that setting yychar in a user action has the intended
6830 effect.
6831 * data/glr.c (yyGLRStack): Remove yytokenp member.
6832 (yyclearin): Don't set *yytokenp.
6833 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6834 yychar rather than *yytokenp to determine the current lookahead.
6835 Compute yytoken locally when needed.
6836 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6837 point to.
6838
6839 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6840 after `--report' documentation.
6841
6842 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6843
6844 * src/parse-gram.y (grammar_declaration): Location of printer
6845 symbol is @1, not list->location. Bug reported by twlevo.
6846 * tests/input.at (Incompatible Aliases): Adjust to above change.
6847
6848 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6849
6850 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6851 all the test at once. This makes the output easier to read in the
6852 normal case.
6853
6854 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6855 got from <http://bro-ids.org/download.html>. The bug is that
6856 when two actions appeared in succession, the second one was
6857 scanned before the first one was added to the grammar rule
6858 as a midrule action. Bison then output the incorrect warning
6859 "parse.y:905.17-906.36: warning: unused value: $3".
6860 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6861 associated with a value.
6862 (rhs): Don't invoke grammar_current_rule_action_append.
6863 (action): Invoke it here instead.
6864 * src/reader.c (grammar_midrule_action): Now extern.
6865 (grammar_current_rule_action_append): Don't invoke
6866 grammar_midrule_action; that is now the scanner's job.
6867 * src/reader.h (last_string, last_braced_code_loc):
6868 (grammar_midrule_action): New decls.
6869 * src/scan-gram.l (last_string): Now extern, sigh.
6870 (last_braced_code_loc): New extern variable.
6871 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6872 rule already has an action.
6873 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6874 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6875 Add some tests to check that the above changes fixed the bug.
6876
6877 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6878
6879 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6880 All used changed. Check whether the symbol has a destructor,
6881 not whether it is typed.
6882 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6883 that the values are still reported as unused. All line numbers
6884 adjusted.
6885
6886 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6887
6888 Work around a bug in bro 0.8, which underparenthesizes its
6889 definition of YYLLOC_DEFAULT.
6890 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6891 their arguments.
6892 * data/lalr1.cc: Likewise.
6893 * data/yacc.cc: Likewise.
6894
6895 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6896
6897 Work around a bug in Pike 7.0, and give the Pike folks a
6898 better way to override the usual int widths.
6899 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6900 user can override the types.
6901 (short): #undef, to work around a bug in Pike 7.0.
6902 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6903 (union yyalloc.yyss): Use yytype_int16 rather than short.
6904 All uses changed.
6905 (yysigned_char): Remove.
6906 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6907 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6908 * tests/regression.at (Web2c Actions): Adjust to above changes.
6909
6910 * src/reader.c (check_and_convert_grammar): New function.
6911 (reader): Close the input file even if something went wrong during
6912 parsing. Minor file descriptor leak reported by twlevo.
6913
6914 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6915 to pacify gcc -Wswitch-default.
6916 * src/scan-gram.l (adjust_location): Use a default: break; case
6917 to pacify gcc -Wswitch-default.
6918 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6919 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6920 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6921 Move these decls to scan-skel.l, since they don't need to be
6922 visible elsewhere.
6923 * src/scan-skel.l: Accept the above decls.
6924 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6925 is used.
6926
6927 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6928
6929 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6930 since we don't want to insist on a version number at the start
6931 of the changelog every time.
6932 * Makefile.maint: Sync from coreutils a bit better.
6933 (sc_trailing_blank): Renamed from sc_trailing_space.
6934 All uses changed.
6935 (sc_no_if_have_config_h, sc_require_config_h):
6936 (sc_prohibit_assert_without_use): New rules.
6937 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6938 (sc_dd_max_sym_length): Fix leading spaces in rule.
6939 (sc_system_h_headers): Prefix with @.
6940 (sc_useless_cpp_parens, m4-check): Output line numbers.
6941 (changelog-check): Allow version only in head.
6942 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6943 satisfy new Makefile.maint rule.
6944 * data/glr.c: Likewise.
6945 * data/glr.cc: Likewise.
6946 * data/lalr1.cc: Likewise.
6947 * data/yacc.c: Likewise.
6948 * lib/ebitsetv.c: Likewise.
6949 * lib/lbitset.c: Likewise.
6950 * lib/subpipe.c: Likewise.
6951 * lib/timevar.c: Likewise.
6952 * src/system.h: Likewise.
6953 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6954 * djgpp/Makefile.maint: Add copyright notice.
6955 * djgpp/README.in: Likewise.
6956 * djgpp/config.bat: Likewise.
6957 * djgpp/config.site: Likewise.
6958 * djgpp/config_h.sed: Likewise.
6959 * djgpp/djunpack.bat: Likewise.
6960 * djgpp/config.sed: Fix copyright notice to match standard format.
6961 * djgpp/subpipe.h: Likewise.
6962 * lib/bitsetv-print.c: Likewise.
6963 * lib/bitsetv.c: Likewise.
6964 * lib/subpipe.h: Likewise.
6965 * lib/timevar.c: Likewise.
6966 * lib/timevar.h: Likewise.
6967 * djgpp/subpipe.c: Use standard recipe for config.h.
6968 * lib/abitset.c: Likewise.
6969 * lib/bitset.c: Likewise.
6970 * lib/bitset_stats.c: Likewise.
6971 * lib/bitsetv-print.c: Likewise.
6972 * lib/bitsetv.c: Likewise.
6973 * lib/ebitsetv.c: Likewise.
6974 * lib/get-errno.c: Likewise.
6975 * lib/lbitset.c: Likewise.
6976 * lib/subpipe.c: Likewise.
6977 * lib/timevar.c: Likewise.
6978 * lib/vbitset.c: Likewise.
6979 * tests/local.at: Likewise.
6980 * src/scan-gram.l: Don't include verify.h, since system.h does
6981 that for us.
6982 * .x-sc_require_config_h: New file.
6983 * .x-sc_unmarked_diagnostics: New file.
6984
6985 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6986
6987 Be a bit more systematic about using 'abort'.
6988 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6989 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6990 Put 'default: abort ();' before some other case, to satisfy older
6991 pedantic compilers.
6992 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6993 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6994 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6995 * src/conflicts.c (resolve_sr_conflict): Likewise.
6996 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6997 (get_decision_str, get_orientation_str, get_node_alignment_str):
6998 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6999 (get_linestyle_str, get_arrowstyle_str): Likewise.
7000 * src/conflicts.c (resolve_sr_conflict):
7001 Use a default case rather than one for the one remaining enum
7002 value, to catch invalid enum values as well.
7003 * src/lalr.c (set_goto_map, map_goto):
7004 Prefer "assert (FOO);" to "if (!FOO) abort ();".
7005 * src/nullable.c (nullable_compute, token_definitions_output):
7006 Likewise.
7007 * src/reader.c (packgram, reader): Likewise.
7008 * src/state.c (transitions_to, state_new, state_reduction_find):
7009 Likewise.
7010 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
7011 (symbol_pack): Likewise.
7012 * src/tables.c (conflict_row, pack_vector): Likewise.
7013 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
7014 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
7015 * src/system.h: Don't include <assert.h>.
7016 (assert): New macro.
7017
7018 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
7019 (Destructor Decl, Parser Function, Pure Calling):
7020 Describe rules for braces inside C code more carefully.
7021
7022 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
7023
7024 Fix some porting glitches found by Nelson H. F. Beebe.
7025 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
7026 compilers that don't understand that abort () does not return.
7027 * src/state.c (transitions_to): Likewise.
7028 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
7029 that '#include <cstdlib>' works.
7030 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
7031 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
7032 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
7033 for the benefit of some pre-C99 compilers.
7034
7035 * bootstrap: Undo changes to gnulib files that autoreconf made.
7036
7037 Minor fixups to get 'make maintainer-check' to work.
7038 * configure.ac: Don't use -Wnested-externs, as it's incompatible
7039 with the new verify.h implementation.
7040 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
7041 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
7042 * data/yacc.c (YYUSE): Likewise.
7043 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
7044 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
7045 * src/parse-gram.y (declaration): Don't pass a string constant
7046 to a function that expects char *, since GCC might complain
7047 about the constant value.
7048 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
7049 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
7050 before #defining them.
7051 * tests/glr-regression.at
7052 (Incorrectly initialized location for empty right-hand side in GLR):
7053 In yyerror, use the msg arg.
7054 (Corrupted semantic options if user action cuts parse):
7055 (Incorrect lookahead during deterministic GLR):
7056 (Incorrect lookahead during nondeterministic GLR):
7057 Don't name a local var 'index'; it shadows string.h's 'index'.
7058
7059 2006-01-19 Akim Demaille <akim@epita.fr>
7060
7061 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
7062 location, not just parts of it.
7063
7064 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
7065
7066 * NEWS: Document the fact that multiple %unions are now allowed.
7067 * doc/bison.texinfo (Union Decl): Likewise.
7068 * TODO: This feature is now implemented, so remove it from
7069 the wishlist.
7070
7071 * Makefile.maint: Merge with coreutils Makefile.maint.
7072 (CVS_LIST): Use build-aux version if available.
7073 (VERSION_REGEXP): New macro.
7074 (syntax-check-rules): Add sc_no_if_have_config_h,
7075 sc_prohibit_assert_without_use, sc_require_config_h,
7076 sc_useless_cpp_parens.
7077 (sc_obsolete_symbols): Check for O_NDELAY.
7078 (sc_dd_max_sym_length): Track coreutils.
7079 (sc_unmarked_diagnostics): Look in all files, not just *.c.
7080 (sc_useless_cpp_parens): New rule.
7081 (news-date-check): Look for version or today's date.
7082 (changelog-check): Don't require version number near head.
7083 (copyright-check): Use current year instead of hardwiring 2005.
7084 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
7085 (announcement): Add --gpg-key-ID.
7086
7087 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
7088 with "file system".
7089
7090 Avoid undefined behavior that addressed just before the start of an
7091 array. Problem reported by twlevo.
7092 * src/reader.c (packgram): Prepend a new sentinel before ritem.
7093 * src/lalr.c (build_relations): Rely on new sentinel.
7094 * src/gram.c (gram_free): Adjust to new sentinel.
7095
7096 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
7097
7098 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
7099 yylookaheadNeeds. All uses updated.
7100 (yysplitStack): Rename local yynewLookaheadStatuses to
7101 yynewLookaheadNeeds.
7102 * data/glr-regression.at (Incorrect lookahead during nondeterministic
7103 GLR): In comments, change `lookahead status' to `lookahead need'.
7104
7105 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7106
7107 * data/glr.c (yysplitStack): A little stylistic rewrite.
7108
7109 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7110
7111 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
7112
7113 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
7114
7115 * doc/bison.texinfo: Fix some typos.
7116 (GLR Semantic Actions): New subsection discussing special
7117 considerations because GLR semantic actions might be deferred.
7118 (Actions): Mention look-ahead usage of yylval.
7119 (Actions and Locations): Mention look-ahead usage of yylloc.
7120 (Special Features for Use in Actions): Add YYEOF entry and mention it
7121 in the yychar entry.
7122 In the yychar entry, remove mention of the local yychar case (pure
7123 parser) since this is irrelevant information when writing semantic
7124 actions and since it's already discussed in `Table of Symbols' where
7125 yychar is otherwise described as an external variable.
7126 In the yychar entry, don't call it the `current' look-ahead since it
7127 isn't when semantic actions are deferred.
7128 In the yychar and yyclearin entries, add note about deferred semantic
7129 actions.
7130 Add yylloc and yylval entries discussing look-ahead usage.
7131 (Look-Ahead Tokens): When discussing yychar, don't call it the
7132 `current' look-ahead, and do mention yylval and yylloc.
7133 (Error Recovery): Cross-reference `Action Features' when mentioning
7134 yyclearin.
7135 (Table of Symbols): In the yychar entry, don't call it the `current'
7136 look-ahead.
7137 In the yylloc and yylval entries, mention look-ahead usage.
7138
7139 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
7140
7141 * tests/glr-regression.at: Update copyright year to 2006.
7142
7143 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7144
7145 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
7146 use during nondeterministic operation to track which stacks have
7147 actually needed the current lookahead.
7148 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
7149 Allocate, deallocate, resize, and otherwise shuffle space for
7150 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
7151 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
7152 appropriately during nondeterministic operation.
7153 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
7154 members to store the current lookahead to be used by the deferred
7155 user action.
7156 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
7157 from which the RHS is taken. Set the lookahead members of the new
7158 yySemanticOption according to the lookahead status for stack yyk.
7159 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
7160 yyaddDeferredAction.
7161 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
7162 members of yySemanticOption before invoking yyuserAction, and then set
7163 them back to their current values afterward.
7164 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
7165 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
7166 * tests/glr-regression.at: Remove `.' from the ends of recent test case
7167 titles for consistency.
7168 (Leaked merged semantic value if user action cuts parse): In order to
7169 suppress lint warnings, use arguments in merge function, and assign
7170 char value < 128 in main.
7171 (Incorrect lookahead during deterministic GLR): New test case.
7172 (Incorrect lookahead during nondeterministic GLR): New test case.
7173
7174 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7175
7176 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
7177 !yyvaluep as signal that no semantic value is available to print.
7178 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
7179 to print a semantic value.
7180
7181 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
7182
7183 * tests/glr-regression.at: For consistency with my newer test cases,
7184 don't thank myself.
7185
7186 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
7187
7188 * data/glr.c (yyresolveValue): When merging semantic options, if at
7189 least one user action succeeds but a later one cuts the parse, then
7190 destroy the semantic value before returning rather than leaking it.
7191 (yyresolveStates): If a user action cuts the parse and thus
7192 yyresolveValue fails, ignore the (unset) semantic value rather than
7193 corrupting the yyGLRState, and empty the semantic options list since
7194 the user actions should have called all necessary destructors.
7195 Simplify code with YYCHK.
7196 * tests/glr-regression.at (Corrupted semantic options if user action
7197 cuts parse): New test case.
7198 (Undesirable destructors if user action cuts parse): New test case.
7199 Before applying any of this patch, this test case never actually failed
7200 for me... but only because the corrupted semantic options usually
7201 masked this bug.
7202 (Leaked merged semantic value if user action cuts parse): New test
7203 case.
7204
7205 2006-01-05 Akim Demaille <akim@epita.fr>
7206
7207 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
7208
7209 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
7210
7211 * data/c.m4 (b4_c_modern): New macro, with a new provision for
7212 _MSC_VER. Problem reported by Cenzato Marco.
7213 (b4_c_function_def): Use it.
7214 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
7215 b4_c_modern.
7216 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
7217 than rolling our own.
7218
7219 2006-01-04 Akim Demaille <akim@epita.fr>
7220
7221 Also warn about non-used mid-rule values.
7222 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7223 member.
7224 (symbol_list_new): Adjust.
7225 * src/reader.c (symbol_typed_p): New.
7226 (grammar_rule_check): Use it.
7227 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7228 Check its rule.
7229 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7230 Use it.
7231 * tests/actions.at (Exotic Dollars): Adjust.
7232
7233 2006-01-04 Akim Demaille <akim@epita.fr>
7234
7235 * src/reader.c (grammar_midrule_action): If $$ is set in a
7236 mid-rule, move the `used' bit to its lhs.
7237 * tests/input.at (Unused values): New.
7238 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7239
7240 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7241
7242 * doc/bison.texinfo (Bison Options): Say more accurately what
7243 --yacc does.
7244 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7245 about declarations in the grammar when in Yacc mode, as POSIX does
7246 not require a diagnostic when the grammar uses extensions.
7247
7248 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7249
7250 Warn about dubious constructions like "%token T T".
7251 Reported by twlevo.
7252 * src/symtab.h (struct symbol.declared): New member.
7253 * src/symtab.c (symbol_new): Initialize it to false.
7254 (symbol_class_set): New arg DECLARING, specifying whether
7255 this is a declaration that we want to warn about, if there
7256 is more than one of them. All uses changed.
7257
7258 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7259 Allow multiple %union directives, whose contents concatenate.
7260 * src/parse-gram.y (grammar_declaration): Likewise.
7261 Use muscle_code_grow, so that we don't need stype_line any more.
7262 All uses changed.
7263
7264 * src/muscle_tab.c (muscle_grow): Fix comment.
7265
7266 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7267 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7268 Update copyright year to 2006.
7269
7270 2006-01-03 Akim Demaille <akim@epita.fr>
7271
7272 Have glr.cc pass (some of) the calc.at tests.
7273 * data/glr.cc (b4_parse_param_orig): New.
7274 (b4_parse_param): Improve its definition, and bound it more
7275 clearly in the skeleton.
7276 (b4_epilogue): Append, instead of prepending, in order to keep
7277 #line consistency.
7278 Simplify the generation of auxiliary functions: locations and
7279 purity are mandated.
7280 (b4_global_tokens_and_yystype): Honor it.
7281 * data/location.cc (c++.m4): Don't include it.
7282 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7283 and AT_SKEL_CC_IF.
7284 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7285 AT_LALR1_CC_IF.
7286 Be sure to initialize the first position's filename.
7287 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7288 mandated anyway.
7289 (AT_CHECK_CALC_GLR_CC): New.
7290 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7291
7292 2006-01-02 Akim Demaille <akim@epita.fr>
7293
7294 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7295 c.m4.
7296 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7297 * data/glr.cc: Do not include stack.hh.
7298
7299 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7300
7301 * data/glr.c: Reformat whitespace with tabs.
7302 (b4_lpure_formals): Remove this unused m4 macro.
7303 * tests/cxx-type.at: Reformat whitespace with tabs.
7304 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7305 since it's a member. Rename type to isNterm for clarity.
7306
7307 2005-12-29 Akim <akim@sulaco.local>
7308
7309 Let glr.cc catch up with symbol_value_print.
7310 * data/glr.cc (b4_yysymprint_generate): Replace by...
7311 (b4_yy_symbol_print_generate): this.
7312 (yy_symbol_print, yy_symbol_value_print): Declare them.
7313
7314 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7315
7316 * src/location.h (boundary): Note that a line or column equal
7317 to INT_MAX indicates an overflow.
7318 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7319 (rule_length_overflow, increment_rule_length, add_column_width):
7320 New functions.
7321 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7322 (<SC_BRACED_CODE>"}"):
7323 Use increment_rule_length rather than incrementing it by hand.
7324 (adjust_location, handle_syncline): Diagnose overflow.
7325 (handle_action_dollar, handle_action_at):
7326 Fix bug with monstrosities like $-2147483648.
7327 Remove now-unnecessary checks.
7328 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7329 (convert_ucn_to_byte): Verify assumptions.
7330 (handle_syncline): New arg LOC. All callers changed.
7331 Don't store through a value derived from char const * pointer.
7332
7333 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7334 GCC warnings.
7335
7336 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7337
7338 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7339 Remove unnecessary forward static decls.
7340
7341 2005-12-27 Akim Demaille <akim@epita.fr>
7342
7343 * src/reader.c (grammar_current_rule_check): Also check that $$
7344 is used.
7345 Take the rule to check as argument, hence rename as...
7346 (grammar_rule_check): this.
7347 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7348 Rename as...
7349 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7350 (grammar_midrule_action, grammar_symbol_append): Now static.
7351 * tests/torture.at (input): Don't rely on the default action
7352 being always performed.
7353 * tests/calc.at: "Set" $$ even when the action is "cut" with
7354 YYERROR or other.
7355 * tests/actions.at (Exotic Dollars): Instead of using unused
7356 values, check that the warning is issued.
7357
7358 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7359
7360 * NEWS: Improve wording for unused-value warnings.
7361
7362 2005-12-22 Akim Demaille <akim@epita.fr>
7363
7364 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7365 (b4_yysymprint_generate): Rename as...
7366 (b4_yy_symbol_print_generate): this.
7367 Generate yy_symbol_print instead of yysymprint.
7368 Generate also yy_symbol_value_print, and use it.
7369
7370 2005-12-22 Akim Demaille <akim@epita.fr>
7371
7372 * NEWS: Warn about unused values.
7373 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7374 a `used' member.
7375 (symbol_list_n_get, symbol_list_n_used_set): New.
7376 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7377 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7378 * src/reader.c (grammar_current_rule_check): Check that values are
7379 used.
7380 * src/symtab.c (symbol_print): Accept 0.
7381 * tests/existing.at: Remove the type information.
7382 Empty the actions.
7383 Remove useless actions (beware of mid-rule actions: perl -000
7384 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7385 * tests/actions.at (Exotic Dollars): Use unused values.
7386 * tests/calc.at: Likewise.
7387 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7388 Likewise.
7389
7390 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7391 rule_useful_p.
7392
7393 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7394
7395 Undo 2005-12-01 tentative license wording change. The wording is
7396 still being reviewed by the lawyers, and we don't want to wait for
7397 them before publishing a test release. For now, revert to the
7398 previous wording.
7399 * NEWS: Undo 2005-12-01 change.
7400 * data/glr.c: Revert to previous license wording.
7401 * data/glr.cc: Likewise.
7402 * data/lalr1.cc: Likewise.
7403 * data/location.cc: Likewise.
7404 * data/yacc.c: Likewise.
7405
7406 * NEWS: Reword %destructor vs YYABORT etc.
7407 * data/glr.c: Use American spacing, for consistency.
7408 * data/glr.cc: Likewise.
7409 * data/lalr1.cc: Likewise.
7410 * data/yacc.c: Likewise.
7411 * data/yacc.c: Reformat comments slightly.
7412 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7413 for consistency. Fix some spelling errors and reword recently-included
7414 text slightly.
7415 * tests/cxx-type.at: Cast results of malloc, for C++.
7416
7417 2005-12-21 Joel E. Denny <address@hidden>
7418
7419 * tests/cxx-type.at: Construct a tree, count the parents of shared
7420 nodes, and free each node once and only once. Previously, the memory
7421 for semantic values was leaked instead.
7422
7423 2005-12-21 Joel E. Denny <address@hidden>
7424
7425 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7426 (yylval, yylloc): If pure, #define to yystackp->yyval and
7427 yystackp->yyloc similar to yychar and yynerrs.
7428 (yyparse): If pure, remove local yylval and yylloc. Add local
7429 yystackp to accommodate pure definitions of yylval and yylloc.
7430 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7431 yylvalp and yyllocp to &yylval and &yylloc.
7432 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7433 namespace. Previously, nerrs and char were missing, but lval and lloc
7434 weren't necessary.
7435 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7436 yylvalp and yyllocp parameters since, if pure, these are now always
7437 accessible through yystackp. If not pure, they are still accessible
7438 globally.
7439 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7440 `if (YYID (N))' to pacify lint.
7441
7442 2005-12-21 Akim Demaille <akim@epita.fr>
7443
7444 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7445 destroy the RHS symbols of a rule.
7446 * data/yacc.c (yylen): Initialize to 0.
7447 Keep its value to the number of items to possibly shift.
7448 In particular, a regular successful parse that ends on YYFINAL by
7449 a (internal) YYACCEPT must not have yylen != 0.
7450 (yyerrorlab, yyreturn): Pop the RHS.
7451 Reorder a bit to emphasize the `shifting' bits of code.
7452 (YYPOPSTACK): Now accept a number of items to pop.
7453 * data/lalr1.cc: Likewise.
7454 * data/glr.c: Formatting changes.
7455 Use goto instead of fall through.
7456 * doc/bison.texinfo (Destructor Decl): Complete.
7457
7458 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7459
7460 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7461 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7462 * djgpp/config.bat: Replace every occurence of the file name
7463 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7464 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7465 * djgpp/config.sed: Replace every occurence of the file name
7466 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7467 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7468 * djgpp/djunpack.bat: DJGPP specific file.
7469 * djgpp/fnchange.lst: DJGPP specific file.
7470 * djgpp/README.in: Add new information about how to unpack the bison
7471 source on MSDOS and other systems which have 8.3 file name restrictions
7472 using djunpack.bat and fnchange.lst.
7473
7474 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7475
7476 * bootstrap (build_cvs_prefix): Remove; unused.
7477 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7478 when getting gnulib.
7479
7480 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7481
7482 * data/glr.c: Reorder typedef declarations for structs to match order
7483 of struct declarations.
7484 Rename yystack everywhere to yystackp except in yyparse where it's not
7485 a pointer.
7486 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7487 consistency.
7488 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7489 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7490 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7491 lint.
7492
7493 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7494
7495 * tests/sets.at (Accept): Fix typos in regular expression used to
7496 sed out the final state number.
7497
7498 Work around portability problem on Solaris 10: flex-generated
7499 files include <stdio.h> before <config.h>, which messes up
7500 because the latter defines __EXTENSIONS__. Address the problem
7501 by creating two new little files that include <config.h> first,
7502 then include the flex-generated files. Rewrite everyone else
7503 to include <config.h> first, as well.
7504 * lib/timevar.c: Always include "config.h".
7505 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7506 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7507 (EXTRA_bison_SOURCES): New macro.
7508 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7509 * src/system.h: Don't include config.h.
7510 * src/LR0.c: Include <config.h> first.
7511 * src/assoc.c: Likewise.
7512 * src/closure.c: Likewise.
7513 * src/complain.c: Likewise.
7514 * src/conflicts.c: Likewise.
7515 * src/derives.c: Likewise.
7516 * src/files.c: Likewise.
7517 * src/getargs.c: Likewise.
7518 * src/gram.c: Likewise.
7519 * src/lalr.c: Likewise.
7520 * src/location.c: Likewise.
7521 * src/main.c: Likewise.
7522 * src/muscle_tab.c: Likewise.
7523 * src/nullable.c: Likewise.
7524 * src/output.c: Likewise.
7525 * src/parse-gram.y: Likewise.
7526 * src/print.c: Likewise.
7527 * src/print_graph.c: Likewise.
7528 * src/reader.c: Likewise.
7529 * src/reduce.c: Likewise.
7530 * src/relation.c: Likewise.
7531 * src/state.c: Likewise.
7532 * src/symlist.c: Likewise.
7533 * src/symtab.c: Likewise.
7534 * src/tables.c: Likewise.
7535 * src/uniqstr.c: Likewise.
7536 * src/vcg.c: Likewise.
7537
7538 * src/parse-gram.y: Fix minor problems uncovered by lint.
7539 (current_lhs, current_lhs_location): Now static.
7540 (current_assoc): Remove unused variable.
7541
7542 Cleanups so that Bison-generated parsers have less lint.
7543 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7544 Prepend /*ARGSUSED*/, for lint's sake.
7545 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7546 definition if 'lint' is defined.
7547 (YYID): New macro (or function, if lint).
7548 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7549 * data/yacc.c: Likewise.
7550 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7551 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7552 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7553 is C++ only.
7554 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7555 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7556 Use YYID(0) rather than 0, for lint.
7557 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7558 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7559
7560 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7561
7562 * tests/glr-regression.at
7563 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7564 Close memory leak reported by twlevo.
7565
7566 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7567
7568 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7569 all stacks.
7570 (yyparse): Iterate another stack in order to call user destructors.
7571 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7572 New test case.
7573 (Duplicated user destructor for lookahead): This test now is expected
7574 to succeed.
7575
7576 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7577
7578 * NEWS: Document the following change.
7579 * data/yacc.c: Say "parser skeleton" rather than "file", since
7580 it's no longer just a file.
7581 * data/glr.c: Grant a special exception for C GLR parsers, that
7582 reads like the already-existing exception for C LALR(1) parsers.
7583 * data/glr.cc: Likewise.
7584 * data/lalr1.cc: Likewise.
7585 * data/location.cc: Likewise.
7586 * data/yacc.c: Reword the "written by" statement to clarify that
7587 it was the parser skeleton, not the entire output file.
7588 * data/glr.c: Written by Paul Hilfinger.
7589 * data/glr.cc: Written by Akim Demaille.
7590 * data/lalr1.cc: Likewise.
7591
7592 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7593
7594 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7595 Fix typos in previous change that broke 'make check'.
7596 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7597 supported in C.
7598 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7599 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7600 We can revert this once things settle down.
7601
7602 * src/conflicts.c (conflicts_print): Don't print file name twice
7603 when %expect fails because there were no conflicts.
7604 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7605 change.
7606 * tests/conflicts.at (%expect not enough, %expect too much):
7607 (%expect with reduce conflicts): Adjust to new behavior.
7608
7609 2005-11-18 Akim Demaille <akim@epita.fr>
7610
7611 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7612 errors.
7613 * NEWS: Document this.
7614 * doc/bison.texinfo (Expect Decl): Likewise.
7615
7616 2005-11-16 Akim Demaille <akim@epita.fr>
7617
7618 Generalize the display of semantic values and locations in traces.
7619 * data/glr.c (yy_reduce_print): Fix indices (again).
7620 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7621 literal integers.
7622 * data/lalr1.cc (yyreduce_print): Rename as...
7623 (yy_reduce_print): this.
7624 Display values and locations.
7625 * data/yacc.c (yy_reduce_print): Likewise.
7626 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7627 (yysymprint): Move higher to be visible from yy_reduce_print).
7628 (yyparse): Adjust.
7629 * tests/calc.at: Adjust the expected length of the traces.
7630
7631 2005-11-14 Akim Demaille <akim@epita.fr>
7632
7633 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7634 from 1 to N, while values and location start at 0.
7635 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7636
7637 2005-11-14 Akim Demaille <akim@epita.fr>
7638
7639 * data/glr.c (yy_reduce_print): Fix the $ number.
7640
7641 2005-11-14 Akim Demaille <akim@epita.fr>
7642
7643 "Use" parse parameters.
7644 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7645 * data/glr.c, data/glr.cc: Use them.
7646 * data/glr.c (YYUSE): Have a C++ definition that supports
7647 non-pointer types.
7648
7649 2005-11-14 Akim Demaille <akim@epita.fr>
7650
7651 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7652
7653 2005-11-14 Akim Demaille <akim@epita.fr>
7654
7655 * data/glr.cc: New.
7656 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7657
7658 2005-11-12 Akim Demaille <akim@epita.fr>
7659
7660 Let position and location be PODs.
7661 * data/location.cc (position::initialize, location::initialize): New.
7662 (position::position, location::location): Define only if
7663 b4_location_constructors is defined.
7664 * data/lalr1.cc (b4_location_constructors): Define it for backward
7665 compatibility.
7666 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7667
7668 2005-11-12 Akim Demaille <akim@epita.fr>
7669
7670 * data/lalr1.cc: Move the body of the ctor and dtor into the
7671 parser file (instead of the header).
7672 Wrap the implementations in a "namespace yy".
7673
7674 2005-11-12 Akim Demaille <akim@epita.fr>
7675
7676 Have glr.c include its header file when created.
7677 * data/glr.c (b4_shared_declarations): New.
7678 Output them verbatim in the parser if !%defines, otherwise
7679 output then in the header file, and include it instead.
7680
7681 2005-11-11 Akim Demaille <akim@epita.fr>
7682
7683 * data/glr.c: Comment changes.
7684
7685 2005-11-11 Akim Demaille <akim@epita.fr>
7686
7687 When yydebug, report semantic and location values for reductions.
7688 * data/glr.c (yy_reduce_print): Report the semantic values and the
7689 locations.
7690 (YY_REDUCE_PRINT): Adjust.
7691 (yyglrReduce): Use them.
7692 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7693 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7694 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7695 traces.
7696
7697 2005-11-10 Akim Demaille <akim@epita.fr>
7698
7699 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7700 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7701 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7702
7703 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7704
7705 * m4/cxx.m4, examples/Makefile.am: Don't build
7706 examples/calc++ if no C++ compiler is available. (trivial change)
7707
7708 2005-11-09 Akim Demaille <akim@epita.fr>
7709
7710 * src/scan-skel.l: Use a couple of asserts.
7711
7712 2005-11-03 Akim Demaille <akim@epita.fr>
7713
7714 In some (weird) cases, the final state number is incorrect.
7715 Reported by Alexandre Duret-Lutz.
7716 * src/LR0.c (state_list_append): Remove the computation of
7717 final_state.
7718 (save_reductions): Do it here.
7719 (get_state): Alpha conversion.
7720 (generate_states): Use a for loop.
7721 * src/gram.h (item_number_is_rule_number)
7722 (item_number_is_symbol_number): New.
7723 * src/state.c: Use assert.
7724 * src/system.h: Include assert.h.
7725 * tests/sets.at (Accept): New.
7726
7727 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7728
7729 * data/glr.c (yyfill): Adjust comment.
7730 (yyresolveAction): Initialize default location properly
7731 for empty right-hand sides.
7732 (yydoAction): Ditto.
7733 Add comment explaining apparently dead code.
7734 * tests/glr-regression.at
7735 (Incorrectly initialized location for empty right-hand side in GLR):
7736 New test.
7737
7738 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7739
7740 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7741 gnulib when interrupted. This fixes some race conditions and
7742 works around some portability problems (one noted by Paul
7743 Hilfinger).
7744
7745 2005-10-22 Akim <akim@epita.fr>
7746
7747 * Makefile.cfg: Adjust to config -> build-aux.
7748 Reported by twledo.
7749
7750 2005-10-21 Akim Demaille <akim@epita.fr>
7751
7752 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7753 the %parse-params.
7754 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7755 * data/yacc.c (b4_Pure_if): Rename as...
7756 (b4_yacc_pure_if): this.
7757 (YY_SYMBOL_PRINT, yyparse): Adjust.
7758 * doc/bison.texinfo: Formatting changes.
7759
7760 2005-10-21 Akim Demaille <akim@epita.fr>
7761
7762 Finish the transition config -> build-aux.
7763 * configure.ac, Makefile.am: Use build-aux.
7764 * config/prev-version, config/announce-gen, config/Makefile.am:
7765 Move to...
7766 * build-aux/prev-version, build-aux/announce-gen,
7767 * build-aux/Makefile.am: here.
7768
7769 2005-10-14 Akim Demaille <akim@epita.fr>
7770
7771 * examples/calc++/test: Use set -x only when VERBOSE.
7772
7773 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7774
7775 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7776 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7777
7778 2005-10-13 Akim Demaille <akim@epita.fr>
7779
7780 * src/scan-skel.l: Output the base name parts of the parser and
7781 header file names.
7782 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7783 additional checks.
7784 Use this to exercise C++ outputs in subdirs.
7785 Reported by Oleg Smolsky.
7786
7787 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7788
7789 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7790 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7791 Problem reported by John P. Hartmann.
7792 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7793 already defined it.
7794
7795 2005-10-12 Akim Demaille <akim@epita.fr>
7796
7797 * src/parse-gram.y (version_check): Exit 63 to please missing
7798 (stands for "version mismatch).
7799 * tests/input.at, doc/bison.texinfo: Adjust.
7800
7801 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7802
7803 Work around portability problems with Visual Age C compiler
7804 (xlc and xlC_r) reported by John P. Hartmann.
7805 * data/location.cc (initial_column, initial_line): Remove.
7806 All uses replaced by 0 and 1.
7807 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7808 that xlc complains about.
7809 * src/scan-skel.l (skel_wrap): Likewise.
7810 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7811 as __STDC__.
7812 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7813 __STDC_VERSION__. Use it everywhere instead of looking at
7814 __STDC__ and __cplusplus.
7815
7816 2005-10-10 Akim Demaille <akim@epita.fr>
7817
7818 * examples/calc++/test: Be quiet unless VERBOSE.
7819
7820 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7821
7822 * data/c.m4 (yydestruct, yysymprint):
7823 Use YYUSE instead of casting to void.
7824 * data/glr.c (YYUSE): New macro.
7825 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7826 Use it instead of rolling our own.
7827 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7828 (YYCHK1):
7829 Use /*CONSTCOND*/ to suppress lint warnings.
7830 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7831 (YY_STACK_PRINT): Use 'false' not '0'.
7832 (YYUSE): New macro.
7833 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7834 * data/yacc.c (YYUSE): New macro.
7835 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7836 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7837 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7838
7839
7840 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7841 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7842
7843 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7844
7845 Undo the parts of the unlocked-I/O change that substituted
7846 putc or puts for printf. This might hurt performance a bit,
7847 but some people prefer the printf style.
7848 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7849 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7850 All uses replaced by YYFPRINTF and YYDPRINTF.
7851 * data/yacc.c: Likewise.
7852 * lib/bitset.c (bitset_print): Likewise.
7853 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7854 putc and puts.
7855 * lib/lbitset.c (debug_lbitset): Likewise.
7856 * src/closure.c (print_firsts, print_fderives): Likewise.
7857 * src/gram.c (grammar_dump): Likewise.
7858 * src/lalr.c (look_ahead_tokens_print): Likewise.
7859 * src/output.c (escaped_output): Likewise.
7860 (user_actions_output): Break apart two printfs.
7861 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7862 * src/reduce.c (reduce_print): Likewise.
7863 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7864 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7865
7866 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7867 Use assignments rather than casts-to-void to suppress
7868 unused-variable warnings. This pacifies 'lint'.
7869 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7870 unused-variable warnings.
7871
7872 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7873
7874 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7875
7876 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7877
7878 Use unlocked I/O for a minor performance improvement on hosts like
7879 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7880 is to use the gnlib unlocked-io module, and to prefer putc and
7881 puts to printf when either will work (since the latter doesn't
7882 come in an unlocked flavor).
7883 * bootstrap (gnulib_modules): Add unlocked-io.
7884 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7885 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7886 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7887 and similarly for puts and putc and printf.
7888 * data/yacc.c: Likewise.
7889 * lib/bitset.c (bitset_print): Likewise.
7890 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7891 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7892 to printf.
7893 * lib/lbitset.c (debug_lbitset): Likewise.
7894 * src/closure.c (print_firsts, print_fderives): Likewise.
7895 * src/gram.c (grammar_dump): Likewise.
7896 * src/lalr.c (look_ahead_tokens_print): Likewise.
7897 * src/output.c (escaped_output): Likewise.
7898 (user_actions_output): Coalesce two printfs.
7899 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7900 * src/reduce.c (reduce_print): Likewise.
7901 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7902 * src/system.h: Include unlocked-io.h rather than stdio.h.
7903
7904 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7905 this confuses xgettext.
7906
7907 2005-10-02 Akim Demaille <akim@epita.fr>
7908
7909 * bootstrap (gnulib_modules): Add strverscmp.
7910 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7911 * m4/.cvsignore: Add strverscmp.m4.
7912 * src/parse-gram.y (%require): New token, new rule.
7913 (version_check): New.
7914 * src/scan-gram.l (%require): Adjust.
7915 * tests/input.at (AT_REQUIRE): New.
7916 Use it.
7917 * doc/bison.texinfo (Require Decl): New.
7918 (Calc++ Parser): Use %require.
7919
7920 2005-10-02 Akim Demaille <akim@epita.fr>
7921
7922 * data/location.cc: New.
7923
7924 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7925 Akim Demaille <akim@epita.fr>
7926
7927 Make sure -odir/foo.cc creates dir/location.hh etc.
7928 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7929 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7930 (spec_defines_file): Now const.
7931 (dir_prefix): New.
7932 (short_base_name): Remove.
7933 * src/files.c: Adjust.
7934 (dirname.h): Include.
7935 (base_name): Don't prototype it.
7936 (finput): Remove, duplicates gram_in.
7937 (full_base_name, short_base_name): Replace by...
7938 (all_but_ext, all_but_tab_ext): these.
7939 (compute_base_names): Rename as...
7940 (compute_file_name_parts): this.
7941 Update to compute the new variables, including dir_prefix.
7942 Adjust dependencies.
7943 * src/output.c (prepare): Output them.
7944 * src/reader.c: Adjust to use gram_in, not finput.
7945 * src/scan-skel.l (@dir_prefix@): New.
7946
7947 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7948
7949 * lib/subpipe.c: New function end_of_output_subpipe() added
7950 to allow support for non-posix systems. This is a no-op function
7951 for posix systems.
7952
7953 * lib/subpipe.h: New function end_of_output_subpipe() added
7954 to allow support for non-posix systems. This is a no-op function
7955 for posix systems.
7956
7957 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7958 handle the lack of pipe/fork functionality on non-posix systems.
7959
7960 * djgpp/Makefile.maint: DJGPP specific file.
7961
7962 * djgpp/README.in: DJGPP specific file.
7963
7964 * djgpp/config.bat: DJGPP specific configuration file.
7965
7966 * djgpp/config.sed: DJGPP specific configuration file.
7967
7968 * djgpp/config.site: DJGPP specific configuration file.
7969
7970 * djgpp/config_h.sed: DJGPP specific configuration file.
7971
7972 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7973
7974 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7975
7976 2005-10-02 Akim Demaille <akim@epita.fr>
7977
7978 * data/location.cc: New, extract from...
7979 * data/lalr1.cc: here.
7980 (location.hh): Include it after the user prologue, in case the
7981 filename type is defined by the user.
7982 Forward declation location and position before the pre-prologue.
7983 (yyresult_): Rename as...
7984 (yyresult): this, it's a local variable, not an attribute.
7985 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7986
7987 2005-10-01 Akim Demaille <akim@epita.fr>
7988
7989 * examples/extexi: Restore the #line generation.
7990
7991 2005-09-30 Akim Demaille <akim@epita.fr>,
7992 Alexandre Duret-Lutz <adl@gnu.org>
7993
7994 Move the token type and YYSTYPE in the parser class.
7995 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7996 (parser::token): New, from the moved free definition of tokens.
7997 (parser::semantic_value): Now a full definition instead of an
7998 indirection to YYSTYPE.
7999 (b4_post_prologue): No longer included in the header file, but
8000 in the implementation file.
8001 * doc/bison.texi (C+ Language Interface): Update.
8002 * src/parse-gram.y: Support unary %define.
8003 * tests/actions.at: Define global_tokens_and_yystype for backward
8004 compatibility until we update the tests.
8005 * tests/calc.at: Idem.
8006 (first_line, first_column, last_line, last_column): Define for lalr1.cc
8007 to simplify the code.
8008
8009 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
8010
8011 Port to SunOS 4.1.4, which lacks strtoul and strerror.
8012 Ah, the good old days! Problem reported by Peter Klein.
8013 * bootstrap (gnulib_modules): Add strerror, strtoul.
8014 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
8015 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
8016
8017 2005-09-29 Akim Demaille <akim@epita.fr>
8018
8019 * data/c.m4 (b4_error_verbose_if): New.
8020 * data/lalr1.cc: Use it.
8021 (YYERROR_VERBOSE_IF): Remove.
8022 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
8023 parser members, replaced by...
8024 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
8025 local variables.
8026 (yysyntax_error_): Takes the state number as argument.
8027 (yyreduce_print_): Use the argument yyrule, not the former
8028 attribute yyn_.
8029
8030 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
8031
8032 * bootstrap (gnulib_modules): Add verify.
8033 * lib/.cvsignore: Add verify.h.
8034 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
8035 * src/system.h (verify): Remove.
8036 Include verify.h instead.
8037 * src/tables.c (tables_generate): Use new API for 'verify'.
8038
8039 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
8040
8041 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
8042 local variables whose names begin with 'yy'.
8043 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
8044 Trivial changes from Joel E. Denny.
8045
8046 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
8047 it itself.
8048 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
8049 don't use alloca any more.
8050
8051 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
8052 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
8053 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
8054 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
8055 to match yacc.c, to test more hosts.
8056
8057 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
8058
8059 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
8060 doesn't affect behavior.
8061 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
8062 Solaris, AIX, MSC.
8063 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
8064 This works a bit better with glibc, if user code has already included
8065 stdlib.h.
8066 * doc/bison.texinfo (Bison Parser): Document that users can't
8067 arbitrarily use malloc and free for other purposes. Document
8068 that <alloca.h> and <malloc.h> might be included.
8069 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
8070 user must declare alloca.
8071
8072 * HACKING (release): Forwarn the Translation Project about
8073 stable releses.
8074
8075 2005-09-20 Akim Demaille <akim@epita.fr>
8076
8077 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
8078
8079 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
8080
8081 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
8082 (YYSTACK_ALLOC_MAXIMUM): Use it.
8083 (yysyntax_error): New function.
8084 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
8085 multiple syntax errors are reported, and alloca is being used.
8086 Instead, reallocate buffers twice as big each time, so that
8087 we waste at most half the allocated memory. Start with a small
8088 (128-byte) buffer that will suffice in most cases anyway.
8089 Use yysyntax_error to do most of the work.
8090
8091 * doc/bison.texinfo (Error Reporting, Table of Symbols):
8092 yynerrs is the number of errors reported, not the number of
8093 errors encountered.
8094
8095 * tests/glr-regression.at (Duplicated user destructor for lookahead):
8096 Mark it as expected to fail.
8097 Cast result of malloc; problem reported by twlevo@xs4all.nl.
8098 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
8099 Don't start user-code symbols with "yy", to avoid name space problems.
8100
8101 2005-09-19 Akim Demaille <akim@epita.fr>
8102
8103 Remove the traits, failed experiment.
8104 It never proved useful, and anyway because of the current
8105 definition, it was not possible to have several specialization of
8106 this traits, making it useless.
8107 * data/lalr1.cc (yy:traits): Remove.
8108 Inline its definitions in the parser class.
8109
8110 2005-09-19 Akim Demaille <akim@epita.fr>
8111
8112 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
8113 least Mac OSX with a /usr/local install of gettext.
8114
8115 2005-09-19 Akim Demaille <akim@epita.fr>
8116
8117 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
8118 and yytoken for similarity with the other skeletons.
8119
8120 2005-09-19 Akim Demaille <akim@epita.fr>
8121
8122 * NEWS, configure.ac: update version number to 2.1a.
8123
8124 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
8125
8126 * NEWS: Version 2.1.
8127
8128 * NEWS: Remove notice of yytname change, since it was never in an
8129 official release.
8130 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
8131 diagnostic.
8132 * src/output.c (prepare): Likewise.
8133 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
8134 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
8135 is not defined. This is an awful hack, but it's enough for now.
8136 All callers changed.
8137 * tests/glr-regression-at (make_value): Args are const pointers now,
8138 to avoid GCC warning.
8139 (Duplicated user destructor for lookahead): New test. Currently
8140 skipped. It fails on my host but I'm not sure it'll always fail.
8141
8142 2005-09-16 Akim Demaille <akim@epita.fr>
8143
8144 * src/symtab.h (struct symbol): Declare the printer and destructor
8145 as const, to avoid accidental calls to free.
8146 (symbol_destructor_set, symbol_printer_set): Adjust.
8147 * src/symtab.c: Adjust.
8148
8149 2005-09-16 Akim Demaille <akim@epita.fr>
8150
8151 * data/c.m4 (b4_token_enums): New.
8152 (b4_token_defines): Rename as...
8153 (b4_token_enums_defines): this.
8154 (b4_token_defines): New, output only the #defines.
8155 * data/yacc.c, data/glr.c: Adjust.
8156 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
8157 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
8158 as default values.
8159
8160 2005-09-16 Akim Demaille <akim@epita.fr>
8161
8162 * data/lalr1.cc (yylex_): Remove, inline its code.
8163 (yyreport_syntax_error_): Remove, replaced by...
8164 (yysyntax_error_): this which returns a string and leaves to the
8165 caller the call to the users' error function.
8166 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
8167 Move from members of the parser object...
8168 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
8169 to local variables of the parse function.
8170
8171 2005-09-16 Akim Demaille <akim@epita.fr>
8172
8173 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
8174 since it's in Bison's name space.
8175
8176 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
8177
8178 * data/glr.c (yyresolveValue): Add default case to pacify
8179 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
8180
8181 * NEWS: Document when yyparse started to return 2.
8182 * doc/bison.texinfo (Parser Function): Document when yyparse
8183 returns 2.
8184
8185 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
8186 (b4_filename_type): Renamed back from b4_file_name_type. All uses
8187 changed.
8188 (class position): file_name -> filename (reverting). All uses changed.
8189
8190 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
8191
8192 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
8193 do anything if $@ exists. This reverts part of the 2005-07-07
8194 patch.
8195
8196 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
8197
8198 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
8199 contains obsolete information and isn't worth distributing as a
8200 separate file anyway.
8201 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
8202 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
8203 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
8204 (yyparse): Abort if user code uses longjmp to throw an unexpected
8205 value.
8206
8207 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
8208
8209 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
8210 Suggested by twlevo@xs4all.nl.
8211
8212 * data/glr.c (YYCHK1): Do not assume YYE is in range.
8213 This avoids a diagnostic from gcc -Wswitch-enum.
8214 Problem reported by twlevo@xs4all.nl.
8215
8216 * doc/bison.texinfo: Don't use "filename", as per GNU coding
8217 standards. Use "file name" or "file" or "name", depending on
8218 the context.
8219 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
8220 not to hack/foo.tab.c.
8221 (Calc++ Top Level): 2nd arg of main is not const.
8222 * data/glr.c: b4_filename -> b4_file_name.
8223 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8224 All uses changed.
8225 (class position): filename -> file_name. All uses changed.
8226 * data/yacc.c: b4_filename -> b4_file_name.
8227 * lib/bitset.h: filename -> file_name in local vars.
8228 * lib/bitset_stats.c: Likewise.
8229 * src/files.c: Likewise.
8230 * src/scan-skel.l ("@output ".*\n): Likewise.
8231 * src/files.c (file_name_split): Renamed from filename_split.
8232 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8233
8234 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8235
8236 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8237 to accommodate latest gnulib.
8238
8239 * tests/glr-regression.at (Duplicate representation of merged trees):
8240 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8241
8242 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8243 needed.
8244
8245 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8246
8247 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8248 All uses changed. Invoke user destructor after an error during a
8249 split parse (trivial change from Joel E. Denny).
8250
8251 * tests/glr-regression.at
8252 (User destructor after an error during a split parse): New test case.
8253 Problem reported by Joel E. Denny in:
8254 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8255
8256 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8257
8258 * README-cvs: Give URLs for recommended tools.
8259 Mention Gzip version problem, and bootstrapping issues.
8260 Remove troubleshooting section, as it's somewhat obsolete.
8261
8262 * bootstrap (no_cache): New var, to accommodate different wget
8263 variants. Use it instead of '-C off'. Problem reported by
8264 twlevo@xs4all.nl.
8265
8266 * data/glr.c (yydestroyStackItem): New function.
8267 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8268 debugging information. Problem reported by Joel E. Denny.
8269
8270 2005-08-25 Akim Demaille <akim@epita.fr>
8271
8272 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8273
8274 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8275
8276 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8277 Don't invoke destructor on unresolved entries.
8278 * tests/glr-regression.at
8279 (User destructor for unresolved GLR semantic value): New test case.
8280 Problem reported by Joel E. Denny in:
8281 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8282
8283 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8284
8285 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8286 Add strnlen.c.
8287 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8288 lib-prefix.m4, po.m4.
8289
8290 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8291 in yydestruct diagnostic, since it might not be an error.
8292 Problem reported by Joel Denny near end of
8293 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8294 * data/lalr1.cc (yyerturn): Likewise.
8295 * data/yacc.c (yyreturn): Likewise.
8296 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8297
8298 * src/files.c: Remove obsolete FIXME comment.
8299
8300 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8301 with the other templates, and to fix bogus run-on messages such
8302 as the one reported at the end of
8303 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8304 All callers changed to avoid the newline.
8305 (yyprocessOneStack): Output two lines rather than one, to accommodate
8306 the above change. This changes the debug output format slightly.
8307
8308 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8309 reported by Joel E. Denny in
8310 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8311 (trivial change).
8312 * tests/glr-regression.at (Duplicate representation of merged trees):
8313 New test, from Joel E. Denny in:
8314 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8315 * THANKS: Add Joel E. Denny.
8316
8317 * configure.ac (AC_INIT): Bump to 2.0c.
8318
8319 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8320
8321 * NEWS: Version 2.0b.
8322
8323 * Makefile.am (SUBDIRS): Put examples before tests, so that
8324 "make check" doesn't finish with "All 1 tests passed".
8325
8326 * tests/regression.at (Token definitions): Don't rely on
8327 AT_PARSER_CHECK for data that contains backslashes. It currently
8328 uses 'echo', and 'echo' isn't portable if its argument contains
8329 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8330 that the byte '\0xff' is not printable in the C locale; it is,
8331 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8332 not printable, so use '\0x81' to test.
8333
8334 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8335 version of GCC, since the macro is used with non-GCC compilers.
8336
8337 Fix core dump reported by Pablo De Napoli in
8338 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8339 * tests/regression.at (Invalid inputs with {}): New test.
8340 * src/parse-gram.y (token_name): Translate type before using
8341 it as an index.
8342
8343 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8344 the user's name space. All uses changed to __attribute__
8345 ((__unused__)).
8346 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8347 Add __attribute__ ((__noreturn__)).
8348
8349 * etc/clcommit: Remove. We weren't using it, and it failed
8350 "make maintainer-distcheck".
8351 * Makefile.maint: Merge from coreutils.
8352 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8353 (syntax-check-rules): Change list of rules as described below.
8354 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8355 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8356 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8357 (sc_trailing_space): New rules.
8358 (sc_xalloc_h_in_src): Remove.
8359 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8360 (sc_space_tab, sc_error_exit_success, sc_changelog):
8361 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8362 (makefile-check, po-check, author_mark_check):
8363 (makefile_path_separator_check, copyright-check):
8364 Use grep -n, to make it easier to find violations.
8365 Use CVS_LIST and CVS_LIST_EXCEPT.
8366 (header_regexp, h_re): Remove.
8367 (dd_c): New macro.
8368 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8369 (my-distcheck): Use more-modern GCC flags.
8370 (signatures, %.asc): Remove.
8371 (rel-files, announcement): Remove signatures.
8372 Restore old updating code, even though we don't use it, so
8373 that we're the same as coreutils.
8374 (alpha, beta, major): Depend on news-date-check.
8375 Make the upload commands.
8376
8377 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8378 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8379 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8380 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8381 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8382 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8383 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8384 * tests/sets.at: Likewise.
8385
8386 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8387 we comment out the Autoconf version number.
8388 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8389 it's error-prone and "make maintainer-distcheck" rejects it.
8390
8391 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8392 Indent calls to "error" to pacify "make maintainer-distcheck",
8393 when the calls are not intended to be translated.
8394 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8395
8396 * src/Makefile.am (DEFS): Use +=, to pacify
8397 "make maintainer-distcheck".
8398 (bison_SOURCES): Add scan-skel.h.
8399 (sc_tight_scope): New rule, from coreutils.
8400
8401 * src/files.c (src_extension, header_extension):
8402 Now static, not extern.
8403 * src/getargs.c (short_options): Likewise.
8404 * src/muscle_tab.c (muscle_table): Likewise.
8405 * src/parse-gram.y (current_class, current_type, current_prec):
8406 Likewise.
8407 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8408 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8409 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8410 void, to avoid warning when NLS is disabled.
8411 * src/output.c: Include scan-skel.h.
8412 (scan_skel): Remove decl, since scan-skel.h does this.
8413 (output_skeleton):
8414 Indent calls to "error" to pacify "make maintainer-distcheck".
8415 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8416 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8417 "make maintainer-distcheck".
8418 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8419 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8420 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8421 (skel_lex_destroy, scan_skel): Move these decls to...
8422 * src/scan-skel.h: New file.
8423 * src/uniqstr.c (uniqstr_assert):
8424 Indent calls to "error" to pacify "make maintainer-distcheck".
8425
8426 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8427 not @VAR@.
8428
8429 * tests/torture.at: Revamp to avoid misuse of atoi that
8430 "make maintainer-distcheck" complained about.
8431
8432 * examples/extexi (message): Don't print a message more than once,
8433 and omit line-number decoration that makes Emacs compile think
8434 that informative messages are worth worrying about.
8435
8436 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8437
8438 * configure.ac: Update version number.
8439
8440 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8441 accidentally.
8442 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8443 autogenerated by the maintainer.
8444 * examples/calc++/.cvsignore: Add *.yy.
8445
8446 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8447 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8448 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8449
8450 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8451
8452 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8453 from maintainer-distcheck about casting the argument of 'free'.
8454
8455 * NEWS: Mention recent yytname changes.
8456 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8457
8458 * bootstrap: For translations that have not yet been upgraded to
8459 the new runtime-po domain, prime the pump by extracting the
8460 relevant strings from the obsolete translations. This code can be
8461 removed once the bison-runtime domain has been translated by each
8462 team.
8463
8464 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8465 now that token names are already quoted.
8466
8467 Fix problem reported by Anthony Heading.
8468 * data/glr.c (YYTOKEN_TABLE): New macro.
8469 (yytname): Define if YYTOKEN_TABLE.
8470 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8471 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8472 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8473 * src/output.c (prepare_symbols): Output token_table_flag.
8474
8475 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8476
8477 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8478 again if the first call fails.
8479
8480 * data/glr.c (yytnamerr): New function.
8481 (yyreportSyntaxError): Use it to dequote most string literals.
8482 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8483 with other skeletons. All uses changed.
8484 (yytnameerr_): New function.
8485 (yyreport_syntax_error): Use it to dequote most string literals.
8486 * data/yacc.c (yytnamerr): New function.
8487 (yyerrlab): Use it to decode most string literals.
8488 * doc/bison.texinfo (Decl Summary, Calling Convention):
8489 Clarify quoting convention of yytname.
8490 * src/output.c (prepare_symbols): Quote all names. This undoes
8491 the 2005-04-17 change, which is now accomplished (mostly) via
8492 changes in the parsers as described above.
8493 * tests/regression.at (Token definitions, Web2c Actions):
8494 Undo most 2005-04-17 change here, too.
8495
8496 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8497
8498 Fix more problems reported by twlevo@xs4all.nl.
8499 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8500 remove trailing spaces. This loses the exit status of ./types,
8501 and isn't needed since ./types shouldn't be emitting trailing
8502 spaces.
8503 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8504 as the stack isn't valid in that case.
8505
8506 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8507 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8508 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8509 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8510 is used.
8511 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8512 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8513 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8514 Likewise.
8515
8516 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8517 overly-picky compilers that reject 'char *foo = "bar";'.
8518
8519 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8520 to FILE * parameter, not to stderr. This fixes a typo introduced
8521 in the 2005-07-12 change.
8522
8523 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8524 warnings from GCC 4.
8525
8526 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8527 (yyglrShiftDefer, yysplitStack):
8528 Remove unused parameters b4_pure_formals. All uses changed.
8529 (yyglrShift): Remove unused parameters b4_user_formals.
8530 All uses changed.
8531 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8532
8533 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8534
8535 Destructor cleanups and regularization among the three skeletons.
8536 * NEWS: Document the behavior changes.
8537 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8538 stack before failing, as the cleanup code will do it for us now.
8539 * data/lalr1.cc (yyerrlab): Likewise.
8540 * data/glr.c (yyparse): Pop everything off the stack before
8541 freeing it, so that destructors get called properly.
8542 * data/lalr1.cc (yyreturn): Likewise.
8543 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8544 This is more consistent.
8545 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8546 why destructors might be called. 1.875 -> 2.1.
8547 (Destructor Decl, Decl Summary, Table of Symbols):
8548 Some English-language cleanups for %destructor.
8549 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8550 Add output line for destructor of start symbol.
8551 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8552 because of that same extra output line.
8553
8554 * NEWS: Document minor wording changes in diagnostics of
8555 Bison-generated parsers.
8556 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8557 Remove unused formals. All uses changed.
8558 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8559 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8560 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8561 Rename yyoverflowab to yyexhaustedlab.
8562 When memory exhaustion occurs during syntax-error reporting,
8563 report it separately rather than in a single diagnostic; this
8564 eases translation.
8565 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8566 (Memory Exhausted): Renamed from Parser Stack Overflow.
8567 Revamp wording slightly to prefer "memory exhaustion".
8568 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8569
8570 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8571
8572 Add i18n support to the GLR skeleton. Partially fix the C++
8573 skeleton; a C++ expert needs to finish this. Remove debugging
8574 msgids; there's little point to having them translated, since they
8575 can be understood only by someone who can read the
8576 (English-language) source code.
8577
8578 Generate runtime-po/bison-runtime.pot automatically, so that we
8579 don't have to worry about garbage getting in that file. We'll
8580 make sure after the next official release that old msgids don't
8581 get lost. See
8582 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8583
8584 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8585 Now auto-generated.
8586 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8587 Fix typos in explanations of the runtime file.
8588 * bootstrap: Change gettext keyword from YYI18N to YY_.
8589 Use standard Makefile.in.in in runtime-po, since we'll arrange
8590 for backward-compatible bison-runtime.po files in a different way.
8591 * data/glr.c (YY_): New macro, from yacc.c.
8592 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8593 Translate messages intended for users.
8594 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8595 the wording in the other skeletons. We don't know that the memory
8596 is virtual.
8597 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8598 Use same method that yacc.c uses.
8599 Don't translate debugging messages.
8600 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8601 it doesn't work (yet), and requires C++ expertise to fix.
8602 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8603 Move defn to a more logical place, to be consistent with other
8604 skeletons.
8605 Don't translate debugging messages.
8606 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8607 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8608 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8609 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8610
8611 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8612 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8613 void, not int.
8614 * tests/glr-regression.at (Badly Collapsed GLR States):
8615 Likewise.
8616 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8617 yylex should return 0 at EOF rather than aborting.
8618
8619 Improve tests for stack overflow in GLR parser.
8620 Problem reported by twlevo@xs4all.nl.
8621 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8622 All uses removed.
8623 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8624 can handle the problem.
8625 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8626 (yyparse): New local variable yyresult to record the result.
8627 Use result of setjmp to set it, rather than storing itinto
8628 struct.
8629 (yyDone): Remove label.
8630 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8631 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8632 if YYABORT is used).
8633 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8634 yyparse status; put status > 1 into diagnostic.
8635 Check that status==2 works.
8636 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8637 Use exit status 3 for failure to open (which shouldn't happen).
8638
8639 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8640
8641 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8642 1 on syntax error; just let yyparse do its thing.
8643 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8644 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8645 (Exploding the Stack Size with Alloca):
8646 (Exploding the Stack Size with Malloc):
8647 Expect exit status 2, not 1, since the parser is supposed to blow
8648 its stack. Problem reported by twlevo@xs4all.nl.
8649
8650 * data/glr.c (yyparse): Don't assume that the initial calls
8651 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8652 Print a stack-overflow message and fail instead.
8653 Initialize the line-number information before creating the stack,
8654 so that the stack-overflow message can report line zero safely.
8655
8656 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8657
8658 Fix problems reported by twlevo@xs4all.nl.
8659 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8660 (yyuserMerge): Provide a default case if b4_mergers is empty.
8661 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8662 * tests/glr-regression.at
8663 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8664 Add casts to pacify C++ compilers.
8665 * tests/glr-regression.at (Improper merging of GLR delayed action
8666 sets): Declare yylex before using it.
8667 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8668 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8669 test for valgrind; valgrind is independent of g++.
8670 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8671 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8672 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8673 Use a destructor, so that we can expand the stack. Change
8674 YYSTYPE to char * so that we can free it. Cast result of malloc.
8675
8676 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8677
8678 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8679 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8680
8681 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8682
8683 * PACKAGING: New file, suggested by Bruno Haible and taken from
8684 similar wording in gettext's PACKAGING file.
8685 * NEWS: Mention PACKAGING.
8686 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8687
8688 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8689
8690 * NEWS: Document recent i18n improvements.
8691 * bootstrap: Get runtime translations into runtime-po.
8692 Create runtime-po files automatically, if possible.
8693 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8694 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8695 does not infringe on the user's name space.
8696 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8697 * doc/bison.texinfo (Internationalization): Revamp the English
8698 and Texinfo syntax a bit, to try to make it clearer.
8699 (Bison Options, Option Cross Key): Mention --print-localedir.
8700 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8701 YYENABLE_NLS. Quote a bit more.
8702 * runtime-po/.cvsignore: New file.
8703 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8704 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8705 * runtime-po/quot.sed: Likewise.
8706 * runtime-po/boldquot.sed: Likewise.
8707 * runtime-po/en@quot.header: Likewise.
8708 * runtime-po/en@boldquot.header: Likewise.
8709 * runtime-po/insert-header.sin: Likewise.
8710 * runtime-po/remove-potcdate.sin: Likewise.
8711 * runtime-po/Makevars: Likewise.
8712 * runtime-po/LINGUAS: Likewise.
8713 * runtime-po/de.po: Likewise; we will rely on the translation project
8714 to maintain this, so "bootstrap" should get it.
8715 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8716 its value.
8717 * src/main.c (main): Bind the bison-runtime domain, too.
8718
8719 2005-07-12 Bruno Haible <bruno@clisp.org>
8720
8721 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8722 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8723 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8724 * runtime-po: New directory.
8725 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8726 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8727 * runtime-po/Rules-quot: New file, copied from po/.
8728 * runtime-po/quot.sed: Likewise.
8729 * runtime-po/boldquot.sed: Likewise.
8730 * runtime-po/en@quot.header: Likewise.
8731 * runtime-po/en@boldquot.header: Likewise.
8732 * runtime-po/insert-header.sin: Likewise.
8733 * runtime-po/remove-potcdate.sin: Likewise.
8734 * runtime-po/Makevars: New file.
8735 * runtime-po/POTFILES.in: New file.
8736 * runtime-po/LINGUAS: New file.
8737 * runtime-po/bison-runtime.pot: New file.
8738 * runtime-po/de.po: New file.
8739 * m4/bison.m4: New file.
8740 * Makefile.am (SUBDIRS): Add runtime-po.
8741 (aclocaldir, aclocal_DATA): New variables.
8742 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8743 Define aclocaldir.
8744 * src/getargs.c (usage): Document --print-localedir option.
8745 (PRINT_LOCALEDIR_OPTION): New enum item.
8746 (long_options): Add --print-localedir option.
8747 (getargs): Handle --print-localedir option.
8748 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8749 (Internationalization): New section.
8750
8751 2005-07-12 Akim Demaille <akim@epita.fr>
8752
8753 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8754 for consistency with the rest of the code.
8755 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8756 Add separators.
8757
8758 2005-07-12 Akim Demaille <akim@epita.fr>
8759
8760 * src/parse-gram.y: Use %printer instead of YYPRINT.
8761
8762 2005-07-12 Akim Demaille <akim@epita.fr>
8763
8764 * src/symtab.h, src/symtab.c (symbol_print): New.
8765 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8766 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8767
8768 2005-07-12 Akim Demaille <akim@epita.fr>
8769
8770 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8771 b4_at_dollar and b4_dollar_dollar.
8772
8773 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8774
8775 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8776 and Pennello's paper.
8777
8778 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8779
8780 * data/yacc.c (yyparse): Undo previous patch. Instead,
8781 set yylsp[0] and yyvsp[0] only if the initial action
8782 sets yylloc and yylval, respectively.
8783
8784 * data/yacc.c (yyparse): In the initial action, set
8785 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8786 This avoids the use of undefined variables if the initial
8787 action does not set yylloc and/or yylval.
8788
8789 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8790
8791 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8792 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8793 Remove from CVS. These files are automatically generated.
8794 * examples/extexi: Clarify that this file is now part of Bison,
8795 not GNU M4, and that it works with any POSIX-compatible Awk.
8796 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8797 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8798 so that we also get calc++-parser.yy. Geneate it.
8799 Use $(AWK), not gawk, since any conforming Awk will do.
8800 Put comment before action, since older 'make' can't handle comment
8801 in action.
8802 $(BUILT_SOURCES): List all built sources, not just some of them.
8803 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8804 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8805 $($(calc_sources_generated)): Remove unnecessary test for existence
8806 of target. (This had a shell syntax error anyway; a stray "x".)
8807 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8808 calc++-parser.yy.
8809 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8810
8811 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8812 implied by the other modules.
8813
8814 2005-07-06 Akim Demaille <akim@epita.fr>
8815
8816 Bind examples/calc++ to the package.
8817 * examples/calc++/Makefile: Remove, replaced by...
8818 * examples/calc++/Makefile.am: ... this new file.
8819 * examples/calc++/test: Remove input.
8820 * examples/calc++/compile: Remove.
8821 * examples/Makefile.am: New.
8822 * configure.ac, Makefile.am: Adjust.
8823 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8824
8825 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8826
8827 * data/glr.c (yyFail): Drastically simplify; since the format argument
8828 never had any % directives, we can simply pass it to yyerror.
8829 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8830 be modified later, as that is the usual style in glr.c.
8831 Problems reported by Paul Hilfinger.
8832
8833 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8834 and size overflow errors.
8835 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8836 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8837 (YYSIZEMAX): New macro.
8838 (yystpcpy): New function, taken from yacc.c.
8839 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8840 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8841 so that we don't have to maintain their signatures.
8842 (yyFail): Check for buffer overflow, by using vsnprintf rather
8843 than vsprintf. Allocate a bigger buffer if possible.
8844 Report an error if buffer allocation fails.
8845 (yyStackOverflow): New function.
8846 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8847 the initialization was successful. It might fail if storage was
8848 exhausted.
8849 (yyexpandGLRStack): Add more checks for storage allocation failure.
8850 Use yyStackOverflow to report failures.
8851 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8852 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8853 Don't assume stack number fits in int.
8854 (yysplitStack): Check for storage allocation failure.
8855 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8856 can print diagnostics on storage allocation failure. All callers
8857 changed.
8858 (yyresolveValue): Use yybool for boolean.
8859 (yyreportSyntaxError): Check for size-calculation overflow.
8860 This code is taken from yacc.c.
8861 (yyparse): Check for storage allocation errors when allocating
8862 the initial stack.
8863
8864 2005-07-05 Akim Demaille <akim@epita.fr>
8865
8866 Extract calc++ from the documentation.
8867 * doc/bison.texinfo (Calc++): Add the extraction marks.
8868 * examples/extexi: New, from the aborted GNU Programming 2E.
8869 Separate the different paragraph of a file with empty lines.
8870 * examples/Makefile: Use it to extract the whole calc++ example.
8871
8872 2005-06-24 Akim Demaille <akim@epita.fr>
8873
8874 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8875 class typedefs.
8876
8877 2005-06-22 Akim Demaille <akim@epita.fr>
8878
8879 * doc/bison.texinfo (C++ Language Interface): First stab.
8880 (C++ Parsers): Remove.
8881
8882 2005-06-22 Akim Demaille <akim@epita.fr>
8883
8884 * data/lalr1.cc (yylex_): Honor %lex-param.
8885
8886 2005-06-22 Akim Demaille <akim@epita.fr>
8887
8888 Start a set of simple examples.
8889 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8890 * examples/calc++/calc++-driver.hh,
8891 * examples/calc++/calc++-parser.yy,
8892 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8893 * examples/calc++/compile, examples/calc++/test: New.
8894
8895 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8896
8897 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8898 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8899 which stems from the 2005-05-27 patch.
8900
8901 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8902
8903 * data/glr.c: Modify treatment of unused parameters to permit use
8904 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8905
8906 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8907
8908 Fix infringement on user name space reported by Janos Zoltan Szabo.
8909 * data/yacc.c (yyparse): strlen -> yystrlen.
8910
8911 2005-05-30 Akim Demaille <akim@epita.fr>
8912
8913 * data/lalr1.cc (_): New.
8914 Translate the various messages.
8915
8916 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8917
8918 Fix infringement on user name space reported by Bruno Haible.
8919 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8920 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8921 the user's name space.
8922 (alloca): Include <stdlib.h> to get it, if it's not built in.
8923 (YYMALLOC, YYFREE): Define only if needed.
8924 (malloc, free): Declare, but only if needed, as this infringes on
8925 the user name space.
8926
8927 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8928
8929 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8930 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8931 with %d format.
8932 * lib/ebitset.c (min, max): Undef before defining.
8933 * lib/vbitset.c (min, max): Likewise.
8934 * lib/subpipe.c (create_subpipe): Save local variables in case
8935 vfork clobbers them.
8936
8937 2005-05-24 Bruno Haible <bruno@clisp.org>
8938
8939 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8940 error message syntax used by gcc-4.0.
8941
8942 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8943
8944 * README: Mention m4 1.4.3. Remove obsolete advice about
8945 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8946
8947 * bootstrap: Remove workaround for problem I encountered with
8948 gettext 0.14.1; it seems to be fixed now.
8949
8950 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8951
8952 * NEWS: Version 2.0a.
8953
8954 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8955 the previous change.
8956
8957 Various maintainer cleanups.
8958 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8959 conftest*, for benefit of CVS commands run at the same time as
8960 "configure". Add build-aux, since "bootstrap" now creates it and
8961 its subfiles.
8962 * Makefile.cfg (move_if_change): Remove.
8963 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8964 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8965 (po_repo, do-po-update, po-update, wget_files, get-targets):
8966 (config.guess-url_prefix, config.sub-url_prefix):
8967 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8968 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8969 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8970 Remove.
8971 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8972 this is now the recommended name.
8973 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8974 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8975 ylwrap. These files now go into build-aux.
8976 * config/move-if-change: Remove.
8977 * config/prev-version.txt: Bump from 1.75 to 2.0.
8978
8979 * bootstrap: Add stdio-safer, unistd-safer modules.
8980 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8981 we don't need it).
8982 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8983 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8984 * lib/subpipe.c: Include "unistd-safer.h".
8985 (create_subpipe): Make sure all the newly-created
8986 file descriptors are > 2, so that diagnostics don't
8987 get sent down them (which might cause Bison to hang, in theory).
8988 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8989 * src/files.c (xfopen): Use fopen_safer, not fopen.
8990
8991 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8992 yesterday's yacc.c fix.
8993
8994 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8995
8996 * data/glr.c, data/lalr1.cc: Update copyright date.
8997
8998 Fix a destructor bug reported by Wolfgang Spraul in
8999 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
9000 * data/yacc.c (yyabortlab): Don't call destructor, and
9001 don't set yychar to EMPTY.
9002 (yyoverflowlab): Don't call destructor.
9003 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
9004 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
9005 since we no longer output the message "discarding lookahead token
9006 end of input ()".
9007
9008 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9009
9010 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
9011 fix a small glitch in debugging output.
9012 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
9013 after YY_SYMBOL_PRINT where needed.
9014
9015 (struct yyGLRState): Add some comments.
9016 (struct yySemanticOption): Add some comments.
9017 (union yyGLRStackItem): Add comment.
9018
9019 (yymergeOptionSets): Correct this to properly perform the union,
9020 avoiding infinite reported by Michael Rosien.
9021 Update comment.
9022
9023 * tests/glr-regression.at: Add test for GLR merging error reported
9024 by M. Rosien.
9025
9026 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
9027
9028 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
9029 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
9030 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
9031 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
9032 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
9033 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
9034 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
9035 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
9036 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
9037 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
9038 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
9039 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
9040 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
9041 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
9042 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
9043 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
9044 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
9045 src/derives.h, src/files.c, src/files.h, src/getargs.c,
9046 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
9047 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
9048 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
9049 src/output.h, src/parse-gram.c, src/parse-gram.h,
9050 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
9051 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
9052 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
9053 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
9054 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
9055 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
9056 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
9057 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
9058 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
9059 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
9060 tests/reduce.at, tests/regression.at, tests/sets.at,
9061 tests/synclines.at, tests/testsuite.at, tests/torture.at:
9062 Update FSF postal mail address.
9063
9064 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
9065
9066 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
9067 Problem reported by Ralf Menzel.
9068
9069 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
9070
9071 * tests/actions.at: Test that stack overflow invokes destructors.
9072 From Marcus Holland-Moritz.
9073 * data/yacc.c (yyerrlab): Move the code that destroys the stack
9074 from here....
9075 (yyreturn): to here. That way, destructors are called properly
9076 even if the stack overflows, or the user calls YYACCEPT or
9077 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
9078 (yyoverflowlab): Destroy the lookahead.
9079
9080 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
9081
9082 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
9083
9084 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
9085
9086 * NEWS: Bison-generated C parsers no longer quote literal strings
9087 associated with tokens.
9088 * src/output.c (prepare_symbols): Don't escape strings,
9089 since users don't want to see C escapes.
9090 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
9091 in diagnostics.
9092 * tests/input.at (Torturing the Scanner): Likewise.
9093 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
9094
9095 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
9096
9097 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
9098 the data size is known to be too small and we can't increase it.
9099 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
9100
9101 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
9102
9103 * src/parse-gram.y: Include quotearg.h.
9104 (string_as_id): Quote $1 before using it as a key, since the
9105 lexer no longer quotes it for us.
9106 (string_content): Don't strip quotes, since lexer no longer
9107 quotes it for us.
9108 * src/scan-gram.l: Include quotearg.h.
9109 ("\""): Omit quote.
9110 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
9111 a key, since the rest of the lexer doesn't quote it.
9112 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
9113 * tests/regression.at (Token definitions): Check for backslashes
9114 in token strings.
9115
9116 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
9117 (YYSIZE_T): Define to unsigned long int when using an older compiler.
9118 (yyparse): Revamp code to generate long syntax error message, to
9119 make it easier to translate, and to avoid problems with arithmetic
9120 overflow. Change "virtual memory" to "memory" in diagnostic, since
9121 we don't know whether the memory is virtual.
9122
9123 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
9124
9125 * NEWS: Bison-generated C parsers now use the _ macro to
9126 translate strings.
9127 * data/yacc.c (_) [!defined _]: New macro.
9128 All English strings wrapped inside this macro.
9129 * doc/bison.texinfo (Bison Parser): Document _.
9130 * po/POTFILES.in: Include src/parse-gram.c, since it now
9131 includes translateable strings that parse-gram.y doesn't.
9132
9133 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
9134
9135 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
9136 reverting the 2004-10-11 change to this function.
9137 (symbol_check_alias_consistency): Don't call symbol_type_set
9138 if the type name is already correct.
9139 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
9140
9141 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
9142
9143 * tests/regression.at (Token definitions): Don't use a token named
9144 c, as that generates a "#define c ..." that runs afoul of buggy
9145 stdlib.h that uses the identifier c as a member of struct
9146 drand48_data. Problem reported by Horst Wente.
9147
9148 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
9149
9150 * bootstrap: Change translation URL from
9151 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
9152 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
9153 redirection glitches. Problem reported by twlevo@xs4all.nl.
9154
9155 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
9156
9157 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
9158 after operands; POSIX says this isn't portable for the c99 command.
9159
9160 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
9161
9162 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
9163 immediately if a data overrun has occurred; this may help us track
9164 down what may be a spurious failure on MacOS.
9165
9166 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
9167
9168 Respond to problems reported by twlevo@xs4all.nl.
9169
9170 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
9171
9172 * src/vcg.h: Comment fix.
9173 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
9174 (G_CMAX): Change to -1 instead of INT_MAX.
9175
9176 * data/yacc.c (yyparse): Omit spaces before #line.
9177
9178 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
9179
9180 * src/tables.c (state_number_to_vector_number): Put it inside an
9181 "#if 0", since it's not currently used. Problem reported by
9182 Roland McGrath.
9183
9184 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
9185
9186 * src/output.c (escaped_output): Renamed from
9187 escaped_file_name_output, since we now use it for symbol tags as
9188 well. All uses changed.
9189 (symbol_destructors_output, symbol_printers_output):
9190 Escape symbol tags too.
9191 Problem reported by Matyas Forstner in
9192 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
9193
9194 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
9195 not needed.
9196 * src/output.c (user_actions_output, token_definitions_output,
9197 symbol_destructors_output, symbol_printers_output): Likewise.
9198 * src/reader.c (prologue_augment): Likewise.
9199 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
9200
9201 * src/vcg.c (output_edge): Don't quote linestyle arg.
9202 Problem reported by twlevo@xs4all.nl.
9203
9204 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
9205
9206 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
9207 example, reported by Derek M Jones. Also, make the example even
9208 more outrageous, to better illustrate how bad the problem is.
9209
9210 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
9211
9212 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
9213 putsym. Typo reported by Sebastian Piping.
9214
9215 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
9216
9217 * doc/bison.texinfo (Language and Grammar): some -> same
9218 (Epilogue): int he -> in the
9219 Typos reported by Sebastian Piping via Justin Pence.
9220
9221 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9222
9223 * tests/glr-regression.at (Improper handling of embedded actions
9224 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9225 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9226 with dollar signs in test names.
9227 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9228 for a similar reason.
9229
9230 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9231
9232 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9233 wants to redefine G_VIEW.
9234
9235 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9236
9237 * src/vcg.c (get_view_str): Remove case for normal_view.
9238 Problem reported by twlevo@xs4all.nl.
9239
9240 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9241
9242 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9243 Problem reported by twlevo@xs4all.nl.
9244
9245 * doc/bison.texinfo: Change @dircategory from "GNU programming
9246 tools" to "Software development". Requested by Richard Stallman
9247 via Karl Berry.
9248
9249 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9250
9251 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9252 Problem reported by twlevo@xs4all.nl.
9253
9254 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9255
9256 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9257 keyword; it's not needed with modern compilers, and it doesn't
9258 affect correctness with older compilers. Suggested by
9259 twlevo@xs4all.nl.
9260
9261 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9262
9263 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9264 gcc -Wswitch-default.
9265 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9266 * data/yacc.c (yyparse): Likewise.
9267
9268 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9269
9270 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9271 already. Let config.h define any nonstandard values.
9272
9273 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9274
9275 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9276 for the benefit of slower hosts. Problem reported by
9277 Nelson H. F. Beebe.
9278
9279 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9280
9281 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9282 being defined and not used.
9283 * data/lalr1.cc (yyparse): Likewise.
9284 Use "if (false)" rather than "if (0)".
9285
9286 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9287
9288 * TODO: Mention that we should allow NUL bytes in tokens.
9289
9290 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9291
9292 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9293 Problem reported by Hans Aberg.
9294
9295 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9296
9297 * src/getargs.c (version): Happy new year; update overall
9298 program copyright date from 2004 to 2005.
9299
9300 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9301 Problem reported by Hans Aberg.
9302 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9303 (Output file names.): Add a test for the case when standard output
9304 is closed.
9305
9306 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9307
9308 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9309 to fix an oversight in the Bison 2.0 manual.
9310
9311 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9312
9313 * NEWS: Version 2.0. Reformat the existing news items since
9314 1.875, so that related items are grouped together.
9315 * configure.ac (AC_INIT): Bump version to 2.0.
9316 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9317
9318 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9319 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9320 otherwise, we're not testing alloca. Unfortunately there's no
9321 simple way to consult HAVE_ALLOCA here.
9322
9323 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9324 for yymsg, too.
9325
9326 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9327 hand. This avoids a warning about comparing int to size_t when
9328 GCC warnings are enabled.
9329
9330 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9331
9332 * NEWS: Bison-generated parsers no longer default to using the
9333 alloca function (when available) to extend the parser stack, due
9334 to widespread problems in unchecked stack-overflow detection.
9335 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9336 responsibility to set it to a positive value. This lets the user
9337 specify a value that is not a preprocessor constant.
9338 * data/yacc.c (YYMAXDEPTH): Likewise.
9339 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9340 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9341 to be a compile-time constant. However, explain the constraints on it.
9342 Also, explain the constraints on YYINITDEPTH.
9343 (Table of Symbols): Explain that alloca is no longer the default.
9344 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9345 to 1.
9346
9347 * doc/bison.texinfo (Location Default Action): Mention that n must
9348 be zero when k is zero. Suggested by Frank Heckenbach.
9349
9350 2004-12-22 Akim Demaille <akim@epita.fr>
9351
9352 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9353 (parser::state_type, parser::semantic_type, parser::location_type):
9354 Private, not public.
9355 (parser::parse): Return ints, not bool.
9356 Returning a bool introduces a problem: 0 corresponds to false, and
9357 it seems weird to return false on success. Returning true changes
9358 the conventions for yyparse.
9359 Alternatively we could return void and send an exception.
9360 There is no clear consensus (yet?).
9361 (state_stack, semantic_stack, location_stack): Rename as...
9362 (state_stack_type, semantic_stack_type, location_stack_type): these.
9363 Private, not public.
9364 * tests/c++.at: New.
9365 * tests/testsuite.at, tests/Makefile.am: Adjust.
9366
9367 2004-12-21 Akim Demaille <akim@epita.fr>
9368
9369 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9370
9371 2004-12-21 Akim Demaille <akim@epita.fr>
9372
9373 Don't impose std::string for filenames.
9374
9375 * data/lalr1.cc (b4_filename_type): New.
9376 (position::filename): Use it.
9377 (parser.hh): Move the inclusion of stack.hh and location.hh below
9378 the user code, so that needed headers for the filename type can be
9379 included first.
9380 Forward declare them before the user code.
9381 * tests/Makefile.am (check-local, installcheck-local): Pass
9382 TESTSUITEFLAGS to the TESTSUITE.
9383
9384 2004-12-20 Akim Demaille <akim@epita.fr>
9385
9386 Use more STL like names: my_class instead of MyClass.
9387
9388 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9389 (SemanticStack, SemanticType, StateStack, StateType)
9390 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9391 (Parser::value): Rename as...
9392 (location_stack, location_type, rhs_number_type, semantic_stack)
9393 (semantic_type, state_stack, state_type, token_number_type, stack)
9394 (slice, traits, parser::yylloc, parser::yylval): these.
9395
9396 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9397
9398 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9399
9400 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9401 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9402
9403 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9404
9405 Remove uses of 'short int' and 'unsigned short int'. This raises
9406 some arbitrary limits. It uses more memory but nowadays that's
9407 not much of an issue.
9408
9409 This change does not affect the generated parsers; that's a different
9410 task, as some users will want to conserve memory there.
9411
9412 Ideally we should use size_t to represent all object counts, and
9413 something like ptrdiff_t to represent signed differences of object
9414 counts; but that will require more code-cleanup than I have the
9415 time to do right now.
9416
9417 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9418 Use size_t, not int or short int, to count objects.
9419 * src/closure.c (nritemset, closure): Likewise.
9420 * src/closure.h (nritemset, closure): Likewise.
9421 * src/nullable.c (nullable_compute): Likewise.
9422 * src/print.c (print_core): Likewise.
9423 * src/print_graph.c (print_core): Likewise.
9424 * src/state.c (state_compare, state_hash): Likewise.
9425 * src/state.h (struct state): Likewise.
9426 * src/tables.c (default_goto, goto_actions): Likewise.
9427
9428 * src/gram.h (rule_number, rule): Use int, not short int.
9429 * src/output.c (prepare_rules): Likewise.
9430 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9431 errs, reductions): Likewise.
9432 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9433 Likewise.
9434 * src/tables.c (vector_number, tally, action_number,
9435 ACTION_NUMBER_MINIMUM): Likewise.
9436 * src/output.c (muscle_insert_short_int_table): Remove.
9437
9438 2004-12-17 Akim Demaille <akim@epita.fr>
9439
9440 * data/lalr1.cc: Extensive Doxygenation.
9441 (error_): Rename as...
9442 (error): this, since it is visible to the user.
9443 Adjust callers.
9444 (Parser::message): Now an automatic variable from...
9445 (Parser::yyreport_syntax_error_): here.
9446 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9447 Parser::error.
9448 * tests/input.at: Escape $.
9449
9450 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9451
9452 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9453 Parenthesize rhs to avoid obscure problems with mistakes like
9454 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9455 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9456 b4_rhs_location): Likewise.
9457 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9458 b4_rhs_location): Likewise.
9459
9460 2004-12-16 Akim Demaille <akim@epita.fr>
9461
9462 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9463 yacc.c: be sure to stay within yycheck_.
9464 * tests/actions.at: Re-enable C++ tests.
9465
9466 2004-12-16 Akim Demaille <akim@epita.fr>
9467
9468 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9469 real.
9470
9471 2004-12-16 Akim Demaille <akim@epita.fr>
9472
9473 Use #define to handle the %name-prefix.
9474
9475 * data/glr.c, data/yacc.c: Comment changes.
9476 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9477 so that one can refer to yylex in the parser file, and have it
9478 renamed, as is the case with other skeletons.
9479
9480 2004-12-16 Akim Demaille <akim@epita.fr>
9481
9482 Move lalr1.cc internals into yy*.
9483
9484 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9485 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9486 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9487 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9488 (empty_, final_, terror_, errcode_, ntokens_)
9489 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9490 (looka_, ilooka_, error_range_, nerrs_):
9491 Rename as...
9492 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9493 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9494 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9495 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9496 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9497 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9498 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9499 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9500 these.
9501
9502 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9503
9504 Fix some problems reported by twlevo at xs4all.
9505 * src/symtab.c (symbol_new): Report an error if the input grammar
9506 contains too many symbols. This is better than calling abort() later.
9507 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9508 (struct node, struct graph):
9509 Rename member expand to stretch. All uses changed.
9510 (struct graph): Remove member layoutalgorithm. All uses removed.
9511 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9512 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9513 All uses changed.
9514 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9515
9516 2004-12-15 Akim Demaille <akim@epita.fr>
9517
9518 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9519 Add more Doxygen comments.
9520 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9521 (report_syntax_error_, translate_): Rename as...
9522 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9523 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9524
9525 2004-12-15 Akim Demaille <akim@epita.fr>
9526
9527 * data/lalr1.cc (lex_): Rename as...
9528 (yylex_): this.
9529 Move the trace here.
9530 Take the %name-prefix into account.
9531 Reported by Alexandre Duret-Lutz.
9532
9533 2004-12-15 Akim Demaille <akim@epita.fr>
9534
9535 Simplify the C++ parser constructor.
9536
9537 * data/lalr1.cc (debug_): Rename as...
9538 (yydebug_): so that the parser's internals are always in the yy*
9539 pseudo namespace.
9540 Adjust uses.
9541 (b4_parse_param_decl): Remove the leading comma as it is now only
9542 called as unique argument list.
9543 (Parser::Parser): Remove the constructor accepting a location and
9544 an initial debugging level.
9545 Remove from the other ctor the argument for the debugging level.
9546 (debug_level_type, debug_level, set_debug_level): New.
9547
9548 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9549 constructor calls.
9550
9551 2004-12-15 Akim Demaille <akim@epita.fr>
9552
9553 Remove b4_root related material: failure experiment
9554 (which goal was to allow to derive from a class).
9555
9556 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9557 definitions and uses.
9558
9559 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9560
9561 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9562 not 2, since it's not portable to subtract 1 from the start of an
9563 array. The new item 0 is never set or used. All uses changed.
9564
9565 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9566 the default definition of YYLLOC_DEFAULT. Problem reported
9567 by Frank Heckenbach.
9568
9569 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9570
9571 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9572 the normal case and one for the error case. Just use the
9573 first one uniformly. Problem reported by Frank Heckenbach.
9574 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9575 use exactly the same macro in both places.
9576 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9577 so that the normal-case YYRHSLOC works for the error case too.
9578 All uses changed.
9579 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9580 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9581 * doc/bison.texinfo (Location Default Action): Don't claim that
9582 we have an array of locations. Use the same macro for both glr
9583 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9584 the index is 0.
9585
9586 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9587
9588 * HACKING: Update email addresses to send announcements to.
9589
9590 * configure.ac (AC_INIT): Bump version to 1.875f.
9591
9592 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9593
9594 * NEWS: Version 1.875e.
9595 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9596
9597 * src/scan-skel.l: Include "complain.h", for "fatal".
9598
9599 * src/relation.h (relation_print, relation_digraph):
9600 Relation sizes are of type relation_node, not size_t (this is
9601 merely a doc fix, since the two types are equivalent).
9602 (relation_transpose): Relation sizes are of type relation_node,
9603 not int.
9604 * src/relation.c: Likewise.
9605 (top, infinity): Now of type relation_node, not int.
9606 (traverse, relation_transpose): Use relation_node, not int.
9607
9608 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9609 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9610 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9611
9612 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9613 specifying whether the test should be skipped. Use it tp
9614 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9615 fail on some hosts, and should be skipped.
9616
9617 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9618
9619 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9620 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9621 unless otherwise specified below.
9622
9623 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9624 to allocate kernel_base, kernel_items, kernel_size, since
9625 they needn't be initialized to 0.
9626 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9627 * src/closure.c (new_closure): Likewise, for itemset.
9628 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9629 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9630 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9631 (build_relations): Likewise for edge, states1, includes.
9632 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9633 * src/reader.c (packgram): Likewise, for ritem, rules.
9634 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9635 * src/relation.c (relation_digraph): Likewise for VERTICES.
9636 (relation_transpose): Likewise for new_R, end_R.
9637 * src/symtab.c (symbols_token_translations_init): Likewise for
9638 token_translations.
9639 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9640 (token_actions): Likewise for yydefact, actrow, conflrow,
9641 conflict_list.
9642 (save_column): Likewise for froms[symno], tos[symno].
9643 (goto_actions): Likewise for state_count.
9644 (pack_table): Likewise for base, pos, check.
9645 (tables_generate): Likewise for width.
9646
9647 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9648 for initial core. Just have a separate core, so we needn't worry
9649 about whether kernel_size and kernel_base are initialized.
9650
9651 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9652 kernel_size, kernel_items): Remove unnecessary initialization.
9653 * src/conflicts.c (conflicts): Likewise.
9654 * src/derives.c (derives): Likewise.
9655 * src/muscle_tablc (muscle_insert): Likewise.
9656 * src/relation.c (relation_digraph): Likewise.
9657 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9658 conflrow, conflict_table, conflict_list, table, check):
9659 Likewise.
9660
9661 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9662 This is because all callers pass unsigned int.
9663 * src/closure.h (new_closure): Likewise.
9664
9665 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9666 (build_relations): Initialize includes[i] in all cases.
9667 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9668 and rules[ruleno].precsym. Initialize members in order.
9669 * src/relation.c (relation_transpose): Always initialize new_R[i]
9670 and end_R[i].
9671 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9672
9673 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9674 conflict_list[0] was always 0, but now it isn't initialized.
9675
9676 * src/table.c (table_grow): When conflict_table grew, the grown
9677 area wasn't cleared. Fix this.
9678
9679 * lib/.cvsignore: Add strdup.c, strdup.h.
9680 * m4/.cvsignore: Add strdup.m4.
9681
9682 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9683
9684 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9685 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9686 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9687 ngotos + 1 without checking for overflow.
9688 (build_relations): Use END_NODE, not -1, to denote end of edges.
9689 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9690 build_relations): Use goto_number, not int, for goto numbers.
9691 * src/tables.c (save_column, default_goto): Likewise.
9692
9693 2004-11-23 Akim Demaille <akim@epita.fr>
9694
9695 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9696 of #defining from yystype.
9697 Don't typedef yystype, C++ does not need it.
9698 This lets it possible to forward declare it as union.
9699
9700 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9701
9702 * bootstrap (gnulib_modules): Add extensions.
9703 Problem reported by Jim Meyering.
9704
9705 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9706
9707 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9708 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9709 src/system.h, src/tables.c: XFREE -> free, to accommodate
9710 recent change to gnulib xalloc.h.
9711 Problem reported by Jim Meyering.
9712
9713 2004-11-17 Akim Demaille <akim@epita.fr>
9714
9715 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9716
9717 2004-11-17 Akim Demaille <akim@epita.fr>,
9718 Alexandre Duret-Lutz <adl@gnu.org>
9719
9720 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9721 changes.
9722 (YYCDEBUG): Adjust.
9723 Use it instead of cdebug_.
9724 (Parser::debug_stream, Parser::set_debug_stream): New.
9725 (Parser::symprint_): Define cdebug_ for temporary backward
9726 compatibility.
9727 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9728 debug_stream ().
9729
9730 2004-11-17 Akim Demaille <akim@epita.fr>
9731
9732 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9733 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9734 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9735 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9736
9737 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9738
9739 * data/glr.c (yyloc_default): Remove; not used.
9740 Problem reported by Frank Heckenbach.
9741
9742 2004-10-25 Akim Demaille <akim@epita.fr>
9743
9744 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9745 Introduce another definition to address simple location arrays.
9746 (yyGLRStack): New member: yyerror_range.
9747 (yyrecoverSyntaxError, yyparse): Update it.
9748 (yyrecoverSyntaxError): Use it when shifting the error token to
9749 have an accurate range, equivalent to the one computed by both
9750 yacc.c and lalr1.cc.
9751 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9752 that column numbers start at column 0, as per GNU Coding
9753 Standards, the others tests, and the doc.
9754 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9755 Adjust to the above change (first column is 0).
9756 And adjust the location of the "<error>", now covering the whole
9757 line.
9758
9759 2004-10-22 Akim Demaille <akim@epita.fr>
9760 and Paul Eggert <eggert@cs.ucla.edu>
9761
9762 Remove some arbitrary limits on goto numbers and relations.
9763 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9764 initial values, since they're never used.
9765 (set_goto_map): ngotos is now unsigned, so test for overflow
9766 by seeing whether it wraps around to zero.
9767 * src/lalr.h (goto_number): Now size_t, not short int.
9768 (GOTO_NUMBER_MAXIMUM): Remove.
9769 * src/relation.c (relation_print, traverse, relation_transpose):
9770 Check for END_NODE rather than looking at sign.
9771 * src/relation.h (END_NODE): New macro.
9772 (relation_node): Now size_t, not short int.
9773
9774 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9775
9776 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9777 keyword, not an identifier. Problem reported by Baron Schwartz in
9778 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9779
9780 2004-10-11 Akim Demaille <akim@epita.fr>
9781
9782 * src/symtab.c (symbol_check_alias_consistency): Also check
9783 type names, destructors, and printers.
9784 Reported by Alexandre Duret-Lutz.
9785 Recode the handling of associativity and precedence in terms
9786 of symbol_precedence_set.
9787 Accept no redeclaration at all, not even equal to the previous
9788 value.
9789 (redeclaration): New.
9790 Use it to factor redeclaration complaints.
9791 (symbol_make_alias): Don't set the type of the alias, let
9792 symbol_check_alias_consistency do it as for other features.
9793 * src/symtab.h (symbol): Add new member prec_location, and
9794 type_location.
9795 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9796 * tests/input.at (Incompatible Aliases): New.
9797
9798 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9799
9800 .cvsignore fixes to accommodate gnulib changes,
9801 and the practice of naming build directories "_build".
9802 * .cvsignore: Add "_*". Sort.
9803 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9804 * m4/.cvsignore: Add "*_gl.m4".
9805
9806 2004-10-06 Akim Demaille <akim@epita.fr>
9807
9808 * src/parse-gram.y (add_param): Fix the truncation of trailing
9809 spaces.
9810
9811 2004-10-05 Akim Demaille <akim@epita.fr>
9812
9813 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9814 whether the reducion was empty or not. This leaves room to
9815 improve the use of YYLLOC_DEFAULT in such a case.
9816 lalr1.cc is still experimental, so changing this is acceptable.
9817 And finally, there are probably not many users who changed the
9818 handling of locations in GLR, so changing is admissible too.
9819
9820 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9821 empty reduction, set @$ to an empty location ending the previously
9822 stacked symbol.
9823 Adjust uses to make sure the code is triggered on empty
9824 reductions.
9825 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9826 expected output: empty reductions have empty locations.
9827
9828 2004-09-29 Akim Demaille <akim@epita.fr>
9829
9830 * data/lalr1.cc: Move towards a more standard C++ coding style
9831 for templates: Class < T > -> Class<T>.
9832
9833 2004-09-29 Akim Demaille <akim@epita.fr>
9834
9835 * data/lalr1.cc: Reinstall the former ctor, for sake of
9836 compatibility, but warn it will be removed.
9837 Move towards a more standard C++ coding style (i.e., type *var ->
9838 type* var).
9839
9840 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9841
9842 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9843 since it's less likely to work if NULs are involved in the future.
9844
9845 2004-09-27 Akim Demaille <akim@epita.fr>
9846
9847 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9848
9849 2004-09-27 Akim Demaille <akim@epita.fr>
9850
9851 * data/lalr1.cc (b4_parse_param_decl_1): New.
9852 (b4_parse_param_decl): Use it to have different names between attribute
9853 and argument names.
9854 (b4_cc_constructor_call): Likewise.
9855
9856 2004-09-24 Akim Demaille <akim@epita.fr>
9857
9858 * src/parse-gram.y (add_param): Strip the leading and trailing
9859 blanks from a formal argument declaration.
9860 (YY_LOCATION_PRINT): New.
9861
9862 2004-09-24 Akim Demaille <akim@epita.fr>
9863
9864 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9865 after the location.
9866
9867 2004-09-24 Akim Demaille <akim@epita.fr>
9868
9869 * doc/bison.texinfo (Table of Symbols): Sort.
9870
9871 2004-09-21 Akim Demaille <akim@epita.fr>
9872
9873 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9874 the useless parentheses.
9875 Suggested by Paul Eggert.
9876
9877 2004-09-20 Akim Demaille <akim@epita.fr>
9878
9879 Let the initial-action act on the look-ahead, and use it for the
9880 "initial push" (corresponding to an hypothetical beginning-of-file).
9881 And let lalr1.cc honor %initial-action.
9882
9883 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9884 example.
9885 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9886 (Parser::Parser): Remove the ctor that used to initialize it.
9887 (Parser::parse): Like in the other skeletons, issue the "starting
9888 parse" message before any action.
9889 Honor %initial-action.
9890 Initialize the stacks with the lookahead.
9891 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9892 look-ahead.
9893 Push them in the stacks.
9894 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9895
9896 2004-09-20 Akim Demaille <akim@epita.fr>
9897
9898 * doc/bison.texinfo (Initial Action Decl): New.
9899
9900 2004-09-20 Akim Demaille <akim@epita.fr>
9901
9902 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9903 clearer criterion to define it.
9904 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9905 When reducing on an empty RHS, use the latest stacked location as
9906 location.
9907 yylloc is not always available.
9908 * data/glr.c: Likewise.
9909 Also, honor initial-actions.
9910
9911 2004-09-20 Akim Demaille <akim@epita.fr>
9912
9913 * data/yacc.c (YY_LOCATION_PRINT): New.
9914 Define when we know YYLTYPE's structure, i.e., when the default
9915 YYLLOC_DEFAULT is used.
9916 * data/c.m4 (b4_yysymprint_generate): Use it.
9917 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9918 value of the result.
9919 (error_start_): Replace with...
9920 (error_range_): this location array.
9921 This allows to replace code relying on the implementation of
9922 locations by portable code.
9923 * data/yacc.c (yylerrsp): Replace with...
9924 (yyerror_range): this.
9925 Every time a token is popped, update yyerror_range[0], to have an
9926 accurate location for the error token.
9927 * data/glr.c (YY_LOCATION_PRINT): New.
9928 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9929 deference a pointer.
9930 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9931 report the location in %printers.
9932
9933 * src/scan-skel.l: Instead of abort, report error messages to ease
9934 understanding skeleton scanning failures.
9935
9936 2004-09-16 Akim Demaille <akim@epita.fr>
9937
9938 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9939 (iterator, const_iterator): these, to be more in the C++ spirit.
9940 Also, return reverse iterators so that when displaying the stack
9941 we display its bottom first.
9942 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9943 from yacc.c.
9944 We should probably use vector here though.
9945
9946 2004-09-16 Akim Demaille <akim@epita.fr>
9947
9948 Have more complete shift traces.
9949
9950 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9951 to report Shifts instead of ad hoc YYDPRINTF invocations,
9952 including for the error token.
9953 * data/lalr1.cc (symprint_): Output the location.
9954 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9955 output the location within the %printer.
9956 Activate GLR tests, at least to make sure they compile properly.
9957 They still don't pass though.
9958 * tests/calc.at: Adjust expect verbose output, since now "Entering
9959 state..." is on a different line than the "Shifting" message.
9960
9961 2004-09-08 Akim Demaille <akim@epita.fr>
9962
9963 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9964 Bison directive from the Bison file to the invocation of this
9965 macro, so that these directives are passed to
9966 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9967 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9968 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9969 the extra Bison directives instead of the whole series.
9970 Change the grammar so that there are recoverable errors, and
9971 unrecoverable errors. Now we can have the parser give up before
9972 consuming the whole input. As a result we now can observe that
9973 the lookahead is freed when needed.
9974 Change the parser source to parse argv[1] instead of a hard coded
9975 string.
9976 Simplify yylex, and give a value and location to EOF.
9977 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9978 passed directives already coded in the file.
9979 Add some tests to check the location of "error".
9980 For some tests, the C++ parser is correct, and not yacc.c.
9981 For other tests, they provide different, but unsatisfying, values,
9982 so keep the C++ value so that at least one parser is "correct"
9983 according to the test suite.
9984 (Actions after errors): Remove, this is subsumed by the
9985 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9986
9987 2004-09-06 Akim Demaille <akim@epita.fr>
9988
9989 * data/lalr1.cc: Adjust the indentation of the labels.
9990 (Parser::pop): New.
9991 Use it.
9992
9993 2004-09-06 Akim Demaille <akim@epita.fr>
9994
9995 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9996 argument, an informative message.
9997 Call YY_SYMBOL_PRINT.
9998 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9999 * data/lalr1.cc (destruct_): Likewise.
10000 In addition, no longer depend on b4_yysymprint_generate and
10001 b4_yydestruct_generate to generate these functions, do it "by
10002 hand".
10003
10004 2004-09-03 Akim Demaille <akim@epita.fr>
10005
10006 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
10007 invoked, yydestruct the lookahead.
10008 * tests/calc.at (Calculator $1): Update the expected lengths of
10009 traces: there is an added line for the discarded lookahead.
10010 * doc/bison.texinfo (Destructor Decl): Some rewording.
10011 Define "discarded" symbols.
10012
10013 2004-09-02 Akim Demaille <akim@epita.fr>
10014
10015 * data/lalr1.cc (translate_, destruct_): No reason to be static.
10016
10017 2004-09-02 Akim Demaille <akim@epita.fr>
10018
10019 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
10020 (YYDSYMPRINTF): Rename as...
10021 (YY_SYMBOL_PRINT): this.
10022 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
10023 two.
10024 Use it instead of direct symprint_ calls.
10025 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
10026 one.
10027
10028 2004-09-02 Akim Demaille <akim@epita.fr>
10029
10030 * data/lalr1.cc (b4_yysymprint_generate): New.
10031 (symprint_): New member function, defined when YYDEBUG.
10032 Use it consistently instead of token/nterm debugging output by
10033 hand.
10034 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
10035 %printer calls to use cdebug_ when using lalr1.cc.
10036
10037 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
10038
10039 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
10040 with #ifdef YYDEBUG.
10041
10042 2004-08-26 Akim Demaille <akim@epita.fr>
10043
10044 * doc/bison.texinfo (Implementing Loops): Rename as...
10045 (Implementing Gotos/Loops): this.
10046
10047 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
10048
10049 Adjust to latest gnulib.
10050 * bootstrap (gnulib_modules): Add xalloc-die.
10051 Set LC_ALL=C so that file names sort consistently.
10052 Prefer the gnulib copies of gettext.m4, glibc21.m4,
10053 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
10054 uintmax_t.m4, ulonglong.m4.
10055 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
10056 po.m4 since we are now using _gl.m4 instead.
10057
10058 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
10059
10060 * src/scan-action.l: Remove. Scanning of semantic actions is
10061 handled in scan-gram.l.
10062
10063 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
10064
10065 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
10066
10067 * src/location.h (struct): The file member is a uniqstr.
10068 (equal_boundaries): Use UNIQSTR_EQ for comparison.
10069
10070 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
10071
10072 Fix bug with non-%union parsers that have printers or destructors,
10073 which led to a Bison core dump. Reported by Peter Fales in
10074 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
10075
10076 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
10077 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
10078 not to our own type.
10079 * src/output.c (symbol_destructors_output, symbol_printers_output):
10080 Don't assume %union.
10081 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
10082 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
10083 UNION-FLAG. All callers changed.
10084 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
10085 Use type char, not unsigned int, when declaring an array of char;
10086 this lets us remove a cast.
10087 (Printers and Destructors): Add non-%union test cases.
10088
10089 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10090
10091 * doc/bison.texinfo: Minor editorial changes, mostly to the new
10092 GLR writeups. E.g., avoid frenchspacing and the future tense,
10093 change "lookahead" to "look-ahead", and change "wrt" to "with
10094 respect to".
10095
10096 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10097
10098 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
10099 New sections, split off from the GLR Parsers section. Put the new
10100 Simple GLR Parser near the start of the GLR section, for clarity.
10101 Rewrite connective text.
10102
10103 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
10104
10105 * doc/bison.texinfo (Simple GLR Parsers): New section.
10106
10107 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
10108
10109 * NEWS, TODO, doc/bison.texinfo:
10110 Use "look-ahead" instead of "lookahead", to be consistent.
10111 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
10112 while we're fixing "look-ahead".
10113 * src/conflicts.c (shift_set): Renamed from shiftset.
10114 (look_ahead_set): Renamed from lookaheadset.
10115 * src/print.c: Likewise.
10116 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
10117 name for "lookahead".
10118 (report_types, usage): Likewise.
10119 * src/getargs.h (report_look_ahead_tokens): Renamed from
10120 report_lookaheads.
10121 * src/lalr.c (compute_look_ahead_tokens): Renamed from
10122 compute_lookaheads.
10123 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
10124 (look_ahead_tokens_print): Renamed from lookaheads_print.
10125 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
10126 state_rule_lookaheads_print.
10127 * src/state.h: Likewise.
10128 (reductions.look_ahead_tokens): Renamed from lookaheads.
10129 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
10130 AT_DATA_LOOKAHEADS_GRAMMAR.
10131
10132 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
10133
10134 * README: Update location of patched M4 distribution.
10135
10136 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
10137
10138 Don't assume the C++ compiler takes the same arguments as the C compiler
10139 (trivial change).
10140 * configure.ac (O0CXXFLAGS): New var.
10141 * tests/atlocal.in (CXXFLAGS): Use it.
10142
10143 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
10144
10145 Fix some "make check" problems with C++ reported by
10146 Albert Chin-A-Young for Tru64 C++ in this thread:
10147 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
10148
10149 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
10150 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10151 Output to a .cc file for C++, not to a .c file.
10152 * tests/calc.at (AT_CHECK_CALC): Likewise.
10153 * tests/regression.at (AT_CHECK_DANCER): Likewise.
10154 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
10155
10156 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
10157
10158 * tests/calc.at, tests/actions.at: Workaround for SGI
10159 C++ compiler. (trivial change)
10160
10161 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
10162
10163 Spent a few hours checking out which prerequisite versions the
10164 current sources actually require. I went all the way back to
10165 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
10166 a seemingly endless set of combinations of versions more recent
10167 than that. The bottom line is that the current sources require
10168 fairly recent versions of the build tools, and it'll be some work
10169 to change this.
10170 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
10171 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
10172 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
10173 Add comments explaining why those particular versions are
10174 currently needed.
10175
10176 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
10177 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
10178 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
10179
10180 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
10181 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
10182
10183 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
10184
10185 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
10186 0.11.5. Suggested by Bruno Haible.
10187 * bootstrap: Remove gettext version checking.
10188
10189 * doc/bison.texinfo (Decl Summary): Also mention that %union
10190 can depend on prerequisite types. Problem reported by Tim
10191 Van Holder.
10192
10193 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
10194
10195 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
10196 * README-alpha: Don't tell people not to package this.
10197
10198 * bootstrap: Don't assume $(...) works; use `...` instead.
10199 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
10200 gettext better.
10201
10202 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
10203 put into the -d output file, and mention what to do if YYSTYPE is
10204 defined as a macro.
10205
10206 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
10207
10208 Undo change made earlier today: it caused autopoint to not bring
10209 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
10210 autopoint's.
10211
10212 * bootstrap: Check that gettext version matches what's in
10213 configure.ac. Warn users to ignore robots.txt ERROR 404.
10214 * bootstrap: Undo today's earlier change (logged below).
10215 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
10216
10217 The gettext version checking is causing more trouble than it's
10218 curing; remove it. Problem reported by Paul Hilfinger.
10219
10220 * bootstrap: Issue a warning that one can expect a message
10221 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10222 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10223
10224 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10225
10226 Ensure that the C++ compiler used for testing actually works on a
10227 simple test program; if not, skip the C++-related tests. Problem
10228 reported by Vin Shelton in:
10229 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10230
10231 * m4/cxx.m4: New file.
10232 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10233 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10234 * tests/local.at (AT_COMPILE_CXX): Use it.
10235
10236 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10237
10238 * data/glr.c (yylloc): Output this macro even if locations are not
10239 being generated, as the GLR parser needs it even in that case.
10240 Problem reported by Troy A. Johnson
10241 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10242
10243 * configure.ac (AC_INIT): Update to 1.875e.
10244
10245 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10246
10247 * NEWS: Version 1.875d.
10248 * configure.ac (AC_INIT): Likewise.
10249 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10250
10251 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10252 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10253 lalr1.cc runs afoul of the first, and the last two are no longer
10254 supported by GCC 3.4.0.
10255 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10256 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10257
10258 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10259
10260 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10261 unsigned int, for compatibility with latest gnulib hash module.
10262 * src/state.c (state_hash, state_hasher): Likewise.
10263 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10264 * src/uniqstr.c (hash_uniqstr): Likewise.
10265
10266 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10267
10268 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10269
10270 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10271 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10272 character and string literals.
10273 (unexpected_end): New function.
10274 (unexpected_eof): Use it.
10275 (unexpected_newline): New function.
10276 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10277 actions.
10278
10279 * NEWS: Document %expect-rr.
10280
10281 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10282 Fix typo by replacing $1 with $option.
10283 Remove more 'intl'-related files.
10284 Don't DEFUN AM_INTL_SUBDIR twice.
10285
10286 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10287 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10288 strtoul.c.
10289 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10290 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10291 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10292 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10293 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10294 * src/.cvsignore: Add *.output.
10295
10296 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10297 gets copied to the output file.
10298
10299 2004-04-28 Paul Eggert <eggert@twinsun.com>
10300
10301 Get files from the gnulib and po repositories, instead of relying
10302 on them being in our CVS. Upgrade to latest versions of gnulib
10303 and Automake.
10304
10305 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10306 * bootstrap: Bootstrap from gnulib and po repositories.
10307 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10308 * README-cvs: Document these changes. Remove version numbers from
10309 mentions of build tools, since they change so often. Mention Flex.
10310
10311 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10312 (gl_USE_SYSTEM_EXTENSIONS): Add.
10313 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10314 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10315 does this for us.
10316 (AC_ISC_POSIX): Remove; we no longer support this
10317 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10318 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10319 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10320 Do not check for C89 headers, except for locale.h which is used
10321 by the Yacc library and must port to K&R hosts.
10322 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10323 Do not check for C89 functions, except for setlocale which is
10324 used by the Yacc library.
10325 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10326 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10327 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10328 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10329 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10330 AM_GNU_GETTEXT): Remove; now done by:
10331 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10332 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10333 for us.
10334
10335 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10336 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10337 Define to empty, as gnulib.mk will do the rest for us.
10338 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10339 for us.
10340 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10341 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10342
10343 * src/files.c: Include gnulib's xstrndup.h.
10344
10345 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10346 (REALLOC): Use xnrealloc, for likewise.
10347 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10348 (strnlen, memrchr): Remove decls; functions no longer used.
10349 Include <stpcpy.h>.
10350
10351 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10352 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10353 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10354 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10355 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10356 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10357 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10358 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10359 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10360 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10361 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10362 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10363 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10364 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10365 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10366 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10367 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10368 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10369 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10370 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10371 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10372 Remove, as these files are now generated automatically
10373 by bootstrap or automake.
10374
10375 * po/ChangeLog: Remove: all but one entry was a duplicate
10376 of this file, and I moved that 2000-11-02 entry here.
10377
10378 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10379 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10380 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10381 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10382 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10383 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10384 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10385 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10386 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10387 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10388 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10389 xstrndup.h.
10390 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10391 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10392 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10393 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10394 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10395 * src/.cvsignore: Remove *_.c.
10396
10397
10398 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10399 support it. (The latest stable gzip doesn't.)
10400
10401 2004-04-27 Paul Eggert <eggert@twinsun.com>
10402
10403 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10404 case, as stos_ is now used by destructors due to the 2004-02-09
10405 change.
10406
10407 Remove more K&R C support.
10408 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10409 * lib/subpipe.c (errno): Remove decl.
10410 Include <stdlib.h> unconditionally.
10411 (EXIT_FAILURE): Remove macro.
10412 * src/complain.c (vfprintf, strerror): Remove.
10413 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10414 unconditionally.
10415 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10416 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10417 (strchr, strspn, memchr): Remove decls.
10418 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10419 unconditionally. Do not declare perror.
10420 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10421 unconditionally.
10422
10423 * src/complain.c (_): Remove useless defn, as system.h defines this.
10424
10425 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10426 with latest obstack.h.
10427 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10428 to procedure types, as obstack.h now does that for us.
10429 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10430
10431 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10432 so that this include file can stand alone.
10433 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10434 does this now. Include subpipe.h first after config.h, to
10435 test whether it can stand alone.
10436
10437 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10438 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10439 unused declaration.
10440
10441 * tests/synclines.at (%union synch line): Put a dummy member in
10442 the union, because empty unions aren't allowed in C. Caught
10443 by GCC 3.4.0.
10444
10445 2004-04-13 Jim Meyering <jim@meyering.net>
10446
10447 * src/conflicts.c (conflicts_print): Correct format string typo:
10448 use `%%' to produce literal `%'. (trivial change)
10449
10450 2004-03-30 Paul Eggert <eggert@twinsun.com>
10451
10452 * src/getargs.c (version): Update copyright year to 2004.
10453
10454 * data/c.m4 (b4_int_type): Use 'short int' rather than
10455 'short', and similarly for 'long', 'unsigned', etc.
10456 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10457 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10458 yy_yypstack, yydumpstack): Likewise.
10459 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10460 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10461 Likewise.
10462 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10463 yy_stack_print, yyparse): Likewise.
10464 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10465 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10466 * lib/bitset.c (bitset_print): Likewise.
10467 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10468 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10469 * lib/bitsetv.c (bitsetv_dump): Likewise.
10470 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10471 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10472 Likewise.
10473 * src/LR0.c (allocate_itemsets): Likewise.
10474 * src/gram.h (rule_number, rule): Likewise.
10475 * src/lalr.h (goto_number): Likewise.
10476 * src/nullable.c (nullable_compute): Likewise.
10477 * src/output.c (prepare_rules): Likewise.
10478 * src/relation.c (relation_print, relation_digraph): Likewise.
10479 * src/relation.h (relation_node): Likewise.
10480 * src/state.h (state_number, transitions, errs, reductions,
10481 struct state): Likewise.
10482 * src/symtab.h (symbol_number, struct symbol): Likewise.
10483 * src/tables.c (vector_number, tally, action_number,
10484 default_goto, goto_actions): Likewise.
10485 * tests/existing.at (GNU Cim Grammar): Likewise.
10486 * tests/regression.at (Web2c Actions): Likewise.
10487
10488 * src/output.c (muscle_insert_short_int_table): Renamed from
10489 muscle_insert_short_table. All uses changed.
10490
10491 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10492
10493 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10494 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10495 Add %expect-rr rule.
10496
10497 * src/scan-gram.l: Recognize %expect-rr.
10498
10499 * src/conflicts.h (expected_sr_conflicts): Rename from
10500 expected_conflicts.
10501 (expected_rr_conflicts): Declare.
10502
10503 * src/conflicts.c (expected_sr_conflicts): Rename from
10504 expected_conflicts.
10505 (expected_rr_conflicts): Define.
10506 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10507 for GLR parsers.
10508 Use expected_sr_conflicts in place of expected_conflicts.
10509 Warn if expected_rr_conflicts used in non-GLR parser.
10510
10511 * doc/bison.texinfo: Add documentation for %expect-rr.
10512
10513 2004-03-08 Paul Eggert <eggert@gnu.org>
10514
10515 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10516 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10517
10518 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10519 in lalr1.cc.
10520 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10521 * src/scan-gram.l (scan_integer): New function.
10522 ({int}): Use it.
10523 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10524 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10525 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10526 Say "long int", not "long", for uniformity with GNU style.
10527
10528 2004-02-25 Paul Eggert <eggert@twinsun.com>
10529
10530 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10531 compilers. This fixes a problem with Intel's C++ compiler being
10532 chatty, reported by Guido Trentalancia in
10533 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10534
10535 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10536
10537 Support %destructor and merge error locations in lalr1.cc.
10538
10539 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10540 (Parser::stos_): Define unconditionally.
10541 (Parser::destruct_): New method. Generate its body with
10542 b4_yydestruct_generate.
10543 (Parser::error_start_): New attribute.
10544 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10545 token which are discarded.
10546 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10547 error_start_ when erroneous token are discarded.
10548 (Parser::parse) <yyerrlab1>: Compute the location of the error
10549 token so that it covers all the discarded tokens.
10550 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10551 it can be called with `%skeleton "lalr1.cc"', and do that.
10552
10553 2004-02-02 Paul Eggert <eggert@twinsun.com>
10554
10555 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10556 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10557 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10558 There's no need to mention top_builddir since Automake does that
10559 for us.
10560 (INCLUDES): Remove, as Automake says it's obsolescent.
10561 Contents migrated into AM_CPPFLAGS as described above.
10562 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10563
10564 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10565
10566 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10567 (yyreportSyntaxError): Handle case where lookahead token is
10568 YYEMPTY.
10569
10570 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10571
10572 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10573 resulting parsers are compilable with C++.
10574
10575 2003-12-23 Paul Eggert <eggert@twinsun.com>
10576
10577 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10578 * src/output.c (output_skeleton): Rename local var.
10579 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10580 Bison tokens, as this runs afoul of the 2003-10-07 change that
10581 disallowed NUL bytes in character constants or string literals.
10582
10583 * tests/local.at: Require Autoconf 2.59's Autotest.
10584 * tests/testsuite.at: Don't include local.at, since we now assume
10585 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10586 including it.
10587 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10588 multiple inclusion warnings.
10589
10590 2003-12-02 Akim Demaille <akim@epita.fr>
10591
10592 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10593 conditions.
10594 From Bruno Haible.
10595
10596 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10597
10598 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10599
10600 2003-10-07 Paul Eggert <eggert@twinsun.com>
10601
10602 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10603 if testsuite doesn't exist.
10604
10605 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10606 literals, unfortunately.
10607 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10608 Complain about NUL bytes in character constants or string literals.
10609
10610 2003-10-05 Paul Eggert <eggert@twinsun.com>
10611
10612 * NEWS: Don't document %no-default-prec, as it's still
10613 too experimental.
10614 * doc/bison.texinfo: Document %no-default-prec only if
10615 the defaultprec flag is set. Normally it's not.
10616
10617 2003-10-04 Paul Eggert <eggert@twinsun.com>
10618
10619 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10620 non-modifiable lvalue, instead of a modifiable one.
10621 * doc/bison.texinfo (Actions): Document that $$ can
10622 be assigned to. Do not claim that $$ and $N are
10623 array element references: user code should not rely on this.
10624
10625 2003-10-01 Paul Eggert <eggert@twinsun.com>
10626
10627 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10628 (grammar_declaration): Use it.
10629 * src/scan-gram.l: New token %no-default-prec.
10630 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10631 * NEWS, doc/bison.texinfo: Document the above.
10632
10633 2003-10-01 Akim Demaille <akim@epita.fr>
10634
10635 VCG no longer supports long_straight_phase.
10636
10637 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10638 * src/print_graph.c (print_graph): Adjust.
10639
10640 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10641 and Paul Eggert <eggert@twinsun.com>
10642
10643 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10644 Table of Symbols): Document %default-prec.
10645 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10646 (grammar_declaration): Set default_prec on %default-prec.
10647 * src/scan-gram.l (%default-prec): New token.
10648 * src/reader.h (default_prec): New flag.
10649 * src/reader.c: Likewise.
10650 (packgram): Handle it.
10651 * tests/conflicts.at (%default-prec without %prec,
10652 %default-prec with %prec, %default-prec 1): New tests.
10653
10654 2003-09-30 Paul Eggert <eggert@twinsun.com>
10655
10656 * tests/testsuite.at: Include local.at, not input.at, fixing
10657 a typo in the 2003-08-25 patch.
10658
10659 2003-08-27 Akim Demaille <akim@epita.fr>
10660
10661 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10662 GCC warnings.
10663
10664 2003-08-26 Akim Demaille <akim@epita.fr>
10665
10666 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10667 "<\#" to avoid magic from Gnus when posting parts of this script.
10668
10669 2003-08-26 Akim Demaille <akim@epita.fr>
10670
10671 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10672 (Parser::parse): here.
10673 Adjust: nerrs and errstatus is now replaced by...
10674 (Parser::nerrs_, Parser::errstatus_): New.
10675
10676 2003-08-25 Akim Demaille <akim@epita.fr>
10677
10678 * config/announce-gen, Makefile.cfg: New.
10679 * Makefile.am: Adjust.
10680 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10681 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10682
10683 2003-08-25 Akim Demaille <akim@epita.fr>
10684
10685 When reducing initial empty rules, Bison parser read an initial
10686 location that is not defined. This results in garbage, and that
10687 affects Bison's own parser. Therefore we need (i) to extend Bison
10688 to support a means to initialize this location, and (ii) to use
10689 this CVS Bison to fix CVS Bison's parser.
10690
10691 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10692 with...
10693 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10694 * src/parse-gram.y: Adjust.
10695 (%initial-action): New.
10696 (%error-verbose): Since we require CVS Bison, there is no reason
10697 not to use it.
10698 * src/scan-gram.l: Adjust.
10699 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10700 * data/yacc.c (yyparse): Use b4_initial_action.
10701
10702 2003-08-25 Akim Demaille <akim@epita.fr>
10703
10704 * doc/bison.texinfo: Don't promote stdout for error messages.
10705
10706 2003-08-25 Akim Demaille <akim@epita.fr>
10707
10708 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10709 From Alexandre Duret-Lutz.
10710
10711 2003-08-25 Akim Demaille <akim@epita.fr>
10712
10713 Version 1.875c.
10714
10715 2003-08-25 Akim Demaille <akim@epita.fr>
10716
10717 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10718 Use them.
10719
10720 2003-08-25 Akim Demaille <akim@epita.fr>
10721
10722 * data/lalr1.cc (Parser::reduce_print_): New.
10723 Use it.
10724
10725 2003-08-25 Akim Demaille <akim@epita.fr>
10726
10727 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10728 error recovery loops. This patch is based on
10729 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10730 Also, augment the similarity between lalr1.cc and yacc.c.
10731 Note: the locations of error recovery rules are not correct yet.
10732
10733 * data/lalr1.cc: Comment changes to augment the similarity between
10734 lalr1.cc and yacc.c.
10735 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10736 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10737 yyerrlab), when hitting EOF, pop the whole stack here instead of
10738 merely falling thru the default error handling mechanism.
10739 (yyerrorlab): New label, with the old contents of YYERROR,
10740 plus the following change: pop the stack of rhs corresponding
10741 to the production that invoked YYERROR. That is how Yacc
10742 behaves (required by POSIX).
10743 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10744 fail.
10745
10746 2003-08-25 Akim Demaille <akim@epita.fr>
10747
10748 Tune local.at so that people can "autom4te -l autotest calc.at -o
10749 calc" for instance, to extract a sub test suite.
10750
10751 * tests/testsuite.at: Move the initialization, Autotest version
10752 requirement, and AT_TESTED invocation into...
10753 * tests/local.at: here.
10754 * tests/testsuite.at: Include it for compatibility with Autoconf
10755 2.57.
10756 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10757 be ignore.
10758
10759 2003-08-04 Paul Eggert <eggert@twinsun.com>
10760
10761 Rework code slightly to avoid gcc -Wtraditional warnings.
10762 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10763 The returned value is now stored in *YY0. All callers changed.
10764 * src/output.c (merge_output): Adjust to the above change.
10765
10766 2003-07-26 Paul Eggert <eggert@twinsun.com>
10767
10768 * data/glr.c (YYASSERT): New macro.
10769 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10770 yyresolveStates, yyprocessOneStack):
10771 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10772 Derived from a suggestion by Frank Heckenbach.
10773
10774 2003-07-25 Paul Eggert <eggert@twinsun.com>
10775
10776 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10777 for portability to K&R C (after ansi2knr, presumably). See
10778 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10779 by Frank Heckenbach, though I have omitted the structure-initialization
10780 part of his glr-knr.diff patch since I recall that the Portable
10781 C Compiler didn't require that change.
10782
10783 Let the user specify how to allocate and free memory.
10784 Derived from a suggestion by Frank Heckenbach in
10785 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10786 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10787 All uses of free, malloc, realloc changed to use these macros,
10788 and unnecessary casts removed.
10789 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10790
10791 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10792
10793 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10794 use s.empty() rather than s == "" to test for empty string; see
10795 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10796 (trivial change)
10797
10798 2003-06-25 Akim Demaille <akim@epita.fr>
10799
10800 * config/depcomp, config/install-sh: Update from masters.
10801
10802 2003-06-20 Paul Eggert <eggert@twinsun.com>
10803
10804 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10805 and return properly parenthesized result.
10806 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10807 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10808 Remove unnecessary parentheses from uses.
10809 * doc/bison.texinfo (Location Default Action): Describe the
10810 conventions for parentheses.
10811
10812 2003-06-19 Paul Eggert <eggert@twinsun.com>
10813
10814 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10815 yyreportTree): Do not assume that size_t is the same width as int,
10816 when printing sizes. Print sizes using an unsigned format.
10817 Problem reported by Frank Heckenbach in
10818 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10819
10820 Port to Forte Developer 7 C compiler.
10821 * data/glr.c (struct YYLTYPE): If locations are not being used,
10822 declare a single dummy member, as empty structs do not conform
10823 to the C standard.
10824 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10825 the Forte Developer 7 C compiler complains that end-of-loop
10826 code is not reached.
10827
10828 2003-06-17 Paul Eggert <eggert@twinsun.com>
10829
10830 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10831 avoid warnings from picky compilers about redefinition of PARAMS.
10832
10833 2003-06-17 Paul Eggert <eggert@twinsun.com>
10834
10835 Version 1.875b.
10836
10837 * NEWS: Document 1.875b.
10838
10839 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10840 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10841 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10842 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10843 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10844 per recent gettext manual's suggestion.
10845 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10846 Use prototypes, not old-style definitions.
10847 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10848 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10849 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10850 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10851 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10852 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10853 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10854 vbitset_or_and_cmp, vbitset_copy): Likewise.
10855
10856 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10857 Do not include <stdlib.h>.
10858 (PARAMS): Define unconditionally for C89.
10859 (ATTRIBUTE_NORETURN): Remove.
10860 (ATTRIBUTE_UNUSED): Define unconditionally.
10861
10862 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10863 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10864 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10865 * lib/vbitset.c, lib/vbitset.h: New files.
10866 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10867 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10868 from libbitset.
10869
10870 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10871 `How Can I Reset @code{yyparse}', since texinfo does not allow
10872 arbitrary @ in node names.
10873
10874 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10875 shouldn't be needed according to the gettext 0.12.1 documentation
10876 but which seem to be needed anyway: codeset.m4 glibc21.m4
10877 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10878 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10879 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10880
10881 * lib/.cvsignore: Add stdbool.h.
10882 * m4/.cvsignore: Add nls.m4, po.m4.
10883
10884 Upgrade to CVS gnulib.
10885 * stdbool_.h: File renamed from stdbool.h.in.
10886 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10887 AC_HEADER_STDBOOL.
10888 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10889 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10890 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10891 (MOSTLYCLEANFILES): New var.
10892 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10893 (stdbool.h): New rule.
10894 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10895 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10896 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10897 m4/quote.m4: Upgrade to today's gnulib.
10898
10899 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10900 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10901 the tests right now.
10902 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10903 yyerror are declared before use; C99 requires this.
10904
10905 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10906
10907 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10908 first.
10909 (yyrecoverSyntaxError): Correct the logic for setting and testing
10910 yyerrState.
10911 Correct comment on handling EOF.
10912 Allow states with only a default reduction, rather than failing
10913 (I can't quite reconstruct why these were not allowed before).
10914
10915 Fixes to avoid problem that $-N rules in GLR parsers can cause
10916 buffer overruns, corrupting state.
10917
10918 * src/output.c (prepare_rules): Output max_left_semantic_context
10919 definition.
10920 * src/reader.h (max_left_semantic_context): New variable declaration.
10921 * src/scan-gram.l (max_left_semantic_context): Define.
10922 (handle_action_dollar): Update max_left_semantic_context.
10923 * data/glr.c (YYMAXLEFT): New definition.
10924 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10925 (yyresolveAction): Ditto.
10926
10927 Fixes to problems with location handling in GLR parsers reported by
10928 Frank Heckenbach (2003/06/05).
10929
10930 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10931 (YYRHSLOC): Add parentheses, and define only if locations used.
10932 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10933 locations not used.
10934 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10935 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10936
10937 * tests/cxx-type.at: Exercise location information; update tests
10938 to differentiate output with and without locations.
10939 Remove forward declarations of yylex and yyerror---caused errors
10940 because default YYLTYPE not yet defined.
10941 Change semantic actions to compute strings, rather than printing
10942 them directly (to test proper passing of semantics values). Change
10943 output to prefix notation and update test data and expected results.
10944 (yylex): Track locations.
10945 (stmtMerge): Return value rather than printing, and include arguments
10946 in value.
10947
10948 2003-06-03 Paul Eggert <eggert@twinsun.com>
10949
10950 Avoid warnings generated by GCC 2.95.4 when Bison is
10951 configured with --enable-gcc-warnings.
10952 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10953 yy::]b4_parser_class_name[::translate_,
10954 yy::Stack::operator[] (unsigned),
10955 yy::Stack::operator[] (unsigned) const,
10956 yy::Slice::operator[] (unsigned),
10957 yy::Slice::operator[] (unsigned) const):
10958 Rename local vars to avoid warnings.
10959 * tests/glr-regression.at (Improper handling of embedded actions
10960 and $-N in GLR parsers): Remove unused local variable from yylex.
10961 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10962 (void) as arg when not pure, since we now assume C89 when building
10963 Bison. Pacify GCC by using parameter.
10964
10965 2003-06-02 Paul Eggert <eggert@twinsun.com>
10966
10967 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10968 yy::Location::lines, yy::Location::columns): Rename arguments
10969 to avoid shadowing; this removes a warning generated by GCC 3.3.
10970
10971 2003-06-01 Paul Eggert <eggert@twinsun.com>
10972
10973 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10974 to g++, as GCC 3.3 complains if you do it.
10975 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10976 everything that WARNING_CFLAGS has, except omit warnings
10977 not suitable for C++.
10978 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10979 * tests/atlocal.in (CXXFLAGS): New var.
10980 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10981
10982 Fix a GLR parser bug I reported in February; see
10983 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10984 The problem was that GLR parsers did not conform to the C standard,
10985 because actions like { $1 = $2 + $3; } expanded to expressions
10986 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10987 to a local variable. The C standard says that expressions
10988 like (var = f ()) + (var = f ()) have undefined behavior.
10989 Another problem was that GCC sometimes issues warnings that
10990 yyfill and its parameters are unused.
10991
10992 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10993 as possibly unused.
10994 (yyfill): New function.
10995 (YYFILL): Use it.
10996 (yyuserAction): Change type of yynormal to bool, so that it matches
10997 the new yyfill signature. Mark it as possibly unused.
10998
10999
11000 Follow up on a bug I reported in February, where a Bison-generated
11001 parser can loop. Provide a test case and a fix for yacc.c. I
11002 don't have a fix for lalr1.cc or for glr.c, unfortunately.
11003 The original bug report is in:
11004 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
11005
11006 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
11007 macro's size was becoming unwieldy.
11008 (yyerrlab): Do not discard an empty lookahead symbol, as this
11009 might destroy garbage.
11010 (yyerrorlab): New label, with the old contents of YYERROR,
11011 plus the following change: pop the stack of rhs corresponding
11012 to the production that invoked YYERROR. That is how Yacc
11013 behaves, and POSIX requires this behavior.
11014 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
11015 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
11016 Define 'alarm' to do nothing if unistd.h is not available.
11017 Add a new rule "exp: '-' error;" to test the above change to
11018 data/yacc.c. Use 'alarm' to abort any test taking longer than
11019 10 seconds, as it's probably looping.
11020 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
11021 Also, the new yacc.c generates two fewer diagnostics for an
11022 existing test.
11023
11024 2003-05-24 Paul Eggert <eggert@twinsun.com>
11025
11026 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
11027 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
11028 This fixes a problem reported by John Bowman when the Compaq/HP
11029 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
11030 -ansi -Wall -gall).
11031 * data/yacc.c (union yyalloc): Likewise.
11032 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
11033
11034 Switch from 'int' to 'bool' where that makes sense.
11035
11036 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
11037 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
11038 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
11039 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
11040 Return or accept bool, not int. All callers changed.
11041 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
11042 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
11043 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
11044 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
11045 bitset_or_and_cmp_): Likewise.
11046 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
11047 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
11048 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
11049 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
11050 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
11051 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
11052 bitset_stats_or_and_cmp): Likewise.
11053 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
11054 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
11055 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
11056 ebitset_xor_cmp): Likewise.
11057 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
11058 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
11059 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
11060 lbitset_xor_cmp): Likewise.
11061 * lib/bbitset.h: Include <stdbool.h>.
11062 (struct bitset_vtable): The following members now return bool, not
11063 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
11064 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
11065 or_and_cmp).
11066 * src/conflicts.c (count_rr_conflicts): Likewise.
11067 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
11068 All uses changed.
11069 * lib/ebitset.c (ebitset_obstack_init): Likewise.
11070 * lib/lbitset.c (lbitset_obstack_init): Likewise.
11071 * src/getargs.c (debug_flag, defines_flag, locations_flag,
11072 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11073 graph_flag): Likewise.
11074 * src/getargs.h (debug_flag, defines_flag, locations_flag,
11075 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
11076 graph_flag): Likewise.
11077 * src/output.c (error_verbose): Likewise.
11078 * src/output.h (error_verbose): Likewise.
11079 * src/reader.c (start_flag, typed): Likewise.
11080 * src/reader.h (typed): Likewise.
11081 * src/getargs.c (LOCATIONS_OPTION): New constant.
11082 (long_options, getargs): Use it.
11083 * src/lalr.c (build_relations): Use bool, not int.
11084 * src/nullable.c (nullable_compute): Likewise.
11085 * src/print.c (print_reductions): Likewise.
11086 * src/tables.c (action_row, pack_vector): Likewise.
11087 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
11088 * src/output.c (prepare): Use it.
11089 * src/output.c (token_definitions_output,
11090 symbol_destructors_output, symbol_destructors_output): Use string,
11091 not boolean integer, to keep track of whether to output separator.
11092 * src/print_graph.c (print_core): Likewise.
11093 * src/state.c (state_rule_lookaheads_print): Likewise.
11094
11095 * config/install-sh: Sync from automake 1.7.5.
11096
11097 2003-05-14 Paul Eggert <eggert@twinsun.com>
11098
11099 * src/parse-gram.y (rules_or_grammar_declaration): Require a
11100 semicolon after a grammar declaration, in the interest of possible
11101 future changes to the Bison input language.
11102 Do not allow a stray semicolon at the start of the grammar.
11103 (rhses.1): Allow one or more semicolons after any rule, including
11104 just before "|" as required by POSIX.
11105 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
11106 grammar.
11107
11108 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
11109
11110 %parse-param support for lalr1.cc.
11111
11112 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
11113 b4_cc_constructor_calls, b4_cc_constructor_call,
11114 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
11115 definitions.
11116 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
11117 parse-param arguments.
11118 (yy::b4_parser_class_name): Declare instance variables to
11119 hold parse-param arguments.
11120 * tests/calc.at: s/value/semantic_value/ because value clashes
11121 with a member of yy::b4_parser_class_name. Adjust C++ code
11122 to handle %parse-param. Enable %parse-param test in C++.
11123
11124 2003-05-12 Paul Eggert <eggert@twinsun.com>
11125
11126 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
11127 English a bit. Fix fclose typo. Change "const char" to "char
11128 const", and use ANSI C rather than K&R for "main". Suggest
11129 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
11130 and suggest yy_switch_to_buffer.
11131
11132 2003-05-05 Paul Eggert <eggert@twinsun.com>
11133
11134 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
11135 C89. This avoids a diagnostic on compilers that define __STDC__
11136 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
11137 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11138
11139 2003-05-03 Paul Eggert <eggert@twinsun.com>
11140
11141 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
11142 Do not overrun array bounds.
11143 This should fix a bug reported today by Olatunji Oluwabukunmi in
11144 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
11145
11146 2003-04-29 Akim Demaille <akim@epita.fr>
11147
11148 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
11149 * src/getargs.c, src/getargs.h: here, as bool, not int.
11150 (nondeterministic_parser): New.
11151 * src/parse-gram.y, src/scan-gram.l: Support
11152 %nondeterministic-parser.
11153 * src/output.c (prepare): Use nondeterministic_parser instead
11154 of glr_parser where appropriate.
11155 * src/tables.c (conflict_row, action_row, save_row)
11156 (token_actions, token_actions, pack_vector): Ditto.
11157
11158 2003-04-29 Akim Demaille <akim@epita.fr>
11159
11160 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
11161
11162 2003-04-29 Akim Demaille <akim@epita.fr>
11163
11164 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
11165 with %pure-parser and %locations to exercise the patch from Yakov
11166 Markovitch below.
11167
11168 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
11169
11170 * data/yacc.c: (b4_lex_param): Corrected for the case where
11171 %lex-param is provided and %pure-parser isn't.
11172
11173 2003-04-27 Paul Eggert <eggert@twinsun.com>
11174
11175 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
11176 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
11177 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
11178 if it is not defined.
11179 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
11180
11181 2003-04-26 Paul Eggert <eggert@twinsun.com>
11182
11183 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
11184 Declare to be of type suitable for the ninf value itself, not of
11185 type suitable for the corresponding table, since the latter might
11186 be unsigned but the ninf value might be negative. This fixes a
11187 bug reported by Alexandre Duret-Lutz in
11188 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
11189
11190 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
11191 invokes it. We shouldn't invoke it twice because it will attempt
11192 to put error.o in the archive twice. This fixes a glitch reported
11193 by Martin Mokrejs in
11194 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
11195
11196 2003-04-21 Paul Eggert <eggert@twinsun.com>
11197
11198 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
11199 to gnulib.
11200
11201 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
11202
11203 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
11204 Fix obvious typo that results in uncompilable GLR parsers
11205 when both %pure-parser and %locations are used. (trivial change)
11206
11207 2003-04-17 Paul Eggert <eggert@twinsun.com>
11208
11209 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
11210 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
11211 Do not insert the expected token via unput, as this runs afoul
11212 of a POSIX-compatibility bug in flex 2.5.31.
11213 All uses changed to BEGIN the parent state,
11214 since we no longer insert the expected token via unput.
11215 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
11216 that is no longer emitted after the above change.
11217
11218 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
11219 the first one. This change is from Paul Hilfinger, and it fixes
11220 regression reported by Werner Lemberg in
11221 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11222
11223 (resolve_sr_conflict): Don't invoke state_errs_set
11224 unless one or more tokens have been explicitly made errors.
11225 Otherwise, the above change causes Bison to abort.
11226
11227 * tests/existing.at (GNU pic Grammar): New test case, taken from
11228 Lemberg's email.
11229
11230 2003-03-31 Akim Demaille <akim@epita.fr>
11231
11232 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11233
11234 2003-03-31 Akim Demaille <akim@epita.fr>
11235
11236 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11237 output.
11238
11239 2003-03-31 Akim Demaille <akim@epita.fr>
11240
11241 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11242 From Paul Hilfinger.
11243
11244 2003-03-29 Akim Demaille <akim@epita.fr>
11245
11246 * m4/error.m4: Do not put under dynamic conditions some code which
11247 expansion is under static control.
11248
11249 2003-03-29 Akim Demaille <akim@epita.fr>
11250
11251 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11252
11253 2003-03-29 Akim Demaille <akim@epita.fr>
11254
11255 * doc/bison.texinfo (Strings are Destroyed): New.
11256
11257 2003-03-13 Paul Eggert <eggert@twinsun.com>
11258
11259 * .cvsignore: Add configure.lineno.
11260 * src/.cvsignore: Add yacc.
11261 * tests/.cvsignore: Add testsuite.log.
11262 * doc/fdl.texi: Sync with latest FSF version.
11263
11264 2003-03-12 Paul Eggert <eggert@twinsun.com>
11265
11266 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11267 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11268 cursor, instead of leaving it undefined. This fixes a bug
11269 reported by Tim Van Holder in
11270 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11271 * tests/input.at (Torturing the Scanner): Test the scanner on
11272 an empty input file, which was Tim Van Holder's test case.
11273
11274 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11275 <sys/resource.h> can be included, include sys/time.h and
11276 sys/times.h first, if available. This works around the SunOS
11277 4.1.4 porting bug reported by Bruce Becker in
11278 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11279
11280 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11281 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11282 AC_HEADER_SYS_WAIT.
11283
11284 Merge changes from gnulib. This was prompted because the CVS
11285 snapshot didn't build on Solaris 7 due to strnlen problems.
11286
11287 These changes need to be merged back into gnulib:
11288 * lib/hash.c: Include <stdbool.h> unconditionally.
11289 * m4/onceonly.m4 (m4_quote): New macro.
11290 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11291 Quote AC_FOREACH variable-expansions properly.
11292 The 2003-01-03 obstack.h change also needs merging.
11293 {end of changes requiring merging}
11294
11295 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11296 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11297 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11298 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11299 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11300 New files, imported from gnulib.
11301 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11302 above.
11303
11304 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11305 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11306 gnulib sources.
11307
11308 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11309 Add.
11310 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11311 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11312 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11313 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11314 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11315 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11316 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11317 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11318 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11319 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11320 (jm_PREREQ_ARGMATCH): Remove.
11321 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11322 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11323
11324 * src/system.h: Include <stdbool.h> unconditionally.
11325
11326 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11327 assuming at least C89 in the bitset code for some time now.
11328
11329 2003-03-03 Akim Demaille <akim@epita.fr>
11330
11331 * ro.po: New.
11332
11333 2003-03-02 Akim Demaille <akim@epita.fr>
11334
11335 * doc/bison.texinfo (Table of Symbols): Reactivate the
11336 documentation for %lex-param, and %parse-param.
11337
11338 2003-03-02 Akim Demaille <akim@epita.fr>
11339
11340 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11341 generate verbose error messages.
11342 Use the number of tokens as an upper bound in yytname, as it
11343 cannot be a non terminal.
11344
11345 2003-03-02 Akim Demaille <akim@epita.fr>
11346
11347 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11348 message.
11349
11350 2003-03-02 Akim Demaille <akim@epita.fr>
11351
11352 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11353 Use them to exercise yycheck overrun.
11354 Based on Andrew Suffield's grammar.
11355
11356 2003-03-02 Akim Demaille <akim@epita.fr>
11357
11358 Create tests/local.at for Bison generic testing macros.
11359
11360 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11361 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11362 This new file.
11363 * tests/calc.at (AT_CHECK_CALC): Adjust.
11364 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11365 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11366 * tests/local.at: here.
11367 (AT_COMPILE_CXX): Tags the tests using it as c++.
11368 Ignore the test if CXX is not functional.
11369
11370 2003-03-01 Paul Eggert <eggert@twinsun.com>
11371
11372 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11373 not loc->end, since loc->end might contain garbage and this leads
11374 to undefined behavior on some platforms.
11375 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11376 depend on *loc, so that the reader doesn't give the the false
11377 impression that *loc is initialized.
11378 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11379 does not survive the return.
11380
11381 2003-03-01 Akim Demaille <akim@epita.fr>
11382
11383 * src/scan-gram.l (code_start): Always initialize it when entering
11384 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11385 yylex invocation. An alternative would be making it static, but
11386 then it starts with the second %%'s beginning, instead of its end.
11387
11388 2003-02-28 Paul Eggert <eggert@twinsun.com>
11389
11390 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11391 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11392 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11393
11394 2003-02-26 Paul Eggert <eggert@twinsun.com>
11395
11396 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11397 Remove Sequent/Pyramid discussion (nobody uses them any more).
11398 Merge VMS and MS-DOS discussion; these ports may well be dead
11399 but let's keep mentioning them for now. Put <> around email
11400 addresses. Add copyright notice.
11401
11402 2003-02-24 Paul Eggert <eggert@twinsun.com>
11403
11404 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11405 to avoid collision with flex use of yylineno.
11406 Problem reported by Bruce Lilly in
11407 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11408 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11409 * data/yacc.c (yy_reduce_print): Likewise.
11410
11411 * config/depcomp: Sync with Automake 1.7.3.
11412
11413 2003-02-21 Akim Demaille <akim@epita.fr>
11414
11415 * data/lalr1.cc: Use temporary variables instead of casts to
11416 change integer types.
11417 Suggested by Paul Eggert.
11418
11419 2003-02-21 Akim Demaille <akim@epita.fr>
11420
11421 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11422 to avoid confusions with lalr1.cc's notion of Position.
11423 Suggested by Paul Eggert.
11424
11425 2003-02-20 Akim Demaille <akim@epita.fr>
11426
11427 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11428 before initial_columns.
11429 (location.hh): Use consistent variable names when defining the
11430 operator<<.
11431 Use "last" so that we subtract from Positions, not from unsigned.
11432
11433 2003-02-20 Akim Demaille <akim@epita.fr>
11434
11435 * data/lalr1.cc (position.hh): New subfile, including the extended
11436 and Doxygen'ed documentation of class Position.
11437 (location.hh): Use it.
11438 Document a` la Doxygen.
11439 With the help of Benoit Perrot.
11440
11441 2003-02-20 Akim Demaille <akim@epita.fr>
11442
11443 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11444 AT_YACC_IF.
11445 Redefine AT_YYERROR_SEES_LOC_IF using it.
11446 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11447 not defined.
11448 Don't use the location in yy::Parser::error_ and
11449 yy::Parser::print_ when not %locations.
11450 Activate more lalr1.cc tests.
11451
11452 2003-02-19 Akim Demaille <akim@epita.fr>
11453
11454 * data/lalr1.cc: When displaying a line number, be sure to make it
11455 an int.
11456
11457 2003-02-19 Akim Demaille <akim@epita.fr>
11458
11459 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11460 Remove, useless.
11461 (YYABORT, YYACCEPT, YYERROR): New.
11462 * tests/calc.at: Renable the lalr1.cc test.
11463
11464 2003-02-19 Akim Demaille <akim@epita.fr>
11465
11466 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11467 error recovery, mixing with/without pops and discarding of the
11468 lookahead.
11469 Exercise YYERROR.
11470 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11471
11472 2003-02-17 Paul Eggert <eggert@twinsun.com>
11473
11474 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11475 * tests/testsuite.at (AT_COMPILE): Use them.
11476 This fixes the testsuite problem reported by Robert Lentz in
11477 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11478
11479 2003-02-12 Paul Eggert <eggert@twinsun.com>
11480
11481 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11482 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11483 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11484 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11485 Check for malloc failure, for consistency with yacc.c.
11486 (yytname_size): Remove, for consistency with yacc.c.
11487
11488 The bug still remains in data/lalr1.cc, as I didn't have time
11489 to fix it there.
11490
11491 2003-02-06 Akim Demaille <akim@epita.fr>
11492
11493 * configure.ac (GXX): Rename as...
11494 (CXX): this, to keep the original Autoconf semantics.
11495 Require 2.57.
11496 * data/lalr1.cc: Fix b4_copyright invocations.
11497 If YYDEBUG is not defined, don't depend upon name_ being defined.
11498 (location.hh): Include string and iostream.
11499 (Position::filename): New member.
11500 (Position::Position ()): New.
11501 (operator<< (Position)): New.
11502 (operator- (Position, int)): New.
11503 (Location::first, Location::last): Rename as...
11504 (Location::begin, Location::end): these, to mock the conventional
11505 iterator names.
11506 (operator<< (Location)): New.
11507 * tests/atlocal.in (CXX): New.
11508 * tests/testsuite.at (AT_COMPILE_CXX): New.
11509 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11510 locations in a more synthetic way.
11511 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11512 lalr1.cc is used.
11513 Adjust the C locations to match those from Emacs: first column is
11514 column 0.
11515 Change all the expected results.
11516 Conform to the GCS: simplify the locations when applicable.
11517 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11518 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11519 these CPP macros with the m4 macros new defined by...
11520 (AT_CHECK_PUSHDEFS): this, i.e.:
11521 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11522 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11523 New macros.
11524 (AT_CHECK_POPDEFS): Undefine them.
11525 (AT_CHECK_CALC_LALR1_CC): New.
11526 Use it for the first lalr1.cc test.
11527
11528 2003-02-04 Akim Demaille <akim@epita.fr>
11529
11530 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11531 Location as is defined.
11532
11533 2003-02-04 Akim Demaille <akim@epita.fr>
11534
11535 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11536 name_ being defined.
11537
11538 2003-02-03 Paul Eggert <eggert@twinsun.com>
11539
11540 * src/gram.h (start_symbol): Remove unused decl.
11541
11542 Use more-consistent naming conventions for local vars.
11543
11544 * src/derives.c (derives_compute): Change type of local var from
11545 int to rule_number.
11546 * src/gram.c (grammar_rules_partial_print): Likewise.
11547 * src/print.c (print_core): Likewise.
11548 * src/reduce.c (reduce_grammar_tables): Likewise.
11549
11550 * src/gram.c (grammar_dump): Change name of item_number *
11551 local var from r to rp.
11552 * src/nullable.c (nullable_compute): Likewise.
11553
11554 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11555
11556 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11557 for symbol or symbol_number var.
11558 * src/reader.c (grammar_start_symbol_set): Likewise.
11559 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11560 Likewise.
11561 * src/state.c (transitions_to): Likewise.
11562 * src/state.h: Likewise.
11563 * src/tables.c (symbol_number_to_vector_number): Likewise.
11564
11565 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11566 char * var.
11567
11568 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11569 var.
11570
11571 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11572 var.
11573
11574 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11575 Use str, not s, for char * var. Use ch, not c, for character var.
11576 Use size for size var.
11577
11578 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11579 char * var.
11580 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11581 uniqstr var.
11582 * src/uniqstr.h: Likewise.
11583
11584 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11585 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11586 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11587 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11588 param to have same name as that of enum, so that we don't use
11589 "s" to stand for a non-state.
11590
11591 2003-02-02 Akim Demaille <akim@epita.fr>
11592
11593 * src/scan-skel.l: Scan more than one inert character per yylex
11594 invocation.
11595
11596 2003-02-01 Paul Eggert <eggert@twinsun.com>
11597
11598 Version 1.875a.
11599
11600 * po/LINGUAS: Add ms.
11601
11602 2003-01-30 Akim Demaille <akim@epita.fr>
11603
11604 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11605
11606 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11607
11608 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11609 of $1.
11610
11611 Changes in response to error report by S. Eken: GLR mode does not
11612 handle negative $ indices or $ indices in embedded rules correctly.
11613 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11614
11615 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11616 (b4_rhs_location): Ditto.
11617 (yyfill): New function to copy from stack tree into array
11618 incrementally.
11619 (yyuserAction): Modify to allow incremental move of semantic values
11620 to rhs array when in GLR mode.
11621 Define YYFILL to use in user-defined actions to fill semantic array
11622 as needed.
11623 Remove dummy use of yystack, as there is now a guaranteed use.
11624 (yydoAction): Modify to allow incremental move of semantic values
11625 to rhs array when in GLR mode.
11626 (yyresolveAction): Ditto.
11627 (yyglrShiftDefer): Update comment.
11628 (yyresolveStates): Use X == NULL for pointers, not !X.
11629 (yyglrReduce): Ditto.
11630 (yydoAction): Ditto
11631
11632 * tests/glr-regr1.at: Rename to ...
11633 * tests/glr-regression.at: Add new regression test for the problems
11634 described above (adapted from S. Eken).
11635 Update copyright notice.
11636 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11637 * tests/Makefile.am: Ditto.
11638
11639 2003-01-28 Paul Eggert <eggert@twinsun.com>
11640
11641 * data/lalr1.cc: Do not use @output_header_name@ unless
11642 b4_defines_flag is set. This fixes two bugs reported by
11643 Tim Van Holder in
11644 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11645 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11646
11647 2003-01-21 Paul Eggert <eggert@twinsun.com>
11648
11649 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11650 we don't need to worry about yyerrlab1 being reported as an
11651 "unused label" by non-GCC C compilers. The downside is that if
11652 locations are used then a couple of statements are duplicated each
11653 time YYERROR is invoked, but the upside is that the warnings
11654 should vanish.
11655 (yyerrlab1): Move code to YERROR.
11656 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11657 This reverts some of the 2002-12-27 change.
11658
11659 2003-01-17 Paul Eggert <eggert@twinsun.com>
11660
11661 * src/output.c (symbol_printers_output): Fix typo that led
11662 to core dump. Problem reported by Antonio Rus in
11663 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11664
11665 2003-01-13 Akim Demaille <akim@epita.fr>,
11666 Quoc Peyrot <chojin@lrde.epita.fr>,
11667 Robert Anisko <anisko_r@lrde.epita.fr>
11668
11669 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11670 when the stacks contain one element, as the loop would otherwise
11671 free the last state, and then use the top state (the one we just
11672 popped). This means that the initial elements will not be freed
11673 explicitly, as is the case in yacc.c; it is not a problem, as
11674 these elements have fake values.
11675
11676 2003-01-11 Paul Eggert <eggert@twinsun.com>
11677
11678 * NEWS: %expect-violations are now just warnings, reverting
11679 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11680 bootstrapping problem reported by Matthias Klose; see
11681 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11682 * src/conflicts.c (conflicts_print): Likewise.
11683 * tests/conflicts.at (%expect not enough, %expect too much,
11684 %expect with reduce conflicts): Likewise.
11685 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11686 that the warning is enabled if the number of conflicts changes
11687 (not necessarily increases).
11688
11689 * src/getargs.c (version): Update copyright year.
11690
11691 2003-01-09 Akim Demaille <akim@epita.fr>
11692
11693 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11694
11695 2003-01-08 Paul Eggert <eggert@twinsun.com>
11696
11697 * Makefile.maint (WGETFLAGS):
11698 New macro, containing "-C off" to disable proxy caches.
11699 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11700 (rel-check): Use $(WGET) instead of wget.
11701
11702 2003-01-06 Paul Eggert <eggert@twinsun.com>
11703
11704 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11705 the GLR paper of Scott, Johnstone and Hussain.
11706
11707 2003-01-04 Paul Eggert <eggert@twinsun.com>
11708
11709 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11710 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11711 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11712 (EXTRA_LIBRARIES): New var, for liby.a.
11713 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11714 (EXTRA_SCRIPTS): New var, for yacc.
11715
11716 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11717 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11718 Problem reported by Nelson H. F. Beebe.
11719
11720 2003-01-03 Paul Eggert <eggert@twinsun.com>
11721
11722 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11723 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11724 when compiling Bison 1.875's `bitset bset = obstack_alloc
11725 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11726
11727 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11728 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11729 grow to a huge size with typical invocation.
11730
11731 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11732 Use the pattern recommended by Autoconf 2.57, except also protect
11733 against double-definition.
11734 * src/system.h: Likewise.
11735 Portability issues reported by Nelson H. F. Beebe.
11736
11737 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11738 All uses changed. Provide a definition in both C and C++.
11739 (yytrue, yyfalse): Define even if defined (__cplusplus).
11740
11741 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11742 Reported by Nelson H. F. Beebe.
11743
11744 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11745
11746 2003-01-02 Paul Eggert <eggert@twinsun.com>
11747
11748 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11749 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11750 Bug reported by Nelson H. F. Beebe.
11751
11752 2003-01-01 Paul Eggert <eggert@twinsun.com>
11753
11754 * Version 1.875.
11755
11756 2002-12-30 Paul Eggert <eggert@twinsun.com>
11757
11758 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11759 Moved here from...
11760 (<INITIAL>","): Here. This causes stray "," to be treated
11761 more uniformly.
11762
11763 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11764 last brace in braced code when not in Yacc mode, for compatibility
11765 with Bison 1.35. This resurrects the 2001-12-15 patch to
11766 src/reader.c.
11767
11768 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11769 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11770
11771 2002-12-28 Paul Eggert <eggert@twinsun.com>
11772
11773 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11774 that of SYM's type. This fixes Debian bug 168069, reported by
11775 Thomas Olsson.
11776
11777 2002-12-28 Paul Eggert <eggert@twinsun.com>
11778
11779 Version 1.75f.
11780
11781 Switch back to the Yacc style of conflict reports, undoing some
11782 of the 2002-07-30 change.
11783 * doc/bison.texinfo (Understanding): Use Yacc style for
11784 conflict reports. Also, use new way of locating rules.
11785 * src/conflicts.c (conflict_report):
11786 Renamed from conflict_report_yacc, removing the old
11787 'conflict_report'. Translate the entire conflict report at once,
11788 so that we don't assume that "," has the same interpretation in
11789 all languages.
11790 (conflicts_output): Use Yacc-style conflict report for each state,
11791 instead of our more-complicated style.
11792 (conflicts_print): Use Yacc-style conflict report, except print
11793 the input file name when not emulating Yacc.
11794 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11795 Conflicted Reduction, %expect not enough, %expect too much,
11796 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11797 * tests/existing.at (GNU Cim Grammar): Likewise.
11798 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11799
11800 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11801 fatal): Don't invoke fflush; it's not needed and it might even be
11802 harmful for stdout, as stdout might not be open.
11803 * src/reduce.c (reduce_print): Likewise.
11804
11805 2002-12-27 Paul Eggert <eggert@twinsun.com>
11806
11807 Fix a bug where error locations were not being recorded correctly.
11808 This problem was originally reported by Paul Hilfinger in
11809 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11810
11811 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11812 top of the location stack's error locations.
11813 (yyerrlab): Set it. When discarding a token, push its location
11814 onto yylerrsp so that we don't lose track of the error's end.
11815 (yyerrlab1): Now is only the target of YYERROR, so that we can
11816 properly record the location of the action that failed. For GCC
11817 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11818 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11819 (yyerrlab2): New label, which yyerrlab now falls through to.
11820 Compute the error's location by applying YYLLOC_DEFAULT to
11821 the locations of all the symbols that went into the error.
11822 * doc/bison.texinfo (Location Default Action): Mention that
11823 YYLLOC_DEFAULT is also invoked for syntax errors.
11824 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11825 Error locations include the locations of all the tokens that were
11826 discarded, not just the last token.
11827
11828 2002-12-26 Paul Eggert <eggert@twinsun.com>
11829
11830 * src/files.c: Include quote.h.
11831 (compute_output_file_names): Warn if we detect conflicting
11832 outputs to the same file. This should catch the misunderstanding
11833 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11834
11835 * src/conflicts.c (conflicts_print): If the user specifies
11836 "%expect N", report an error if there are any reduce/reduce
11837 conflicts. This is what the manual says should happen.
11838 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11839 * tests/conflicts.at (%expect with reduce conflicts): New test.
11840
11841 Don't use m4_include on relative file names, as it doesn't work as
11842 desired if there happens to be a file with that name under ".".
11843
11844 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11845 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11846 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11847 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11848 * src/output.c (output_skeleton): Use full path names when
11849 specifying a file to include; don't rely on include path, as
11850 it's unreliable when the working file contains a file with
11851 that name.
11852
11853 2002-12-25 Paul Eggert <eggert@twinsun.com>
11854
11855 Remove obsolete references to bison.simple and bison.hairy.
11856 Problem mentioned by Aubin Mahe in
11857 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11858 * data/glr.c: Comment fix.
11859 * doc/bison.1: Remove references. Also, mention "yacc".
11860
11861 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11862 with -g option.
11863
11864 * src/parse-gram.y (declaration): Use enum "report_states" rather
11865 than its numeric value 1.
11866
11867 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11868 opening a new one. This fixes Debian bug 165349, reported by
11869 Bruce Stephens.
11870
11871 2002-12-24 Paul Eggert <eggert@twinsun.com>
11872
11873 Version 1.75e.
11874
11875 * Makefile.maint (cvs-update): Don't assume that the shell
11876 supports $(...), as Solaris sh doesn't.
11877
11878 * src/parse-gram.y (lloc_default): Remove test for empty
11879 nonterminals at the end, since it didn't change the result.
11880
11881 2002-12-24 Paul Eggert <eggert@twinsun.com>
11882
11883 If the user does not define YYSTYPE as a macro, Bison now declares it
11884 using typedef instead of defining it as a macro. POSIX requires this.
11885 For consistency, YYLTYPE is also declared instead of defined.
11886
11887 %union directives can now have a tag before the `{', e.g., the
11888 directive `%union foo {...}' now generates the C code
11889 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11890 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11891 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11892 instead of `yyltype'.
11893
11894 `yystype' and `yyltype' are now obsolescent macros instead of being
11895 typedefs or tags; they are no longer documented and will be
11896 withdrawn in a future release.
11897
11898 * data/glr.c (b4_location_type): Remove.
11899 (YYSTYPE): Renamed from yystype.
11900 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11901 (struct YYLTYPE): Renamed from struct yyltype.
11902 (YYLTYPE): Renamed from yyltype.
11903 (yyltype, yystype): New (and obsolescent) macros,
11904 for backward compatibility.
11905 * data/yacc.c: Likewise.
11906
11907 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11908 does not specify a union tag. This is for compatibility with
11909 Solaris 9 yacc.
11910
11911 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11912 const *, since it is now modified by stripping surrounding { }.
11913 (current_braced_code): Remove.
11914 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11915 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11916 trailing " {...}". Now of type <chars>.
11917 (grammar_declaration): Adjust to bundled tokens.
11918 (code_content): Remove; stripping is now done by add_param.
11919 (print_token_value): Print contents of bundled tokens.
11920 (token_name): New function.
11921
11922 * src/reader.h (braced_code, current_braced_code): Remove.
11923 (token_name): New decl.
11924
11925 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11926 token_type, not braced_code code_kind. All uses changed.
11927 (SC_PRE_CODE): New state, for scanning after a keyword that
11928 has (or usually has) an immediately-following braced code.
11929 (token_type): New local var, to keep track of which token type
11930 to return when scanning braced code.
11931 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11932 <INITIAL>"%parse-param", <INITIAL>"%printer",
11933 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11934 instead of returning a token type immediately.
11935 (<INITIAL>"{"): Set token type.
11936 (<SC_BRACED_CODE>"}"): Use it.
11937 (handle_action_dollar, handle_action_at): Now returns bool
11938 indicating success. Fail if ! current_rule; this prevents a core dump.
11939 (handle_symbol_code_dollar, handle_symbol_code_at):
11940 Remove; merge body into caller.
11941 (handle_dollar, handle_at): Complain in invalid contexts.
11942
11943 * NEWS, doc/bison.texinfo: Document the above.
11944 * NEWS: Fix years and program names in copyright notice.
11945
11946 2002-12-17 Paul Eggert <eggert@twinsun.com>
11947
11948 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11949 Reporting, Table of Symbols): Omit mentions of %lex-param and
11950 %parse-param from the documentation for now.
11951
11952 2002-12-15 Paul Eggert <eggert@twinsun.com>
11953
11954 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11955 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11956 lookahead symbol, and which sets yychar in parser actions) and it
11957 disagreed with the Bison documentation. Bug
11958 reported by Andrew Walrond.
11959
11960 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11961 as the caller now does that.
11962 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11963 (YYEMPTY): Parenthesize right hand side, since others use it.
11964 (yyparse): Don't assume that our generated code is the only code
11965 that sets yychar.
11966
11967 2002-12-13 Paul Eggert <eggert@twinsun.com>
11968
11969 Version 1.75d.
11970
11971 POSIX requires a "yacc" command.
11972 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11973 (MOSTLYCLEANFILES): Add yacc.
11974 (yacc): New rule.
11975 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11976 as an alias for bison y.
11977
11978 * po/LINGUAS: Add da.
11979
11980 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11981 problem with latest <getopt.h>.
11982 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11983
11984 * doc/fdl.texi: Upgrade to 1.2.
11985 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11986 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11987 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11988 gnulib.
11989 * config/install-sh: Sync with autotools.
11990
11991 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11992 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11993 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11994 locations are requested.
11995 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11996 locations are requested.
11997
11998 2002-12-12 Paul Eggert <eggert@twinsun.com>
11999
12000 Remove unportable casts and storage allocation tricks.
12001 While we're at it, remove almost all casts, since they
12002 usually aren't needed and are a sign of trouble.
12003
12004 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
12005
12006 * src/derives.c (derives_compute): Do not subtract NTOKENS from
12007 the pointer DSET returned by malloc; this isn't portable.
12008 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
12009 Similarly for DERIVES.
12010 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
12011 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
12012 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
12013
12014 * src/derives.c (derives_compute): Do not bother invoking
12015 int_of_rule_number, since rule numbers are integers.
12016
12017 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
12018 rather than XMALLOC (char, N).
12019
12020 * src/files.c (filename_split): Rewrite to avoid cast.
12021
12022 * src/gram.h (symbol_number_as_item_number,
12023 item_number_as_symbol_number, rule_number_as_item_number,
12024 item_number_as_rule_number):
12025 Now inline functions rather than macros, to avoid casts.
12026 * src/state.h (state_number_as_int): Likewise.
12027 * src/tables.c (state_number_to_vector_number,
12028 symbol_number_to_vector_number): Likewise.
12029
12030 * src/gram.h (int_of_rule_number): Remove; no longer used.
12031
12032 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
12033 since the resulting storage is always stored into.
12034
12035 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
12036 where it's needed.
12037
12038 * src/muscle_tab.c (muscle_m4_output):
12039 Now inline. Return bool, not int.
12040 * src/state.c (state_compare): Likewise.
12041 * src/symtab.c (symbol_check_defined,
12042 symbol_check_alias_consistency, symbol_pack, symbol_translation,
12043 hash_compare_symbol, hash_symbol):
12044 Likewise.
12045 * src/uniqstr.c (uniqstr_print): Likewise.
12046 * src/muscle_tab.c (muscle_m4_output_processor):
12047 New function, to avoid casts.
12048 * src/state.c (state_comparator, stage_hasher): Likewise.
12049 * src/symtab.c (symbol_check_defined_processor,
12050 symbol_check_alias_consistency_processor, symbol_pack_processor,
12051 symbol_translation_processor, hash_symbol_comparator,
12052 hash_symbol_hasher): Likewise.
12053 * src/uniqstr.c (uniqstr_print_processor): Likewise.
12054 * src/muscle_tab.c (muscles_m4_output):
12055 Use new functions instead of casting old functions unportably.
12056 * src/state.c (state_hash_new): Likewise.
12057 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
12058 symbols_token_translations_init):
12059 Likewise.
12060 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
12061
12062 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
12063 var instead of casting to long, to avoid casts.
12064 (prepare_states): Use MALLOC rather than alloca, so that we don't
12065 have to worry about alloca.
12066 * src/state.c (state_hash_lookup): Likewise.
12067
12068 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
12069 local var instead of casting to unsigned char, to avoid casts.
12070
12071 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
12072 STATE_ALLOC): Remove.
12073 (transitions_new, errs_new, reductions_new, state_new): Use malloc
12074 rather than calloc, and use offsetof to avoid allocating slightly
12075 too much storage.
12076 (state_new): Initialize all members.
12077
12078 * src/state.c (state_hash): Use unsigned accumulator, not signed.
12079
12080 * src/symtab.c (symbol_free): Remove; unused.
12081 (symbol_get): Remove cast in lhs of assignment.
12082 (symbols_do): Now static. Accept generic arguments, not
12083 hashing-related ones.
12084
12085 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
12086 (symbol_processor): Remove.
12087 (symbols_do): Remove decl; now static.
12088
12089 * src/system.h (alloca): Remove; decl no longer needed.
12090 (<stddef.h>): Include, for offsetof.
12091 (<inttypes.>, <stdint.h>): Include if available.
12092 (uintptr_t): New type, if system lacks it.
12093 (CALLOC, MALLOC, REALLOC): New macros.
12094 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
12095 new macros.
12096
12097 * src/tables.c (table_size): Now int, to pacify GCC.
12098 (table_grow, table_ninf_remap): Use signed table size.
12099 (save_row): Don't bother initializing locals when not needed.
12100 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
12101 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
12102
12103 * src/vcg.h: Correct misspellings.
12104
12105 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
12106
12107
12108 * src/getargs.c (getargs): Don't assume EOF == -1.
12109
12110 2002-12-09 Paul Eggert <eggert@twinsun.com>
12111
12112 Change identifier spellings to avoid collisions with names
12113 that are reserved by POSIX.
12114
12115 Don't use names ending in _t, since POSIX reserves them.
12116 For consistency, remove _e and _s endings -- they're weren't
12117 needed to remove ambiguity. All uses changed.
12118 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
12119 turn was just renamed from struniq_t.
12120 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
12121 which in turn was just renamed from struniq_processor_t.
12122 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
12123 in turn was renamed from hash_compare_struniq_t.
12124 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
12125 (state_list): Renamed from state_list_t.
12126 * src/assoc.h (assoc): Renamed from assoc_t.
12127 * src/conflicts.c (enum conflict_resolution): Renamed from
12128 enum conflict_resolution_e.
12129 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
12130 (rule_list): Renamed from rule_list_t.
12131 * src/getargs.h (enum trace): Renamed from enum trace_e.
12132 (enum report): Renamed from enum report_e.
12133 * src/gram.h (item_number): Renamed from item_number_t.
12134 (rule_number): Renamed from rule_number_t.
12135 (struct rule_s): Remove the "rule_s" part; not used.
12136 (rule): Renamed from rule_t.
12137 (rule_filter): Renamed from rule_filter_t.
12138 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
12139 (goto_list): Renamed from goto_list_t.
12140 * src/lalr.h (goto_number): Renamed from goto_number_t.
12141 * src/location.h (location): Renamed from location_t.
12142 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
12143 and moved here from:
12144 * src/muscle_tab.h (muscle_entry_t): here.
12145 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
12146 (rule_list): Renamed from rule_list_t.
12147 * src/print_graph.c (static_graph): Renamed from graph.
12148 * src/reader.h (braced_code): Renamed from braced_code_t.
12149 Remove brace_code_e tag.
12150 * src/relation.h (relation_node): Renamed from relation_node_t.
12151 (relation_nodes): Renamed from relation_nodes_t.
12152 (relation): Renamed from relation_t.
12153 * src/state.h (state_number): Renamed from state_number_t.
12154 (struct state): Renamed from struct state_s.
12155 (state): Renamed from state_t.
12156 (transitions): Renamed from transitions_t. Unused (and
12157 misspelled) transtion_s tag removed.
12158 (errs): Renamed from errs_t. Unused errs_s tag removed.
12159 (reductions): Renamed from reductions_t. Unused tag
12160 reductions_s removed.
12161 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
12162 (struct symbol_list): Renamed from struct symbol_list_s.
12163 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
12164 (struct symbol): Renamed from struct symbol_s.
12165 (symbol): Renamed from symbol_t.
12166 * src/tables.c (vector_number): Renamed from vector_number_t.
12167 (action_number): Renamed from action_t.
12168 * src/tables.h (base_number): Renamed from base_t.
12169 * src/vcg.h (enum color): Renamed from enum color_e.
12170 (enum textmode): Renamed from enum textmode_e.
12171 (enum shape): Renamed from enum shape_e.
12172 (struct colorentry): Renamed from struct colorentry_s.
12173 (struct classname): Renamed from struct classname_s.
12174 (struct infoname): Renamed from struct infoname_s.
12175 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
12176 (enum decision): Renamed from enum decision_e.
12177 (enum orientation): Renamed from enum orientation_e.
12178 (enum alignment): Renamed from enum alignment_e.
12179 (enum arrow_mode): Renamed from enum arrow_mode_e.
12180 (enum crossing_type): Renamed from enum crossing_type_e.
12181 (enum view): Renamed from enum view_e.
12182 (struct node): Renamed from struct node_s.
12183 (node): Renamed from node_t.
12184 (enum linestyle): Renamed from enum linestyle_e.
12185 (enum arrowstyle): Renamed from enum arrowstyle_e.
12186 (struct edge): Renamed from struct edge.
12187 (edge): Renamed from edge_t.
12188 (struct graph): Renamed from struct graph_s.
12189 (graph): Renamed from graph_t.
12190 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
12191 Rename value_t -> value.
12192 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
12193 value_t_as_yystype -> value_as_yystype.
12194
12195 Don't include <errno.h> in the mainstream code, since it
12196 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
12197 * lib/get-errno.c, lib/get-errno.h: New files.
12198 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
12199 get-errno.c.
12200 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
12201 * src/output.c (output_skeleton): Likewise.
12202 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
12203 instead of errno.
12204 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
12205 Likewise.
12206 (handle_action_dollar, handle_action_at): Likewise.
12207 * src/system.h: Do not include <errno.h>.
12208 (TAB_EXT): Renamed from EXT_TAB.
12209 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
12210
12211 Avoid str[a-z]*, since <string.h> reserves that name space.
12212 Change all instances of "struniq" in names to "uniqstr", and
12213 likewise for "STRUNIQ" and "UNIQSTR".
12214 * src/uniqstr.c: Renamed from src/struniq.c.
12215 * src/uniqstr.h: Renamed from src/struniq.h.
12216 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
12217 * src/files.c (strsuffix): Remove; unused.
12218 (concat2): Renamed from stringappend. Now static.
12219 * src/files.h (strsuffix, stringappend): Remove; unused.
12220 * src/parse-gram.y (<chars>): Renamed from <string>.
12221 (<uniqstr>): Renamed from <struniq>.
12222 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12223 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12224 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12225 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12226 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12227 (N_EXPAND): Renamed from N_STRETCH.
12228
12229 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12230 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12231 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12232 Remove; unused.
12233 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12234 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12235 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12236 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12237 (BASE_MAXIMUM): Renamed from BASE_MAX.
12238 (BASE_MINIMUM): Renamed from BASE_MIN.
12239 (ACTION_MAX): Remove; unused.
12240 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12241 Unnecessary casts removed from above defines.
12242
12243
12244 Fix misspelling in names.
12245 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12246 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12247 G_NODE_ALIGNEMENT.
12248
12249
12250 * lib/timevar.c (timevar_report): Renamed from time_report,
12251 for consistency with other names.
12252 * lib/timevar.h (timevar_report): New decl.
12253 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12254
12255
12256 Sort include-file uses.
12257
12258 Reorder all include files under src to be in the order "system.h".
12259 then the ../lib include files in angle brackets (alphabetized),
12260 then the . include files in double-quotes (alphabetized). Fix
12261 dependency breakages encountered in this process, as follows:
12262 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12263 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12264 * src/state.h: Include "symtab.h".
12265
12266 2002-12-08 Paul Eggert <eggert@twinsun.com>
12267
12268 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12269 since this causes problems when __file__ contains character
12270 sequences like "@" that are treated specially by src/scan-skel.l.
12271 Instead, just use the file's basename. This fixes the bug
12272 reported by Martin Mokrejs in
12273 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12274
12275 2002-12-06 Paul Eggert <eggert@twinsun.com>
12276
12277 Add support for rules that do not have trailing semicolons, as
12278 POSIX requires. Improve the quality of locations in Bison
12279 diagnostics.
12280
12281 * src/location.c: Include <quotearg.h>.
12282 (empty_location): Now const.
12283 (location_print): New function. Follow the recommendation of the
12284 GNU Coding Standards for locations that span file boundaries.
12285 * src/location.h: Do not include <quotearg.h>; no longer needed.
12286 (boundary): New type.
12287 (location_t): Use it. This allows locations to span file boundaries.
12288 All member uses changed: file -> start.file or end.file (as needed),
12289 first_line -> start.line, first_column -> start.column,
12290 last_line -> end.line, last_column -> end.column.
12291 (equal_boundaries): New function.
12292 (LOCATION_RESET, LOCATION_STEP): Remove.
12293 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12294 (empty_location): Now const.
12295 (location_print): New decl.
12296 * src/parse-gram.y (lloc_default): New function, which handles
12297 empty locations more accurately.
12298 (YYLLOC_DEFAULT): Use it.
12299 (%token COLON): Remove.
12300 (%token ID_COLON): New token.
12301 (rules): Use it.
12302 (declarations, rules): Remove trailing semicolon.
12303 (declaration, rules_or_grammar_declaration):
12304 Allow empty (";") declaration.
12305 (symbol_def): Remove empty actions; no longer needed.
12306 (rules_or_grammar_declaration): Remove trailing semicolon.
12307 (semi_colon.opt): Remove.
12308 * src/reader.h: Include location.h.
12309 (scanner_cursor): New decl.
12310 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12311 rolling our own.
12312 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12313 of *loc.
12314 (STEP): Remove. No longer needed, now that adjust_location does
12315 the work. All uses removed.
12316 (scanner_cursor): New var.
12317 (adjust_location): Renamed from extend_location. It now sets
12318 *loc and adjusts the scanner cursor. All uses changed.
12319 Don't bother testing for CR.
12320 (handle_syncline): Remove location arg; now updates scanner cursor.
12321 All callers changed.
12322 (unexpected_end_of_file): Now accepts start boundary of token or
12323 comment, not location. All callers changed. Update scanner cursor,
12324 not the location.
12325 (SC_AFTER_IDENTIFIER): New state.
12326 (context_state): Renamed from c_context. All uses changed.
12327 (id_loc, code_start, token_start): New local vars.
12328 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12329 processing of Yacc white space and equivalents here.
12330 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12331 instead of returning ID immediately, since we need to search for
12332 a subsequent colon.
12333 (<INITIAL>"'", "\""): Save token_start.
12334 (<INITIAL>"%{", "{", "%%"): Save code_start.
12335 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12336 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12337 BEGIN context_state at end, not INITIAL.
12338 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12339 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12340 Return correct token start.
12341 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12342 the start of a character, string or multiline comment is found.
12343 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12344 Reduction): Adjust reported locations to match the more-precise
12345 results now expected.
12346 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12347 * tests/reduce.at (Useless Rules, Reduced Automaton,
12348 Underivable Rules): Likewise.
12349 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12350 or "|"' now that so many other tokens are allowed by the new grammar.
12351
12352 * src/complain.h (current_file): Remove duplicate decl;
12353 current_file is now owned by files.h.
12354 * src/complain.c, src/scan-gram.l: Include files.h.
12355
12356 2002-12-06 Paul Eggert <eggert@twinsun.com>
12357
12358 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12359 promotes to int; it might be unsigned int.
12360 * data/yacc.c (yy_reduce_print): Likewise.
12361
12362 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12363 be #defined in the prologue, not in the Bison declarations.
12364 This fixes Debian Bug 102878, reported by Shaul Karl.
12365
12366 2002-12-02 Paul Eggert <eggert@twinsun.com>
12367
12368 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12369 * lib/strtoul.c: New file, from gnulib.
12370 This fixes a porting bug reported by Peter Klein in
12371 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12372
12373 2002-11-30 Paul Eggert <eggert@twinsun.com>
12374
12375 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12376 and put only a forward declaration in the prologue. This is for
12377 consistency with the other scanner helper functions.
12378
12379 Type clashes now generate warnings, not errors, since it
12380 appears that POSIX may allow some grammars with type clashes.
12381 * src/reader.c (grammar_current_rule_check): Warn about
12382 type clashes instead of complaining.
12383 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12384
12385 Add Yacc library, since POSIX requires it.
12386 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12387 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12388 * lib/main.c, lib/yyerror.c: New files.
12389
12390 gram_error can be static; it need not be extern.
12391 * src/reader.h (gram_error): Remove decl.
12392 * src/parse-gram.y (gram_error): Now static. Add static decl.
12393 (print_token_value): Omit parameter names from forward decl,
12394 for consistency.
12395
12396 2002-11-29 Paul Eggert <eggert@twinsun.com>
12397
12398 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12399 be declared before being used. E.g., one should typically
12400 declare them in the prologue. Use GNU coding style in examples.
12401 Put "const" consistently after the type it modifies. Mention
12402 that C99 supports "inline". Mention that yyerror traditionally
12403 returns "int".
12404
12405 %parse-param and %lex-param now take just one argument, the
12406 declaration; the argument name is deduced from the declaration.
12407
12408 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12409 Reporting, Table of Symbols): Document this.
12410 * src/parse-gram.y (add_param): New function.
12411 (COMMA): Remove.
12412 (declaration): Implement new rule for %parse-param and %lex-param.
12413 * src/scan-gram.l: "," now elicits a warning, rather than being
12414 a token; this is more compatible with byacc.
12415 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12416
12417 2002-11-27 Paul Eggert <eggert@twinsun.com>
12418
12419 Rename identifiers to avoid real and potential collisions.
12420
12421 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12422 to avoid collision with lex macro described by Bruce Lilly in
12423 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12424 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12425 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12426 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12427 All uses changed.
12428 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12429 The name "yycontrol" violates the name space rules, and this stuff
12430 wasn't being used anyway.
12431 (input): Remove action; this stuff wasn't being used.
12432 (gram_error): Rename local variable yylloc -> loc.
12433 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12434 (YY_DECL): Don't use "yy" at start of local variables.
12435 All uses changed, e.g., yylloc -> loc.
12436 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12437 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12438 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12439 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12440
12441 * src/parse-gram.y (gram_error): loc is now const *.
12442 * src/reader.h (gram_error): Likewise.
12443
12444 2002-11-24 Paul Eggert <eggert@twinsun.com>
12445
12446 Version 1.75c.
12447
12448 * tests/actions.at (Actions after errors): Use an output format
12449 more similar to that of the Printers and Destructors test.
12450 Test the position of the ';' token too.
12451 (Printers and Destructors): Likewise.
12452 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12453 unnecessarily alarming people when the test fails.
12454
12455 * data/yacc.c (yyerrlab1): Move this label down, so that the
12456 parser does not discard the lookahead token if the user code
12457 invokes YYERROR. This change is required for POSIX conformance.
12458
12459 * lib/error.c: Sync with gnulib.
12460
12461 2002-11-22 Paul Eggert <eggert@twinsun.com>
12462
12463 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12464 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12465 * lib/xmalloc.c: Likewise.
12466
12467 2002-11-20 Paul Eggert <eggert@twinsun.com>
12468
12469 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12470
12471 2002-11-20 Paul Eggert <eggert@twinsun.com>
12472
12473 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12474 should use `if (! x) abort ();' rather than `assert (x);', and
12475 anyway it's one less thing to worry about configuring.
12476
12477 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12478 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12479 and replace all instances of assert with abort.
12480 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12481 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12482
12483 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12484 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12485 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12486 hash_find_entry, hash_rehash, hash_insert): Likewise.
12487 * src/conflicts.c (resolve_sr_conflict): Likewise.
12488 * src/lalr.c (set_goto_map, map_goto): Likewise.
12489 * src/nullable.c (nullable_compute): Likewise.
12490 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12491 * src/reader.c (packgram, reader): Likewise.
12492 * src/state.c (state_new, state_free, state_transitions_set,
12493 state_reduction_find): Likewise.
12494 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12495 symbol_pack): Likewise.
12496 * src/tables.c (conflict_row, pack_vector): Likewise.
12497 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12498 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12499 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12500 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12501
12502 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12503 (ARGMATCH_CONSTRAINT): New macro.
12504 (ARGMATCH_ASSERT): Use it.
12505
12506 * src/system.h (verify): New macro.
12507 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12508 rather than assert.
12509 * src/tables.c (tables_generate): Likewise.
12510
12511 * src/struniq.c (struniq_assert): Now returns void, and aborts
12512 if the assertion is false.
12513 (struniq_assert_p): Remove.
12514 * src/struniq.h: Likewise.
12515
12516 2002-11-18 Paul Eggert <eggert@twinsun.com>
12517
12518 * data/glr.c (yygetLRActions): Replace `yyindex' with
12519 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12520 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12521 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12522
12523 2002-11-18 Akim Demaille <akim@epita.fr>
12524
12525 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12526 space.
12527 From Tim Van Holder.
12528
12529 2002-11-17 Paul Eggert <eggert@twinsun.com>
12530
12531 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12532 to "SyntaxError" for consistency with my 2002-11-15 change.
12533
12534 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12535 not define to {}, since this breaks the common use of `YYDPRINTF
12536 ((...));' if a single statement is desired (e.g. before `else').
12537 Work around GCC warnings by surrounding corresponding calls with
12538 {} if needed.
12539 (yyhasResolvedValue): Remove unused function.
12540 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12541 loop body.
12542 (yyreportSyntaxError): Renamed from yyreportParseError.
12543 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12544 All uses changed.
12545 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12546 extern when possible. Remove unused initializations.
12547
12548 2002-11-16 Akim Demaille <akim@epita.fr>
12549
12550 Augment the similarity between GLR and LALR traces.
12551
12552 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12553 (YY_REDUCE_PRINT): New.
12554 (yyparse): Use them.
12555 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12556 YYDPRINT here.
12557 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12558 state reached after the reduction/recovery, since...
12559 (yyparse, yyprocessOneStack): Report the state we are entering in.
12560
12561 2002-11-16 Akim Demaille <akim@epita.fr>
12562
12563 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12564 Add support for --trace=skeleton.
12565 * src/scan-skel.l: %option debug.
12566 Scan strings of non-@ or \n instead of character by character.
12567 (scan_skel): Handle trace_skeleton.
12568 (QPUTS): New.
12569 (@output_parser_name@, @output_header_name@): ``Restore'' their
12570 support (used to be M4 macros).
12571 * data/yacc.c: Quote larger chunks, a la glr.c.
12572 * data/lalr1.cc: Likewise.
12573 The header guards are no longer available, so use some other
12574 string than `YYLSP_NEEDED'.
12575
12576 2002-11-16 Akim Demaille <akim@epita.fr>
12577
12578 Make the ``Printers and Destructors'' test more verbose, taking
12579 `yacc.c''s behavior as (possibly wrong) reference.
12580
12581 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12582 instead of fprint on stdout.
12583 Set and report the last_line of the symbols.
12584 Consistently display values and locations.
12585
12586 2002-11-16 Paul Eggert <eggert@twinsun.com>
12587
12588 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12589
12590 2002-11-15 Paul Eggert <eggert@twinsun.com>
12591
12592 * tests/actions.at (Actions after errors): New test case.
12593
12594 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12595 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12596 tests/action.at, tests/calc.at, tests/conflicts.at,
12597 tests/cxx-type.at, tests/regression.at:
12598 "parse error" -> "syntax error" for POSIX compatibility.
12599 "parsing stack overflow..." -> "parser stack overflow" so
12600 that code matches Bison documentation.
12601
12602 2002-11-15 Akim Demaille <akim@epita.fr>
12603
12604 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12605 take two BRACED_CODE, not two string_content.
12606 Free the scanner's obstack when we are done.
12607 (code_content): New.
12608 * tests/calc.at: Adjust.
12609 * doc/bison.texinfo: Adjust.
12610 Also, make sure to include the `,' for these declarations.
12611
12612 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12613
12614 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12615 definition; avoids potential autoreconf problems.
12616
12617 2002-11-15 Akim Demaille <akim@epita.fr>
12618
12619 Always check the value returned by yyparse.
12620
12621 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12622 returned by yyparse.
12623 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12624 Adjust calls.
12625 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12626 returned by yyparse.
12627
12628 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12629
12630 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12631 on input.at test.
12632
12633 2002-11-14 Paul Eggert <eggert@twinsun.com>
12634
12635 * src/output.c (output_skeleton): Call xfopen instead of
12636 duplicating xfopen's body.
12637
12638 Fix bugs reported by Nelson H. F. Beebe in
12639 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12640
12641 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12642 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12643 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12644 file twice in the grammar, as an extra check.
12645
12646 * tests/input.at (Torturing the Scanner): Surround the
12647 backslash-newline tests with "#if 0", to make it less likely that
12648 we'll run into compiler bugs. Bring back solitary \ inside
12649 comment, but add a closing comment to work around HP C bug. Don't
12650 test backslash-newline in C character constant.
12651
12652 2002-11-14 Akim Demaille <akim@epita.fr>
12653
12654 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12655 status of the compiler.
12656 Calling `exit 1' is no longer needed.
12657 Reported by Nelson H. F. Beebe.
12658
12659 2002-11-14 Akim Demaille <akim@epita.fr>
12660
12661 * tests/atlocal.in (CPPFLAGS): We have config.h.
12662 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12663 New.
12664 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12665 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12666 * tests/regression.at, tests/torture.at: Use them for all the
12667 grammars that are to be compiled.
12668 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12669 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12670 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12671
12672 2002-11-14 Akim Demaille <akim@epita.fr>
12673
12674 * doc/bison.texinfo: Various formatting changes (alignments in
12675 samples, additional @group/@end group, GCS in samples.
12676 Use @deffn instead of simple @table to define the directives,
12677 macros, variables etc.
12678
12679 2002-11-13 Paul Eggert <eggert@twinsun.com>
12680
12681 Fix some bugs reported by Albert Chin-A-Young in
12682 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12683
12684 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12685 -o c"; the HP C compiler chatters during compilation.
12686 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12687 * tests/headers.at (export YYLTYPE): Likewise.
12688
12689 * tests/input.at (Torturing the Scanner): Remove lines containing
12690 solitary backslashes, as they tickle a bug in the HP C compiler.
12691
12692 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12693 comments, since they're not portable. Use GNU coding style.
12694
12695 2002-11-13 Akim Demaille <akim@epita.fr>
12696
12697 * data/yacc.c: Leave bigger chunks of quoted text.
12698 (YYDSYMPRINTF): New.
12699 Use it to report symbol activities.
12700 * data/glr.c (YYDSYMPRINTF): New.
12701 Use it.
12702
12703 2002-11-12 Paul Eggert <eggert@twinsun.com>
12704
12705 Version 1.75b.
12706
12707 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12708 (yyglrReduce): Return yyok, not 0.
12709 This should avoid the enumerated-type warnings reported
12710 by Nelson H. F. Beebe in
12711 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12712
12713 * lib/bbitset.h (BITSET_INLINE): Remove.
12714 * lib/bitset.h [! BITSET_INLINE]: Remove.
12715 (bitset_set, bitset_reset, bitset_test): Rename local vars
12716 to avoid shadowing warnings by GCC.
12717
12718 * data/glr.c (inline): Remove #define. It's the user's
12719 responsibility to #define it away, just like 'const'.
12720 This fixes one of the bugs reported by Nelson H. F. Beebe in
12721 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12722
12723 * Makefile.maint (po-check): Scan .l and .y files instead of the
12724 .c and the .h files that they generate. This fixes the bug
12725 reported by Tim Van Holder in:
12726 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12727 Look for N_ as well as for _. Try to avoid matching #define for
12728 N_ and _.
12729 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12730 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12731 * src/scan-gram.l: Revamp regular expressions so that " and '
12732 do not confuse xgettext.
12733
12734 * src/struniq.h (struniq_new): Do not declare the return type
12735 to be 'const'; this violates the C standard.
12736 * src/struniq.c (struniq_new): Likewise.
12737
12738 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12739
12740 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12741 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12742 linker.
12743
12744 2002-11-12 Akim Demaille <akim@epita.fr>
12745
12746 * Makefile.maint: Sync with Autoconf:
12747 (local_updates): New.
12748
12749 2002-11-12 Akim Demaille <akim@epita.fr>
12750
12751 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12752
12753 2002-11-12 Akim Demaille <akim@epita.fr>
12754
12755 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12756 locations.
12757
12758 2002-11-12 Akim Demaille <akim@epita.fr>
12759
12760 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12761 not yyvalue.
12762
12763 2002-11-12 Akim Demaille <akim@epita.fr>
12764
12765 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12766 Use it to test the GLR parser.
12767
12768 2002-11-12 Akim Demaille <akim@epita.fr>
12769
12770 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12771 defines it.
12772 * data/glr.c (yystos): New.
12773 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12774 (YYDSYMPRINT): New.
12775 (yyval): Don't define it, it is handled via M4.
12776 (yyrecoverParseError): Free verbosely the discarded symbols.
12777 * data/yacc.c (yysymprint): Remove, rather...
12778 (b4_yysymprint_generate): invoke.
12779 * data/c.m4 (b4_yysymprint_generate): New.
12780 Accept pointers as arguments, as opposed to the version from
12781 yacc.c.
12782 (b4_yydestruct_generate): Likewise.
12783 * tests/cations.at (Printers and Destructors): Use Bison directives
12784 instead of CPP macros.
12785 Don't rely on internal details.
12786
12787 2002-11-12 Akim Demaille <akim@epita.fr>
12788
12789 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12790 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12791 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12792 it against YYEMPTY and so forth), work on yytoken (i.e., set
12793 it to YYEMPTY etc.).
12794 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12795 (b4_symbol_actions): Remove.
12796 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12797 for 0, end-of-input.
12798
12799 2002-11-12 Akim Demaille <akim@epita.fr>
12800
12801 * doc/bison.texinfo (Destructor Decl): New.
12802
12803 2002-11-12 Akim Demaille <akim@epita.fr>
12804
12805 * src/tables.c (tables_generate): Use free for pointers that
12806 cannot be NULL, not XFREE.
12807 (pack_vector): Use assert, not fatal, for bound violations.
12808 * src/state.c (state_new): Likewise.
12809 * src/reader.c (reader): Likewise.
12810 * src/lalr.c (set_goto_map): Likewise.
12811 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12812 the file name.
12813
12814 2002-11-12 Akim Demaille <akim@epita.fr>
12815
12816 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12817 Restore.
12818 * src/scan-gram.l (last_string): Is global to the file, not to
12819 yylex.
12820 * src/parse-gram.y (input): Don't append the epilogue here,
12821 (epilogue.opt): do it here, and free the scanner's obstack.
12822 * src/reader.c (epilogue_set): Rename as...
12823 (epilogue_augment): this.
12824 * data/c.m4 (b4_epilogue): Defaults to empty.
12825
12826 2002-11-12 Akim Demaille <akim@epita.fr>
12827
12828 * src/getargs.c (long_options): Remove duplicates.
12829 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12830 Remove.
12831 * doc/bison.rnh: Remove.
12832 * doc/bison.texinfo (VMS Invocation): Remove.
12833
12834 2002-11-12 Akim Demaille <akim@epita.fr>
12835
12836 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12837 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12838
12839 Use struniq for symbols.
12840
12841 * src/symtab.h (symbol_t): The tag member is a struniq.
12842 (symbol_type_set): Adjust.
12843 * src/symtab.c (symbol_new): Takes a struniq.
12844 (symbol_free): Don't free the tag member.
12845 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12846 (hash_compare_symbol, hash_symbol): these.
12847 Use the fact that tags as struniqs.
12848 (symbol_get): Use struniq_new.
12849 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12850 Returns a strniq.
12851 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12852 and type members are struniqs.
12853 * src/reader.c (get_merge_function)
12854 (grammar_current_rule_merge_set): Adjust.
12855 (TYPE, current_type): Are struniq.
12856
12857 Use struniq for file names.
12858
12859 * src/files.h, src/files.c (infile): Split into...
12860 (grammar_file, current_file): these.
12861 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12862 * src/reduce.c (reduce_print): Likewise.
12863 * src/getargs.c (getargs): Likewise.
12864 * src/complain.h, src/complain.c: Likewise.
12865 * src/main.c (main): Call struniqs_new early enough to use it for
12866 file names.
12867 Don't free the input file name.
12868
12869 2002-11-12 Akim Demaille <akim@epita.fr>
12870
12871 * src/symtab.c (symbol_free): Remove dead deactivated code:
12872 type_name are properly removed.
12873 Don't use XFREE to free items that cannot be NULL.
12874 * src/struniq.h, src/struniq.c: New.
12875 * src/main.c (main): Initialize/free struniqs.
12876 * src/parse-gram.y (%union): Add astruniq member.
12877 (yyprint): Adjust.
12878 * src/scan-gram.l (<{tag}>): Return a struniq.
12879 Free the obstack bit that used to store it.
12880 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12881
12882 2002-11-11 Paul Eggert <eggert@twinsun.com>
12883
12884 Revamp to fix many (but not all) of the C- and M4-related quoting
12885 problems. Among other things, this fixes the Bison bug reported
12886 by Jan Hubicka when processing the Bash grammar; see:
12887 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12888
12889 Use new @ escapes consistently. Represent brackets with @{ and @}
12890 rather than @<:@ and @:>@, since this works a bit better with dumb
12891 editors like vi. Represent @ with @@, since @ is now consistently
12892 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12893 __ofile__, to avoid unexpected expansions. Similarly, use @output
12894 rather than #output.
12895
12896 * data/c.m4 (b4_copyright): Omit file name from comment, since
12897 the file name could contain "*/".
12898 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12899 be quoted. All uses changed.
12900
12901 * data/glr.c: Use new @ escapes consistently.
12902 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12903 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12904 Remove, since they couldn't handle arbitrary characters in file
12905 names.
12906 * data/lalr1.cc: Likewise.
12907 * data/yacc.c: Likewise.
12908
12909 * src/files.c (output_infix): Remove; all uses removed.
12910 * src/files.h: Likewise.
12911
12912 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12913 mishandled funny characters in file names, and anyway it isn't
12914 needed any more.
12915 * data/yacc.c: Likewise.
12916 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12917
12918 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12919 * data/yacc.c: Likewise.
12920
12921 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12922 strings now.
12923 (muscle_init): Quote filename as a C string.
12924 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12925 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12926 * src/output.c (escaped_file_name_output): New function.
12927 (prepare_symbols): Quote tokens for M4.
12928 (prepare): Don't insert output_infix, output_prefix,
12929 output_parser_name, output_header_name; this is now down by scan-skel.
12930 Insert skeleton as a C string.
12931
12932 * src/output.c (user_actions_output, symbol_destructors_output,
12933 symbol_printers_output): Quote filenames for C and M4.
12934 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12935
12936 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12937 escapes other than \\ and \'; this simplifies the code.
12938 (<SC_STRING>): Likewise, for \\ and \".
12939 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12940 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12941 Use new escapes @{ and @} for [ and ].
12942
12943 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12944 them with auto vars.
12945 Switch to new escape scheme, where @ is the escape character uniformly.
12946 Abort if a stray escape character is found. Avoid unbounded input
12947 buffer when parsing non-escaped text.
12948
12949 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12950 __oline__, #output, $@, and @{ do not have unintended meanings.
12951
12952 2002-11-09 Paul Eggert <eggert@twinsun.com>
12953
12954 Fix the test failure due to GCC warnings described in
12955 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12956 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12957 evaluate to 0 if it's impossible for NINF to be in the respective
12958 table.
12959 (yygetLRActions, yyrecoverParseError): Use them.
12960
12961 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12962 counted in the token inserted at end of file. Now takes
12963 location_t *, not location_t, so that the location can be
12964 adjusted. All uses changed.
12965
12966 * tests/regression.at (Invalid inputs): Adjust wording in
12967 diagnostic to match the new behavior.
12968
12969 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12970 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12971 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12972 abort ();'. This reduces the runtime of the "Many lookaheads"
12973 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12974 GCC 3.2.
12975
12976 2002-11-07 Paul Eggert <eggert@twinsun.com>
12977
12978 * src/parse-gram.y (CHARACTER): Remove unused token.
12979 All uses removed.
12980
12981 * src/scan-gram.l: Remove stack option. We no longer use the
12982 stack, since the stack was never deeper than 1; instead, use the
12983 new auto var c_context to record the stacked value.
12984
12985 Remove nounput option. At an unexpected end of file, we now unput
12986 the minimal input necessary to end cleanly; this simplifies the
12987 code.
12988
12989 Avoid unbounded token sizes where this is easy.
12990
12991 (unexpected_end_of_file): New function.
12992 Use it to systematize the error message on unexpected EOF.
12993 (last-string): Now auto, not static.
12994 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12995 (scanner_last_string_free): Remove; not used.
12996 (percent_percent_count): Move decl to just before use.
12997 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12998 not the (never otherwised-used) CHARACTER.
12999
13000 2002-11-07 Akim Demaille <akim@epita.fr>
13001
13002 Let yyerror always receive the msg as last argument, so that
13003 yyerror can be variadic.
13004
13005 * data/yacc.c (b4_yyerror_args): New.
13006 Use it when calling yyerror.
13007 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
13008 Use it when calling yyerror.
13009 * doc/bison.texinfo (Error Reporting): Adjust.
13010 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
13011 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
13012
13013 2002-11-06 Akim Demaille <akim@epita.fr>
13014
13015 #line should have quoted strings.
13016 Ideally, this should be done by m4_quotearg.
13017
13018 * src/scan-skel.l: Include quotearg.h.
13019 Quote __ofile__.
13020 * src/output.c (symbol_printers_output)
13021 (symbol_destructors_output): Quote the file name.
13022
13023 2002-11-06 Akim Demaille <akim@epita.fr>
13024
13025 * tests/regression.at (Invalid inputs): Adjust to the recent
13026 messages.
13027
13028 2002-11-06 Akim Demaille <akim@epita.fr>
13029
13030 Restore --no-lines.
13031 Reported by Jim Kent.
13032
13033 * data/c.m4 (b4_syncline): New.
13034 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
13035 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
13036 * src/output.c (user_actions_output): Likewise.
13037 (prepare): Define 'b4_synclines_flag'.
13038 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
13039
13040 2002-11-06 Akim Demaille <akim@epita.fr>
13041
13042 * src/main.c (main): Free `infile'.
13043 * src/scan-gram.l (handle_syncline): New.
13044 Recognize `#line'.
13045 * src/output.c (user_actions_output, symbol_destructors_output)
13046 (symbol_printers_output): Use the location's file name, not
13047 infile.
13048 * src/reader.c (prologue_augment, epilogue_set): Likewise.
13049
13050 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13051
13052 * src/tables.c (matching_state): Don't allow states to match if
13053 either has GLR conflict entries.
13054
13055 2002-11-05 Paul Eggert <eggert@twinsun.com>
13056
13057 * src/scan-gram.l: Use more accurate diagnostics, e.g.
13058 "integer out of range" rather than "invalid value".
13059 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
13060 accordingly.
13061
13062 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
13063 Also, remove one static variable in the scanner.
13064
13065 * src/scan-gram.l (braces_level): Now auto, not static.
13066 Initialize to zero if the compiler is being picky.
13067 (INITIAL): Clear braces_level instead of incrementing it.
13068 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
13069 as POSIX 1003.1-2001 requires.
13070 * src/system.h (IF_LINT): New macro, taken from coreutils.
13071 * configure.ac: Define "lint" if --enable-gcc-warnings.
13072
13073 2002-11-05 Akim Demaille <akim@epita.fr>
13074
13075 * src/scan-gram.l: When it starts with `%', complain about the
13076 whole directive, not just that `invalid character: %'.
13077
13078 2002-11-04 Akim Demaille <akim@epita.fr>
13079
13080 * Makefile.maint: Update from Autoconf.
13081 (update, cvs-update, po-update, do-po-update): New.
13082
13083 2002-11-04 Akim Demaille <akim@epita.fr>
13084
13085 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
13086 and yyerror.
13087 Have yyerror `use' its arguments.
13088 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
13089 returns true when location & yacc & pure & parse-param.
13090 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
13091
13092 2002-11-04 Akim Demaille <akim@epita.fr>
13093
13094 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
13095 clashes.
13096 * src/scan-gram.l: Use [\'] instead of ['] to pacify
13097 font-lock-mode.
13098 Use complain_at.
13099 Use quote, not quote_n since LOCATION_PRINT no longer uses the
13100 slot 0.
13101
13102 2002-11-03 Paul Eggert <eggert@twinsun.com>
13103
13104 * src/reader.c (get_merge_function, grammar_current_rule_check):
13105 Use consistent diagnostics for reporting type name clashes.
13106 Quote the types with <>, for consistency with Yacc.
13107 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
13108
13109 2002-11-03 Akim Demaille <akim@epita.fr>
13110
13111 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
13112 New.
13113 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
13114 (b4_parse_param): Remove.
13115 Use b4_identification.
13116 Propagate b4_pure_args where needed to pass them to yyerror.
13117 * data/glr.m4 (b4_parse_param): Remove.
13118 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
13119 (b4_lpure_formals): New.
13120 Use b4_identification.
13121 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
13122 b4_user_formals and b4_user_args.
13123 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
13124 (yyreportAmbiguity): When using a pure parser, also need
13125 the location, and the parse-params.
13126 Adjust callers.
13127 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
13128 When using a pure parser, also need the parse-params.
13129 Adjust callers.
13130 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
13131 (%pure-parser + %parse-param) LALR and GLR parsers.
13132 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
13133 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
13134 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
13135 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
13136 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
13137 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
13138 * doc/bison.texinfo: Untabify the whole file.
13139 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
13140 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
13141 (Error Reporting): Adjust to these new directives.
13142 Document %error-verbose, deprecate YYERROR_VERBOSE.
13143
13144 2002-11-03 Akim Demaille <akim@epita.fr>
13145
13146 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
13147 AT_CHECK_CALC_GLR invocations to use % directives, instead of
13148 command line options.
13149 * tests/cxx-type.at: Formatting changes.
13150
13151 2002-11-03 Paul Eggert <eggert@twinsun.com>
13152
13153 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
13154 to count columns correctly, and to check for invalid inputs.
13155
13156 Use mbsnwidth to count columns correctly. Account for tabs, too.
13157 Include mbswidth.h.
13158 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
13159 (extend_location): New function.
13160 (YY_LINES): Remove.
13161
13162 Handle CRLF in C code rather than in Lex code.
13163 (YY_INPUT): New macro.
13164 (no_cr_read): New function.
13165
13166 Scan UCNs, even though we don't fully handle them yet.
13167 (convert_ucn_to_byte): New function.
13168
13169 Handle backslash-newline correctly in C code.
13170 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
13171 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
13172 all uses changed.
13173 (tag, splice): New EREs. Do not allow NUL or newline in tags.
13174 Use {splice} wherever C allows backslash-newline.
13175 YY_STEP after space, newline, vertical-tab.
13176 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
13177
13178 (letter, id): Don't assume ASCII; e.g., spell out a-z.
13179
13180 ({int}, handle_action_dollar, handle_action_at): Check for integer
13181 overflow.
13182
13183 (YY_STEP): Omit trailing semicolon, so that it's more like C.
13184
13185 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
13186 as well as \000. Check for UCHAR_MAX, not 255.
13187 Allow \x with an arbitrary positive number of digits, as in C.
13188 Check for overflow here.
13189 Allow \? and UCNs, for compatibility with C.
13190
13191 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
13192 with quote slot used by complain_at.
13193
13194 * tests/input.at: Add tests for backslash-newline, m4 quotes
13195 in symbols, long literals, and funny escapes in strings.
13196
13197 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
13198 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
13199 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
13200 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
13201 * m4/mbswidth.m4: New file, from GNU coreutils.
13202
13203 * doc/bison.texinfo (Grammar Outline): Document // comments.
13204 (Symbols): Document that trigraphs have no special meaning in Bison,
13205 nor is backslash-newline allowed.
13206 (Actions): Document that trigraphs have no special meaning.
13207
13208 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
13209 no longer used.
13210
13211 2002-11-02 Paul Eggert <eggert@twinsun.com>
13212
13213 * src/reader.c: Don't include quote.h; not needed.
13214 (get_merge_function): Reword warning to be consistent with
13215 type clash diagnostic in grammar_current_rule_check.
13216
13217 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
13218 bug in trigraph handling.
13219
13220 * src/output.c (prepare_symbols): When printing token names,
13221 escape "[" as "@<:@" and likewise for "]".
13222
13223 * src/system.h (errno): Remove declaration, as we are now
13224 assuming C89 or better, and C89 guarantees errno.
13225
13226 2002-10-30 Paul Eggert <eggert@twinsun.com>
13227
13228 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13229 Check for close failures.
13230 * src/files.h (xfclose): Return void, not int, since it always
13231 returned zero.
13232 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13233 indicates one.
13234 * src/output.c (output_skeleton): Use xfclose rather than fclose
13235 and ferror. xfclose now checks ferror.
13236
13237 * data/glr.c (YYLEFTMOST_STATE): Remove.
13238 (yyreportTree): Use a stack-based leftmost state. This avoids
13239 our continuing battles with bogus warnings about initializers.
13240
13241 2002-10-30 Akim Demaille <akim@epita.fr>
13242
13243 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13244 #if.
13245
13246 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13247
13248 * tests/glr-regr1.at: New test for reported regressions.
13249 * tests/testsuite.at: Add glr-regr1.at test.
13250 * tests/Makefile.am: Add glr-regr1.at test.
13251
13252 2002-10-24 Paul Eggert <eggert@twinsun.com>
13253
13254 Version 1.75a.
13255
13256 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13257 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13258 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13259 Don't assume strdup exists; POSIX says its an XSI extension.
13260 Check for buffer overflow on input.
13261
13262 2002-10-24 Akim Demaille <akim@epita.fr>
13263
13264 * src/output.c (output_skeleton): Don't disable M4sugar comments
13265 too soon: it results in comments being expanded.
13266 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13267 first output.
13268
13269 2002-10-24 Akim Demaille <akim@epita.fr>
13270
13271 * data/yacc.c (m4_int_type): New.
13272 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13273 char' as only yacc.c wants K&R portability.
13274 * data/glr.c (yysigned_char): Remove.
13275 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13276 Reported by Quoc Peyrot.
13277
13278 2002-10-23 Paul Eggert <eggert@twinsun.com>
13279
13280 * src/main.c (main): With --trace=time, report times even if a
13281 non-fatal error occurs. Formerly, the times were reported in some
13282 such cases but not in others.
13283 * src/reader.c (reader): Just return if a complaint has been issued,
13284 instead of exiting, so that 'main' can report times.
13285
13286 2002-10-22 Akim Demaille <akim@epita.fr>
13287
13288 * src/system.h: Include sys/types.
13289 Reported by Bert Deknuydt.
13290
13291 2002-10-23 Paul Eggert <eggert@twinsun.com>
13292
13293 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13294 Suggested by Art Haas.
13295
13296 2002-10-22 Paul Eggert <eggert@twinsun.com>
13297
13298 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13299 decl; not needed any more.
13300 * src/main.c (main): Use return to exit, undoing yesterday's change.
13301 The last OS that we could find where this wouldn't work is
13302 SunOS 3.5, and that's too old to worry about now.
13303
13304 * data/glr.c (struct yyltype): Define members even when not
13305 doing locations. This is more consistent with yacc.c, and it
13306 works around the following bug reports:
13307 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13308 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13309
13310 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13311 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13312 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13313
13314 2002-10-22 Akim Demaille <akim@epita.fr>
13315
13316 * data/README: New.
13317
13318 2002-10-21 Paul Eggert <eggert@twinsun.com>
13319
13320 Be consistent about 'bool'; the old code used an enum in one
13321 module and an int in another, and this violates the C standard.
13322 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13323 * configure.ac (AC_HEADER_STDBOOL): Add.
13324 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13325 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13326 * src/symtab.c (hash_compare_symbol_t): Likewise.
13327 * src/system.h (bool, false, true): Use a definition consistent
13328 with ../lib/hash.c. All uses changed.
13329
13330 * src/complain.c (warning_issued): Renamed from warn_message_count,
13331 so that we needn't worry about integer overflow (!).
13332 Now of type bool. All uses changed.
13333 (complaint_issued): Renamed from complain_message_count; likewise.
13334
13335 * src/main.c (main): Use exit to exit with failure.
13336
13337 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13338 rather than 1 and 0.
13339 * src/main.c (main): Likewise.
13340 * src/getargs.c (getargs): Likewise.
13341 * src/reader.c (reader): Likewise.
13342
13343 * src/getarg.c (getargs): Remove duplicate code for
13344 "Try `bison --help'".
13345
13346 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13347 What was that "2" for?
13348
13349 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13350 * src/getargs.c (usage): Likewise.
13351
13352 * src/getargs.c (getargs): When there are too few operands, report
13353 the last one. When there are too many, report the first extra
13354 one. This is how diffutils does it.
13355
13356 2002-10-20 Paul Eggert <eggert@twinsun.com>
13357
13358 Remove K&R vestiges.
13359 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13360 * src/complain.c (VA_START): Remove. Assume prototypes.
13361 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13362 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13363 fatal): Assume prototypes.
13364 * src/complain.h: Assume prototypes.
13365 * src/system.h (PARAMS): Remove.
13366 Include <limits.h> unconditionally, since it's guaranteeed even
13367 for a freestanding C89 compiler.
13368 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13369 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13370
13371 2002-10-20 Akim Demaille <akim@epita.fr>
13372
13373 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13374 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13375 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13376 (yyresolveStates, yyresolveAction, yyresolveStack)
13377 (yyprocessOneStack): Use them.
13378 (yy_reduce_print): New.
13379 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13380
13381 2002-10-20 Akim Demaille <akim@epita.fr>
13382
13383 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13384 arguments and output `void'.
13385 (b4_c_function): Rename as...
13386 (b4_c_function_def): this.
13387 (b4_c_function_decl, b4_c_ansi_function_def)
13388 (b4_c_ansi_function_decl): New.
13389 Change the interpretation of the arguments: before `int, foo', now
13390 `int foo, foo'.
13391 * data/yacc.c (yyparse): Prototype and define thanks to these.
13392 Adjust b4_c_function_def uses.
13393 * data/glr.c (yyparse): Likewise, but ANSI only.
13394
13395 2002-10-20 Akim Demaille <akim@epita.fr>
13396
13397 * src/output.c (prepare): Move the definition of `tokens_number',
13398 `nterms_number', `undef_token_number', `user_token_number_max'
13399 to...
13400 (prepare_tokens): Here.
13401 (prepare_tokens): Rename as...
13402 (prepare_symbols): this.
13403 (prepare): Move the definition of `rules_number' to...
13404 (prepare_rules): here.
13405 (prepare): Move the definition of `last', `final_state_number',
13406 `states_number' to...
13407 (prepare_states): here.
13408 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13409
13410 2002-10-20 Akim Demaille <akim@epita.fr>
13411
13412 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13413
13414 2002-10-20 Akim Demaille <akim@epita.fr>
13415
13416 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13417 * data/c.m4: here.
13418
13419 2002-10-20 Akim Demaille <akim@epita.fr>
13420
13421 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13422 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13423 `pair'.
13424 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13425 `name' to...
13426 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13427 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13428 These.
13429
13430 2002-10-19 Paul Eggert <eggert@twinsun.com>
13431
13432 Do not create a temporary file, as that involves security and
13433 cleanup headaches. Instead, use a pair of pipes.
13434 Derived from a suggestion by Florian Krohm.
13435 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13436 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13437 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13438 (BISON_PREREQ_SUBPIPE): Add.
13439 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13440 Add subpipe.h, subpipe.c.
13441 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13442 * po/POTFILES.in: Add lib/subpipe.c.
13443 * src/output.c: Include "subpipe.h".
13444 (m4_invoke): Remove decl.
13445 (scan_skel): New decl.
13446 (output_skeleton): Use pipe rather than temporary file for m4 input.
13447 Check that m4sugar.m4 is readable, to avoid deadlock.
13448 Check for pipe I/O error.
13449 * src/scan-skel.l (readpipe): Remove decl.
13450 (scan_skel): New function, to be used in place of m4_invoke.
13451 Read from stream rather than file.
13452
13453 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13454 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13455 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13456 this generates a more-accurate value anyway.
13457
13458 * lib/timevar.c (timervar_accumulate): Rename locals to
13459 avoid confusion with similarly-named more-global.
13460 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13461
13462 * src/output.c (prepare): Use xstrdup to convert char const *
13463 to char *, to avoid GCC warning.
13464
13465 2002-10-19 Akim Demaille <akim@epita.fr>
13466
13467 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13468 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13469 Use them to have `calc.y' ready for %pure-parser.
13470 * data/yacc.c (YYLEX): Pass a yylex return type to
13471 b4_c_function_call.
13472
13473 2002-10-19 Akim Demaille <akim@epita.fr>
13474
13475 Prototype support of %lex-param and %parse-param.
13476
13477 * src/parse-gram.y: Add the definition of the %lex-param and
13478 %parse-param tokens, plus their rules.
13479 Drop the `_' version of %glr-parser.
13480 Add the "," token.
13481 * src/scan-gram.l (INITIAL): Scan them.
13482 * src/muscle_tab.c: Comment changes.
13483 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13484 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13485 (muscle_entry_s): The `value' member is no longer const.
13486 Adjust all dependencies.
13487 * src/muscle_tab.c (muscle_init): Adjust: use
13488 MUSCLE_INSERT_STRING.
13489 Initialize the obstack earlier.
13490 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13491 (muscle_pair_list_grow): New.
13492 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13493 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13494 * tests/calc.at: Use %locations, not --locations.
13495 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13496
13497 2002-10-19 Akim Demaille <akim@epita.fr>
13498
13499 * src/getargs.c (usage): Take status as argument and exit
13500 accordingly.
13501 Report the traditional `Try ... --help' message when status != 0.
13502 (usage, version): Don't take a FILE * as arg, it is pointless.
13503 (getargs): When there is an incorrect number of arguments, make it
13504 an error, and report it GNUlically thanks to `usage ()'.
13505
13506 2002-10-18 Paul Eggert <eggert@twinsun.com>
13507
13508 * data/glr.c (yyreportParseError): Don't assume that sprintf
13509 yields the length of the printed string, as this is not true
13510 on SunOS 4.1.4. Reported by Peter Klein.
13511
13512 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13513 * tests/conflicts.at (%nonassoc and eof): Likewise.
13514 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13515
13516 2002-10-17 Akim Demaille <akim@epita.fr>
13517
13518 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13519 * src/getargs.c (trace_types, trace_args): Adjust.
13520 * src/reader.c (grammar_current_rule_prec_set)
13521 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13522 Standardize error messages.
13523 And s/@prec/%prec/!
13524 (reader): Use trace_flag to enable scanner/parser debugging,
13525 instead of an adhoc scheme.
13526 * src/scan-gram.l: Remove trailing debugging code.
13527
13528 2002-10-16 Paul Eggert <eggert@twinsun.com>
13529
13530 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13531 MUSCLE_TAB_H.
13532
13533 * NEWS: Officially drop support for building Bison with K&R C,
13534 since it didn't work anyway and it's not worth worrying about.
13535 * Makefile.maint (wget_files): Remove ansi2knr.c.
13536 (ansi2knr.c-url_prefix): Remove.
13537 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13538 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13539 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13540
13541 2002-10-15 Paul Eggert <eggert@twinsun.com>
13542
13543 Stop using the "enum_" trick for K&R-style function definitions;
13544 it confused me, and I was the author! Instead, assume that people
13545 who want to use K&R C compilers (when using these modules in GCC,
13546 perhaps?) will run ansi2knr.
13547
13548 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13549 All uses of "enum_" changed to "enum ".
13550 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13551 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13552
13553 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13554 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13555 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13556 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13557 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13558 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13559 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13560 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13561 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13562 Use function prototypes; this removes the need for declaring
13563 static functions simply to provide their prototypes.
13564 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13565 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13566 bitset_count_, bitset_create, bitset_dump, bitset_first,
13567 bitset_free, bitset_init, bitset_last, bitset_next,
13568 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13569 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13570 bitset_print, bitset_release_memory, bitset_toggle_,
13571 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13572 debug_bitset): Likewise.
13573 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13574 * lib/bitset_stats.c (bitset_log_histogram_print,
13575 bitset_percent_histogram_print, bitset_stats_and,
13576 bitset_stats_and_cmp, bitset_stats_and_or,
13577 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13578 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13579 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13580 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13581 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13582 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13583 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13584 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13585 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13586 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13587 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13588 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13589 bitset_stats_zero): Likewise.
13590 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13591 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13592 bitsetv_dump, debug_bitsetv): Likewise.
13593 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13594 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13595 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13596 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13597 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13598 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13599 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13600 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13601 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13602 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13603 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13604 Likewise.
13605 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13606 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13607 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13608 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13609 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13610 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13611 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13612 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13613 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13614 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13615 lbitset_xor_cmp, lbitset_zero): Likewise.
13616
13617 2002-10-14 Akim Demaille <akim@epita.fr>
13618
13619 Version 1.75.
13620
13621 2002-10-14 Akim Demaille <akim@epita.fr>
13622
13623 * tests/Makefile.am (maintainer-check-posix): New.
13624
13625 2002-10-14 Akim Demaille <akim@epita.fr>
13626
13627 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13628 member.
13629
13630 2002-10-14 Akim Demaille <akim@epita.fr>
13631
13632 * src/tables.c (table_ninf_remap): base -> tab.
13633 Reported by Matt Rosing.
13634
13635 2002-10-14 Paul Eggert <eggert@twinsun.com>
13636
13637 * tests/action.at, tests/calc.at, tests/conflicts.at,
13638 tests/cxx-type.at, tests/headers.at, tests/input.at,
13639 tests/regression.at, tests/synclines.at, tests/torture.at:
13640 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13641 so that the tests still work even if POSIXLY_CORRECT is set.
13642 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13643
13644 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13645 for portability to K&R hosts. Fix typo: signed char is guaranteed
13646 only to 127, not to 128.
13647 * data/glr.c (yysigned_char): New type.
13648 * data/yacc.c (yysigned_char): Likewise.
13649 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13650
13651 2002-10-13 Paul Eggert <eggert@twinsun.com>
13652
13653 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13654 true due to limited range of data type" warning from GCC.
13655
13656 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13657 by wrapping enum yytokentype's definition inside #ifndef
13658 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13659
13660 2002-10-13 Akim Demaille <akim@epita.fr>
13661
13662 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13663 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13664
13665 2002-10-13 Akim Demaille <akim@epita.fr>
13666
13667 * Makefile.maint: Update from Autoconf 2.54.
13668 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13669
13670 2002-10-13 Akim Demaille <akim@epita.fr>
13671
13672 * src/print.c (print_state): Separate the list of solved conflicts
13673 from the other items.
13674 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13675
13676 2002-10-13 Akim Demaille <akim@epita.fr>
13677
13678 Let nondeterministic skeletons be usable with deterministic
13679 tables.
13680
13681 With the patch, GAWK compiled by GCC without -O2 passes its test
13682 suite using a GLR parser driven by LALR tables. It fails with -O2
13683 because `struct stat' gives two different answers on my machine:
13684 88 (definition of an auto var) and later 96 (memset on this var).
13685 Hence the stack is badly corrumpted. The headers inclusion is to
13686 blame: if I move the awk.h inclusion before GLR's system header
13687 inclusion, the two struct stat have the same size.
13688
13689 * src/tables.c (pack_table): Always create conflict_table.
13690 (token_actions): Always create conflict_list.
13691 * data/glr.c (YYFLAG): Remove, unused.
13692
13693 2002-10-13 Akim Demaille <akim@epita.fr>
13694
13695 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13696 (O0FLAGS): New.
13697 (VALGRIND, GXX): New.
13698 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13699 * tests/bison.in: Run $PREBISON a pre-command.
13700 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13701 (maintainer-check-g++): New.
13702 * Makefile.am (maintainer-check): New.
13703
13704 2002-10-13 Akim Demaille <akim@epita.fr>
13705
13706 * data/glr.c: Formatting changes.
13707 Tweak some trace messages to match yacc.c's.
13708
13709 2002-10-13 Akim Demaille <akim@epita.fr>
13710
13711 GLR parsers sometimes raise parse errors instead of performing the
13712 default reduction.
13713 Reported by Charles-Henry de Boysson.
13714
13715 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13716 check the length of the traces when %glr.
13717 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13718 GLR's traces.
13719 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13720 Test GLR parsers.
13721 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13722 (yyltype): Remove the yy prefix from the member names.
13723 (yytable): Complete its comment.
13724 (yygetLRActions): Map error action number from YYTABLE from
13725 YYTABLE_NINF to 0.
13726 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13727 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13728 not satisfying as we could compare an YYACTION computed from
13729 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13730 only value for error actions.
13731 (yyreportParseError): In verbose parse error messages, don't issue
13732 `error' in the list of expected tokens.
13733 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13734 next action to perform to match glr.c's decoding.
13735 (yytable): Complete its comment.
13736
13737 2002-10-13 Paul Eggert <eggert@twinsun.com>
13738
13739 Fix problem reported by Henrik Grubbstroem in
13740 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13741 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13742 because the Bison parser reads the second action before reducing
13743 the first one.
13744 * src/scan-gram.l (rule_length): New static var.
13745 Use it to keep track of the rule length in the scanner, since
13746 we can't expect the parser to be in lock-step sync with the scanner.
13747 (handle_action_dollar, handle_action_at): Use this var.
13748 * tests/actions.at (Exotic Dollars): Test for the problem.
13749
13750 2002-10-12 Paul Eggert <eggert@twinsun.com>
13751
13752 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13753 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13754 Include <sys/time.h> when checking for clock_t and struct tms.
13755 Use same include order as source.
13756 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13757 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13758
13759 * lib/timevar.c: Update copyright date and clarify comments.
13760 (get_time) [IN_GCC]: Keep the GCC version for reference.
13761
13762 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13763 GCC version as of today, then merge Bison's changes.
13764 Change "GCC" to "Bison" in copyright notice. timevar.def's
13765 author is Akim, so change that too.
13766
13767 * src/reader.c (grammar_current_rule_check):
13768 Don't worry about the default action if $$ is untyped.
13769 Prevents bogus warnings reported by Jim Gifford in
13770 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13771
13772 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13773 * data/glr.c, data/lalr1.cc, data/yacc.c:
13774 Output token definitions before the first part of user declarations.
13775 Fixes compatibility problem reported by Jim Gifford for kbd in
13776 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13777
13778 2002-10-11 Paul Eggert <eggert@twinsun.com>
13779
13780 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13781 (yyparse): here. This undoes some of the 2002-07-25 change.
13782 Compatibility problem reported by Ralf S. Engelschall with
13783 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13784
13785 2002-10-11 Akim Demaille <akim@epita.fr>
13786
13787 * tests/regression.at Characters Escapes): New.
13788 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13789 characters.
13790 Reported by Jan Nieuwenhuizen.
13791
13792 2002-10-11 Akim Demaille <akim@epita.fr>
13793
13794 * po/id.po: New.
13795
13796 2002-10-10 Paul Eggert <eggert@twinsun.com>
13797
13798 Portability fixes for bitsets; this also avoids several GCC
13799 warnings.
13800
13801 * lib/abitset.c: Include <stddef.h>, for offsetof.
13802 * lib/lbitset.c: Likewise.
13803
13804 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13805 properly for vectors of objects. Do not assume that adding a
13806 header size to a multiple of a word size yields a value that is
13807 properly aligned for the whole union.
13808 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13809
13810 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13811 unique names for structures.
13812 * lib/ebitset.c (ebitset_bytes): Likewise.
13813 * lib/lbitset.c (lbitset_bytes): Likewise.
13814
13815 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13816 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13817 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13818 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13819 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13820 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13821 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13822 to improve the type-checking that GCC can do.
13823 * lib/bitset.c (bitset_op4_cmp): Likewise.
13824 * lib/bitset_stats.c (bitset_stats_count,
13825 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13826 bitset_stats_copy, bitset_stats_disjoint_p,
13827 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13828 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13829 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13830 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13831 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13832 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13833 bitset_stats_or_and_cmp): Likewise.
13834 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13835 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13836 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13837 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13838
13839 * lib/abitset.h: Include bitset.h, not bbitset.h.
13840 * lib/ebitset.h: Likewise.
13841 * lib/lbitset.h: Likewise.
13842
13843 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13844 All instances of parameters of type enum bitset_opts are now of
13845 type enum_bitset_opts, to conform to the C Standard, and similarly
13846 for enum_bitset_type.
13847 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13848 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13849
13850 Do not use "struct bitset_struct" to mean different things in
13851 different modules. Not only is this confusing, it violates
13852 the C Standard, which requires that structure types in different
13853 modules must be compatible if one is to be passed to the other.
13854 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13855 All instances of "struct bitset_struct *" replaced with "bitset".
13856 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13857 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13858 struct lbitset_struct, struct bitset_stats_struct): New types.
13859 All uses of struct bitset_struct changed to union bitset_union,
13860 etc.
13861 * lib/abitset.c (struct abitset_struct, abitset,
13862 struct bitset_struct): Remove.
13863 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13864 struct bitset_struct): Remove.
13865 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13866 bitset_struct): Remove.
13867 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13868 Likewise.
13869
13870 Do not call a function of type T using a call that assumes the
13871 function is of a different type U. Standard C requires that a
13872 function must be called with a type that is compatible with its
13873 definition.
13874 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13875 New decls.
13876 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13877 New functions.
13878 * lib/ebitset.c (PFV): Remove.
13879 * lib/lbitset.c (PFV): Likewise.
13880 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13881 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13882 decls.
13883 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13884 (ebitset_vtable): Use them.
13885 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13886 lbitset_xor): New functions.
13887 (lbitset_vtable): Use them.
13888
13889 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13890 Declare.
13891
13892 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13893 GCC warning.
13894 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13895 Use offsetof, for simplicity.
13896
13897 2002-10-06 Paul Eggert <eggert@twinsun.com>
13898
13899 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13900 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13901 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13902 which was inadvertently undone by the 2002-09-30 patch.
13903 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13904 the same width as int.
13905
13906 2002-10-04 Paul Eggert <eggert@twinsun.com>
13907
13908 Version 1.50.
13909
13910 * configure.ac (AC_INIT), NEWS: Increment version number.
13911
13912 * doc/bison.texinfo: Minor spelling, grammar, and white space
13913 fixes.
13914 (Symbols): Mention that any negative value returned from yylex
13915 signifies end-of-input. Warn about negative chars. Mention
13916 the portable Standard C character set.
13917
13918 The GNU coding standard says CFLAGS and YFLAGS are reserved
13919 for the installer to set.
13920 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13921 * src/Makefile.am (AM_CFLAGS): Likewise.
13922 (AM_YFLAGS): Renamed from YFLAGS.
13923
13924 Fix some MAX and MIN problems.
13925 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13926 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13927 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13928 * src/reader.c (reader): Use it.
13929
13930 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13931 POSIX 1003.1-2001 has removed fgrep.
13932
13933 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13934
13935 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13936 interpreted as signed.
13937 * lib/ebitset.c (ebitset_list): Fix bug.
13938
13939 2002-10-01 Paul Eggert <eggert@twinsun.com>
13940
13941 More fixes for 64-bit hosts and large bitsets.
13942
13943 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13944 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13945 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13946 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13947 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13948 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13949 bitset_count_): Likewise.
13950 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13951 bitset_first, bitset_last): Likewise.
13952 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13953 bitset_stats_list_reverse, bitset_stats_size,
13954 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13955 Likewise.
13956 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13957 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13958 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13959 bitsetv_reflexive_transitive_closure): Likewise.
13960 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13961 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13962 Likewise.
13963 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13964 Likewise.
13965
13966 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13967 Use size_t, not unsigned int, to count bytes.
13968 * lib/abitset.h (abitset_bytes): Likewise.
13969 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13970 Likewise.
13971 * lib/bitset.h (bitset_bytes): Likewise.
13972 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13973 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13974 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13975 * lib/ebitset.c (ebitset_bytes): Likewise.
13976 * lib/ebitset.h (ebitset_bytes): Likewise.
13977 * lib/lbitset.c (lbitset_bytes): Likewise.
13978 * lib/lbitset.h (lbitset_bytes): Likewise.
13979
13980 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13981 abitset_subset_p, abitset_disjoint_p, abitset_and,
13982 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13983 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13984 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13985 abitset_or_and, abitset_or_and_cmp):
13986 Use bitset_windex instead of unsigned int.
13987 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13988 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13989 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13990 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13991 Likewise.
13992 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13993
13994 * lib/bitset.c (bitset_print):
13995 Use proper printf formats for widths of integer types.
13996 * lib/bitset_stats.c (bitset_percent_histogram_print,
13997 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13998 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13999 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
14000 * lib/lbitset.c (lbitset_bytes): Likewise.
14001
14002 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
14003 BITSET_SIZE_MAX): New macros.
14004 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
14005 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
14006 to BITSET_WINDEX_MAX.
14007
14008 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
14009 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
14010 since we now return the bitset_bindex type (not int).
14011
14012 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
14013 when computing sizes.
14014 * lib/ebitset.c (ebitset_elts_grow): Likewise.
14015
14016 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
14017 and avoid cast to unsigned.
14018
14019 2002-09-30 Akim Demaille <akim@epita.fr>
14020
14021 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
14022 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
14023 Updates from Michael Hayes.
14024
14025 2002-09-30 Art Haas <ahaas@neosoft.com>
14026
14027 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
14028 invocations.
14029 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
14030 defined.
14031
14032 2002-09-27 Akim Demaille <akim@epita.fr>
14033
14034 Version 1.49c.
14035
14036 2002-09-27 Akim Demaille <akim@epita.fr>
14037
14038 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
14039 (Because of AC_LIBSOURCE).
14040
14041 2002-09-27 Akim Demaille <akim@epita.fr>
14042
14043 Playing with Autoscan.
14044
14045 * configure.ac: Remove the old LIBOBJ tweaks.
14046 (AC_REPLACE_FUNCS): Add strrchr and strtol.
14047 * lib/strrchr.c: New.
14048 * lib/strtol.c: New, from the Coreutils 4.5.1.
14049
14050 2002-09-27 Akim Demaille <akim@epita.fr>
14051
14052 Playing with Autoscan.
14053
14054 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
14055 * lib/Makefile.am (libbison_a_SOURCES): No longer include
14056 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
14057 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
14058 Coreutils 4.5.1.
14059
14060 2002-09-24 Akim Demaille <akim@epita.fr>
14061
14062 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
14063 (Frequently Asked Questions, Parser Stack Overflow): New.
14064
14065 2002-09-13 Akim Demaille <akim@epita.fr>
14066
14067 Playing with autoscan.
14068
14069 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
14070 * src/files.c (skeleton_find): Remove, unused.
14071 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
14072 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
14073
14074 2002-09-13 Akim Demaille <akim@epita.fr>
14075
14076 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
14077 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
14078
14079 2002-09-13 Akim Demaille <akim@epita.fr>
14080
14081 * configure.ac: Require 2.54.
14082 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
14083 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
14084 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
14085 Remove, provided by Autoconf macros.
14086
14087 2002-09-12 Akim Demaille <akim@epita.fr>
14088
14089 * m4/prereq.m4: Update, from Coreutils 4.5.1.
14090
14091 2002-09-12 Akim Demaille <akim@epita.fr>
14092
14093 * m4/prereq.m4: Update, from Fileutils 4.1.5.
14094 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
14095 Reported by Martin Mokrejs.
14096
14097 2002-09-10 Akim Demaille <akim@epita.fr>
14098
14099 * src/parse-gram.y: Associate a human readable string to each
14100 token type.
14101 * tests/regression.at (Invalid inputs): Adjust.
14102
14103 2002-09-10 Gary V. Vaughan <gary@gnu.org>
14104
14105 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
14106 with an Autoconf-2.5x style configure.ac.
14107
14108 2002-09-06 Paul Eggert <eggert@twinsun.com>
14109
14110 * doc/bison.texinfo (Conditions): Make explicit that the GPL
14111 exception applies only to yacc.c. This is a modification of a
14112 patch originally suggested by Akim Demaille.
14113
14114 2002-09-06 Akim Demaille <akim@epita.fr>
14115
14116 * data/c.m4 (b4_copyright): Move the GPL exception comment from
14117 here to...
14118 * data/yacc.c: here.
14119
14120 * data/lalr1.cc (struct yyltype): Don't define it, since we use
14121 LocationType.
14122 (b4_ltype): Default to yy::Location from location.hh.
14123
14124 2002-09-04 Jim Meyering <jim@meyering.net>
14125
14126 * data/yacc.c: Guard the declaration of yytoknum also with
14127 `#ifdef YYPRINT', so it is declared only when used.
14128
14129 2002-09-04 Akim Demaille <akim@epita.fr>
14130
14131 * configure.in: Rename as...
14132 * configure.ac: this.
14133 Bump to 1.49c.
14134
14135 2002-09-04 Akim Demaille <akim@epita.fr>
14136
14137 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
14138 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
14139 translate maintainer only messages.
14140
14141 2002-08-12 Paul Eggert <eggert@twinsun.com>
14142
14143 Version 1.49b.
14144
14145 * Makefile.am (SUBDIRS): Remove intl.
14146 (DISTCLEANFILES): Remove.
14147 * NEWS: Mention that GNU M4 is now required. Clarify what is
14148 meant by "larger grammars". Mention the pt_BR translation.
14149 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
14150 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
14151 Bump version from 0.11.2 to 0.11.5.
14152 (BISON_PREREQ_STAGE): Remove.
14153 (AM_GNU_GETTEXT): Use external gettext.
14154 (AC_OUTPUT): Remove intl/Makefile.
14155
14156 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
14157
14158 * data/glr.c: Include string.h, for strlen.
14159 (yyreportParseError): Use size_t for yysize.
14160 (yy_yypstack): No longer nested inside yypstates, as nested
14161 functions are not portable. Do not assume size_t is the
14162 same width as int.
14163 (yypstates): Do not assume that ptrdiff_t is the same width
14164 as int, and similarly for yyposn and YYINDEX.
14165
14166 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
14167
14168 * lib/Makefile.am (INCLUDES): Do not include from the intl
14169 directory, which has been removed.
14170 * src/Makefile.am (INCLUDES): Likewise.
14171
14172 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
14173 (bitsets_sources, additional_bitsets_sources, timevars_sources):
14174 New vars.
14175
14176 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
14177 * tests/Makefile.am (EXTRA_DIST): Likewise.
14178
14179 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
14180 Do not assume that bitset_windex is the same width as unsigned.
14181
14182 * lib/abitset.c (abitset_unused_clear): Do not assume that
14183 bitset_word is the same width as int.
14184 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
14185 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
14186 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
14187 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
14188 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
14189
14190 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
14191 portability to one's complement hosts!).
14192 * lib/ebitset.c (ebitset_op1): Likewise.
14193 * lib/lbitset.c (lbitset_op1): Likewise.
14194
14195 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
14196 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
14197 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
14198 Sync with fileutils.
14199 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
14200 lib/gettext.h: Sync with diffutils.
14201
14202 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
14203 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
14204
14205 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
14206 PROTOTYPES to check for prototypes, and "defined __STDC__" to
14207 check for void *.
14208
14209 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
14210 size_t; the old version tried to do this but casted improperly.
14211 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
14212 (bitset_test): Now returns int, not unsigned long.
14213
14214 * lib/bitset_stats.c: Include "gettext.h".
14215 (_): New macro.
14216 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
14217 name locals "index", as it generates unnecessary warnings on some
14218 hosts that have an "index" function.
14219
14220 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
14221 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14222 they need translation.
14223 * src/LR0.c (state_list_append, new_itemsets, get_state,
14224 append_states, generate_states): Likewise.
14225 * src/assoc.c (assoc_to_string): Likewise.
14226 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14227 * src/gram.c (grammar_dump): Likewise.
14228 * src/injections.c (injections_compute): Likewise.
14229 * src/lalr.c (lookaheads_print): Likewise.
14230 * src/relation.c (relation_transpose): Likewise.
14231 * src/scan-gram.l: Likewise.
14232 * src/tables.c (table_grow, pack_vector): Likewise.
14233
14234 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14235 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14236 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14237 * m4/mbstate_t.m4: Sync with fileutils.
14238 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14239
14240 * po/LINGUAS: Add pt_BR.
14241 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14242 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14243 lib/timevar.c.
14244 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14245 manual recommends.
14246 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14247
14248 * src/complain.c (strerror_r): Remove decl; not needed.
14249 (strerror): Use same pattern as ../lib/error.c.
14250
14251 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14252
14253 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14254
14255 * src/main.c (main): Cast result of bindtextdomain and textdomain
14256 to void, to avoid a GCC warning when --disable-nls is in effect.
14257
14258 * src/scan-gram.l: Use strings rather than escapes when possible,
14259 to minimize the number of warnings from xgettext.
14260 (handle_action_dollar, handle_action_at): Don't use isdigit,
14261 as it mishandles negative chars and it may not work as expected
14262 outside the C locale.
14263
14264 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14265 this is a GCC extension and is not portable to other compilers.
14266
14267 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14268 Do not include <ctype.h>; no longer needed.
14269 Do not include <malloc.h>; no longer needed (and generates
14270 warnings on OpenBSD 3.0).
14271
14272 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14273 it's not portable.
14274
14275 * tests/regression.at: Do not use 'cc -c input.c -o input';
14276 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14277
14278 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14279 exit status as failure, not just exit status 1. Sun C exits
14280 with status 2 sometimes.
14281
14282 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14283 Use it for the two large tests.
14284
14285 2002-08-02 Akim Demaille <akim@epita.fr>
14286
14287 * src/conflicts.c (conflicts_output): Don't output rules never
14288 reduced here, since anyway that computation doesn't work.
14289 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14290 (rule_useless_p, rule_never_reduced_p): New.
14291 (grammar_rules_partial_print): Use a filter instead of a range.
14292 Display the title only if needed.
14293 (grammar_rules_print): Adjust.
14294 (grammar_rules_never_reduced_report): New.
14295 * src/tables.c (action_row): Move the computation of rules never
14296 reduced to...
14297 (token_actions): here.
14298 * src/main.c (main): Make the parser before making the report, so
14299 that rules never reduced are computed.
14300 Call grammar_rules_never_reduced_report.
14301 * src/print.c (print_results): Report rules never reduced.
14302 * tests/conflicts.at, tests/reduce.at: Adjust.
14303
14304 2002-08-01 Akim Demaille <akim@epita.fr>
14305
14306 Instead of attaching lookaheads and duplicating the rules being
14307 reduced by a state, attach the lookaheads to the reductions.
14308
14309 * src/state.h (state_t): Remove the `lookaheads',
14310 `lookaheads_rule' member.
14311 (reductions_t): Add a `lookaheads' member.
14312 Use a regular array for the `rules'.
14313 * src/state.c (reductions_new): Initialize the lookaheads member
14314 to 0.
14315 (state_rule_lookaheads_print): Adjust.
14316 * src/state.h, src/state.c (state_reductions_find): New.
14317 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14318 (count_rr_conflicts): Adjust.
14319 * src/lalr.c (LArule): Remove.
14320 (add_lookback_edge): Adjust.
14321 (state_lookaheads_count): New.
14322 (states_lookaheads_initialize): Merge into...
14323 (initialize_LA): this.
14324 (lalr_free): Adjust.
14325 * src/main.c (main): Don't free nullable and derives too early: it
14326 is used by --verbose.
14327 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14328
14329 2002-08-01 Akim Demaille <akim@epita.fr>
14330
14331 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14332 `rule_number_t**'.
14333 (set_derives, free_derives): Rename as...
14334 (derives_compute, derives_free): this.
14335 Adjust all dependencies.
14336 * src/nullable.c (set_nullable, free_nullable): Rename as...
14337 (nullable_compute, nullable_free): these.
14338 (rule_list_t): Store rule_t *, not rule_number_t.
14339 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14340 pointers, instead of their numbers.
14341 * src/main.c (main): Call nullable_free, and derives_free earlier,
14342 as they were lo longer used.
14343
14344 2002-08-01 Akim Demaille <akim@epita.fr>
14345
14346 * lib/timevar.c (get_time): Include children time.
14347 * src/lalr.h (LA, LArule): Don't export them: used with the
14348 state_t.
14349 * src/lalr.c (LA, LArule): Static.
14350 * src/lalr.h, src/lalr.c (lalr_free): New.
14351 * src/main.c (main): Call it.
14352 * src/tables.c (pack_vector): Check whether loc is >= to the
14353 table_size, not >.
14354 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14355 (tables_generate): do it, since that's also it which allocates
14356 them.
14357 Don't free LA and LArule, main does.
14358
14359 2002-07-31 Akim Demaille <akim@epita.fr>
14360
14361 Separate parser tables computation and output.
14362
14363 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14364 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14365 (yydefgoto, yydefact, high): Move to...
14366 * src/tables.h, src/tables.c: here.
14367 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14368 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14369 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14370 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14371 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14372 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14373 (action_row, save_row, token_actions, save_column, default_goto)
14374 (goto_actions, sort_actions, matching_state, pack_vector)
14375 (table_ninf_remap, pack_table, prepare_actions): Move to...
14376 * src/tables.c: here.
14377 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14378 * src/output.c (token_actions, output_base, output_conflicts)
14379 (output_check): Merge into...
14380 (prepare_actions): this.
14381 (actions_output): Rename as...
14382 (user_actions_output): this.
14383 * src/main.c (main): Call tables_generate and tables_free.
14384
14385 2002-07-31 Akim Demaille <akim@epita.fr>
14386
14387 Steal GCC's --time-report support.
14388
14389 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14390 stolen/adjusted from GCC.
14391 * m4/stage.m4: Remove time related checks.
14392 * m4/timevar.m4: New.
14393 * configure.in: Adjust.
14394 * src/system.h: Adjust to using timevar.h.
14395 * src/getargs.h, src/getargs.c: Support trace_time for
14396 --trace=time.
14397 * src/main.c (stage): Remove.
14398 (main): Replace `stage' invocations with timevar calls.
14399 * src/output.c: Insert pertinent timevar calls.
14400
14401 2002-07-31 Akim Demaille <akim@epita.fr>
14402
14403 Let --trace have arguments.
14404
14405 * src/getargs.h (enum trace_e): New.
14406 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14407 (long_options, short_options): --trace/-T takes an optional
14408 argument.
14409 Change all the uses of trace_flag to reflect the new flags.
14410 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14411
14412 Strengthen `stage' portability.
14413
14414 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14415 * configure.in: Use it.
14416 Don't check for malloc.h and sys/times.h.
14417 * src/system.h: Include them when appropriate.
14418 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14419 times and struct tms are available.
14420
14421 2002-07-30 Akim Demaille <akim@epita.fr>
14422
14423 In verbose parse error message, don't report `error' as an
14424 expected token.
14425 * tests/actions.at (Printers and Destructors): Adjust.
14426 * tests/calc.at (Calculator $1): Adjust.
14427 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14428 error message, do not report the parser accepts the error token in
14429 that state.
14430
14431 2002-07-30 Akim Demaille <akim@epita.fr>
14432
14433 Normalize conflict related messages.
14434
14435 * src/complain.h, src/complain.c (warn, complain): New.
14436 * src/conflicts.c (conflicts_print): Use them.
14437 (conflict_report_yacc): New, extracted from...
14438 (conflicts_print): here.
14439 * tests/conflicts.at, tests/existing.at: Adjust.
14440
14441 2002-07-30 Akim Demaille <akim@epita.fr>
14442
14443 Report rules which are never reduced by the parser: those hidden
14444 by conflicts.
14445
14446 * src/LR0.c (save_reductions): Don't make the final state too
14447 different: save its reduction (accept) instead of having a state
14448 without any action (no shift or goto, no reduce).
14449 Note: the final state is now a ``regular'' state, i.e., the
14450 parsers now contain `reduce 0' as default reduction.
14451 Nevertheless, since they decide to `accept' when yystate =
14452 final_state, they still will not reduce rule 0.
14453 * src/print.c (print_actions, print_reduction): Adjust.
14454 * src/output.c (action_row): Track reduced rules.
14455 (token_actions): Report rules never reduced.
14456 * tests/conflicts.at, tests/regression.at: Adjust.
14457
14458 2002-07-30 Akim Demaille <akim@epita.fr>
14459
14460 `stage' was accidently included in a previous patch.
14461 Initiate its autoconfiscation.
14462
14463 * configure.in: Look for malloc.h and sys/times.h.
14464 * src/main.c (stage): Adjust.
14465 Report only when trace_flag.
14466
14467 2002-07-29 Akim Demaille <akim@epita.fr>
14468
14469 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14470 state_number_t.
14471 (errs_t): symbol_t*, not symbol_number_t.
14472 (reductions_t): rule_t*, not rule_number_t.
14473 (FOR_EACH_SHIFT): New.
14474 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14475 * src/print.c, src/print_graph.c: Adjust.
14476
14477 2002-07-29 Akim Demaille <akim@epita.fr>
14478
14479 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14480
14481 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14482 (endtoken, accept): these.
14483 * src/reader.c (reader): Set endtoken's default tag to "$end".
14484 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14485 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14486 Adjust.
14487
14488 2002-07-29 Akim Demaille <akim@epita.fr>
14489
14490 * src/reduce.c (reduce_grammar): When the language is empty,
14491 complain about the start symbol, not the axiom.
14492 Use its location.
14493 * tests/reduce.at (Empty Language): New.
14494
14495 2002-07-26 Akim Demaille <akim@epita.fr>
14496
14497 * src/reader.h, src/reader.c (gram_error): ... can't get
14498 yycontrol without making too strong assumptions on the parser
14499 itself.
14500 * src/output.c (prepare_tokens): Use the real 0th value of
14501 token_translations instead of `0'.
14502 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14503 visible here.
14504 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14505 for the time being: %locations ought to provide it to yyerror.
14506
14507 2002-07-25 Akim Demaille <akim@epita.fr>
14508
14509 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14510 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14511 * tests/regression.at (Web2c Actions): Adjust.
14512
14513 2002-07-25 Akim Demaille <akim@epita.fr>
14514
14515 Stop storing rules from 1 to nrules + 1.
14516
14517 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14518 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14519 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14520 Iterate from 0 to nrules.
14521 Use rule_number_as_item_number and item_number_as_rule_number.
14522 Adjust to `derive' now containing possibly 0.
14523 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14524 Handle the `- 1' part in rule numbers from/to item numbers.
14525 * src/conflicts.c (log_resolution): Fix the message which reversed
14526 shift and reduce.
14527 * src/output.c (action_row): Initialize default_rule to -1.
14528 (token_actions): Adjust.
14529 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14530 expected output.
14531 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14532
14533 2002-07-25 Akim Demaille <akim@epita.fr>
14534
14535 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14536 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14537 (b4_c_knr_arg_decl): New.
14538 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14539 yyreport_parse_error.
14540
14541 2002-07-25 Akim Demaille <akim@epita.fr>
14542
14543 * data/yacc.c (yyreport_parse_error): New, extracted from...
14544 (yyparse): here.
14545 (yydestruct, yysymprint): Move above yyparse.
14546 Be K&R compliant.
14547
14548 2002-07-25 Akim Demaille <akim@epita.fr>
14549
14550 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14551 replace...
14552 (b4_sint_type, b4_uint_type): these.
14553 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14554 * tests/regression.at (Web2c Actions): Adjust.
14555
14556 2002-07-25 Akim Demaille <akim@epita.fr>
14557
14558 * src/gram.h (TIEM_NUMBER_MAX): New.
14559 (item_number_of_rule_number, rule_number_of_item_number): Rename
14560 as...
14561 (rule_number_as_item_number, item_number_as_rule_number): these.
14562 Adjust dependencies.
14563 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14564 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14565 (symbol_number_to_vector_number): New.
14566 (order): Of vector_number_t* type.
14567 (base_t, BASE_MAX, BASE_MIN): New.
14568 (froms, tos, width, pos, check): Of base_t type.
14569 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14570 (actrow): Of action_number_t type.
14571 (conflrow): Of unsigned int type.
14572 (table_ninf, base_ninf): New.
14573 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14574 (muscle_insert_int_table, muscle_insert_base_table)
14575 (muscle_insert_rule_number_table): New.
14576 (prepare_tokens): Output `toknum' as int_table.
14577 (action_row): Returns a rule_number_t.
14578 Use ACTION_MIN, not SHRT_MIN.
14579 (token_actions): yydefact is rule_number_t*.
14580 (table_ninf_remap): New.
14581 (pack_table): Use it for `base' and `table'.
14582 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14583 replaced with...
14584 (YYPACT_NINF, YYTABLE_NINF): these.
14585 (yypact, yytable): Compute their types instead of hard-coded
14586 `short'.
14587 * tests/regression.at (Web2c Actions): Adjust.
14588
14589 2002-07-19 Akim Demaille <akim@epita.fr>
14590
14591 * src/scan-gram.l (id): Can start with an underscore.
14592
14593 2002-07-16 Akim Demaille <akim@epita.fr>
14594
14595 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14596 Adjust all former `associativity' dependencies.
14597 * src/symtab.c (symbol_new): Default associativity is `undef', not
14598 `right'.
14599 (symbol_check_alias_consistence): Adjust.
14600
14601 2002-07-09 Akim Demaille <akim@epita.fr>
14602
14603 * doc/bison.texinfo: Properly set the ``header'' part.
14604 Use @dircategory ``GNU programming tools'' as per Texinfo's
14605 documentation.
14606 Use @copying.
14607
14608 2002-07-09 Akim Demaille <akim@epita.fr>
14609
14610 * lib/quotearg.h: Protect against multiple inclusions.
14611 * src/location.h (location_t): Add a `file' member.
14612 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14613 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14614 `error_one_per_line' support.
14615
14616 2002-07-09 Akim Demaille <akim@epita.fr>
14617
14618 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14619 * src/reader.c (lineno): Remove.
14620 Adjust all dependencies.
14621 (get_merge_function): Take a location and use complain_at.
14622 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14623 * tests/regression.at (Invalid inputs, Mixing %token styles):
14624 Adjust.
14625
14626 2002-07-09 Akim Demaille <akim@epita.fr>
14627
14628 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14629 recovery rule, and forbid extensions when --yacc.
14630 (gram_error): Use complain_at.
14631 * src/reader.c (reader): Exit if there were parse errors.
14632
14633 2002-07-09 Akim Demaille <akim@epita.fr>
14634
14635 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14636 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14637 Reported by R Blake <blakers@mac.com>.
14638
14639 2002-07-09 Akim Demaille <akim@epita.fr>
14640
14641 * data/yacc.c: Output the copyright notive in the header.
14642
14643 2002-07-03 Akim Demaille <akim@epita.fr>
14644
14645 * src/output.c (froms, tos): Are state_number_t.
14646 (save_column): sp, sp1, and sp2 are state_number_t.
14647 (prepare): Rename `final' as `final_state_number', `nnts' as
14648 `nterms_number', `nrules' as `rules_number', `nstates' as
14649 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14650 unused.
14651 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14652 * data/lalr1.cc (nsym_): Remove, unused.
14653
14654 2002-07-03 Akim Demaille <akim@epita.fr>
14655
14656 * src/lalr.h, src/lalr.c (goto_number_t): New.
14657 * src/lalr.c (goto_list_t): New.
14658 Propagate them.
14659 * src/nullable.c (rule_list_t): New.
14660 Propagate.
14661 * src/types.h: Remove.
14662
14663 2002-07-03 Akim Demaille <akim@epita.fr>
14664
14665 * src/closure.c (print_fderives): Use rule_rhs_print.
14666 * src/derives.c (print_derives): Use rule_rhs_print.
14667 (rule_list_t): New, replaces `shorts'.
14668 (set_derives): Add comments.
14669 * tests/sets.at (Nullable, Firsts): Adjust.
14670
14671 2002-07-03 Akim Demaille <akim@epita.fr>
14672
14673 * src/output.c (prepare_actions): Free `tally' and `width'.
14674 (prepare_actions): Allocate and free `order'.
14675 * src/symtab.c (symbols_free): Free `symbols'.
14676 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14677 * src/output.c (m4_invoke): Move to...
14678 * src/scan-skel.l: here.
14679 (<<EOF>>): Close yyout, and free its name.
14680
14681 2002-07-03 Akim Demaille <akim@epita.fr>
14682
14683 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14684
14685 * src/LR0.c (new_state): Merge into...
14686 (state_list_append): this.
14687 (new_states): Merge into...
14688 (generate_states): here.
14689 (set_states): Don't ensure a proper `errs' state member here, do it...
14690 * src/conflicts.c (conflicts_solve): here.
14691 * src/state.h, src/state.c: Comment changes.
14692 (state_t): Rename member `shifts' as `transitions'.
14693 Adjust all dependencies.
14694 (errs_new): For consistency, also take the values as argument.
14695 (errs_dup): Remove.
14696 (state_errs_set): New.
14697 (state_reductions_set, state_transitions_set): Assert that no
14698 previous value was assigned.
14699 (state_free): New.
14700 (states_free): Use it.
14701 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14702 temporary storage: use `errs' and `nerrs' as elsewhere.
14703 (set_conflicts): Allocate and free this `errs'.
14704
14705 2002-07-02 Akim Demaille <akim@epita.fr>
14706
14707 * lib/libiberty.h: New.
14708 * lib: Update the bitset implementation from upstream.
14709 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14710 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14711 * src/main.c: Adjust bitset stats calls.
14712
14713 2002-07-01 Paul Eggert <eggert@twinsun.com>
14714
14715 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14716 char, so that negative chars don't collide with $.
14717
14718 2002-06-30 Akim Demaille <akim@epita.fr>
14719
14720 Have the GLR tests be `warning' checked, and fix the warnings.
14721
14722 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14723 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14724 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14725 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14726 (yyaddDeferredAction): static.
14727 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14728 (yyreportParseError): yyprefix is const.
14729 yytokenp is used only when verbose.
14730 (yy__GNUC__): Replace with __GNUC__.
14731 (yypdumpstack): yyi is size_t.
14732 (yypreference): Un-yy local variables and arguments, to avoid
14733 clashes with `yyr1'. Anyway, we are not in the user name space.
14734 (yytname_size): be an int, as is compared with ints.
14735 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14736 Use them.
14737 * tests/cxx-gram.at: Use quotation to protect $1.
14738 Use AT_COMPILE to enable warnings hunts.
14739 Prototype yylex and yyerror.
14740 `Use' argc.
14741 Include `string.h', not `strings.h'.
14742 Produce and prototype stmtMerge only when used.
14743 yylex takes a location.
14744
14745 2002-06-30 Akim Demaille <akim@epita.fr>
14746
14747 We spend a lot of time in quotearg, in particular when --verbose.
14748
14749 * src/symtab.c (symbol_get): Store a quoted version of the key.
14750 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14751 Adjust all callers.
14752
14753 2002-06-30 Akim Demaille <akim@epita.fr>
14754
14755 * src/state.h (reductions_t): Rename member `nreds' as num.
14756 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14757 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14758
14759 2002-06-30 Akim Demaille <akim@epita.fr>
14760
14761 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14762 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14763 (shifts_to): Rename as...
14764 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14765 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14766 (TRANSITION_IS_DISABLED, transitions_to): these.
14767
14768 2002-06-30 Akim Demaille <akim@epita.fr>
14769
14770 * src/print.c (print_shifts, print_gotos): Merge into...
14771 (print_transitions): this.
14772 (print_transitions, print_errs, print_reductions): Align the
14773 lookaheads columns.
14774 (print_core, print_transitions, print_errs, print_state,
14775 print_grammar): Output empty lines separator before, not after.
14776 (state_default_rule_compute): Rename as...
14777 (state_default_rule): this.
14778 * tests/conflicts.at (Defaulted Conflicted Reduction),
14779 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14780 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14781
14782 2002-06-30 Akim Demaille <akim@epita.fr>
14783
14784 Display items as we display rules.
14785
14786 * src/gram.h, src/gram.c (rule_lhs_print): New.
14787 * src/gram.c (grammar_rules_partial_print): Use it.
14788 * src/print.c (print_core): Likewise.
14789 * tests/conflicts.at (Defaulted Conflicted Reduction),
14790 (Unresolved SR Conflicts): Adjust.
14791 (Unresolved SR Conflicts): Adjust and rename as...
14792 (Resolved SR Conflicts): this, as was meant.
14793 * tests/regression.at (Web2c Report): Adjust.
14794
14795 2002-06-30 Akim Demaille <akim@epita.fr>
14796
14797 * src/print.c (state_default_rule_compute): New, extracted from...
14798 (print_reductions): here.
14799 Pessimize, but clarify the code.
14800 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14801
14802 2002-06-30 Akim Demaille <akim@epita.fr>
14803
14804 * src/output.c (action_row): Let default_rule be always a rule
14805 number.
14806
14807 2002-06-30 Akim Demaille <akim@epita.fr>
14808
14809 * src/closure.c (print_firsts, print_fderives, closure):
14810 Use BITSET_EXECUTE.
14811 * src/lalr.c (lookaheads_print): Likewise.
14812 * src/state.c (state_rule_lookaheads_print): Likewise.
14813 * src/print_graph.c (print_core): Likewise.
14814 * src/print.c (print_reductions): Likewise.
14815 * src/output.c (action_row): Likewise.
14816 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14817
14818 2002-06-30 Akim Demaille <akim@epita.fr>
14819
14820 * src/print_graph.c: Use report_flag.
14821
14822 2002-06-30 Akim Demaille <akim@epita.fr>
14823
14824 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14825 to...
14826 * src/relation.h, src/relation.c (traverse, relation_digraph)
14827 (relation_print, relation_transpose): New.
14828
14829 2002-06-30 Akim Demaille <akim@epita.fr>
14830
14831 * src/state.h, src/state.c (shifts_to): New.
14832 * src/lalr.c (build_relations): Use it.
14833
14834 2002-06-30 Akim Demaille <akim@epita.fr>
14835
14836 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14837 (item_number_of_rule_number, rule_number_of_item_number): New.
14838 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14839 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14840 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14841 Propagate their use.
14842 Much remains to be done, in particular wrt `shorts' from types.h.
14843
14844 2002-06-30 Akim Demaille <akim@epita.fr>
14845
14846 * src/symtab.c (symbol_new): Initialize the `printer' member.
14847
14848 2002-06-30 Akim Demaille <akim@epita.fr>
14849
14850 * src/LR0.c (save_reductions): Remove, replaced by...
14851 * src/state.h, src/state.c (state_reductions_set): New.
14852 (reductions, errs): Rename as...
14853 (reductions_t, errs_t): these.
14854 Adjust all dependencies.
14855
14856 2002-06-30 Akim Demaille <akim@epita.fr>
14857
14858 * src/LR0.c (state_list_t, state_list_append): New.
14859 (first_state, last_state): Now symbol_list_t.
14860 (this_state): Remove.
14861 (new_itemsets, append_states, save_reductions): Take a state_t as
14862 argument.
14863 (set_states, generate_states): Adjust.
14864 (save_shifts): Remove, replaced by...
14865 * src/state.h, src/state.c (state_shifts_set): New.
14866 (shifts): Rename as...
14867 (shifts_t): this.
14868 Adjust all dependencies.
14869 * src/state.h (state_t): Remove the `next' member.
14870
14871 2002-06-30 Akim Demaille <akim@epita.fr>
14872
14873 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14874 escaped in slot 0.
14875
14876 2002-06-30 Akim Demaille <akim@epita.fr>
14877
14878 Use hash.h for the state hash table.
14879
14880 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14881 (allocate_storage): Use state_hash_new.
14882 (free_storage): Use state_hash_free.
14883 (new_state, get_state): Adjust.
14884 * src/lalr.h, src/lalr.c (states): Move to...
14885 * src/states.h (state_t): Remove the `link' member, no longer
14886 used.
14887 * src/states.h, src/states.c: here.
14888 (state_hash_new, state_hash_free, state_hash_lookup)
14889 (state_hash_insert, states_free): New.
14890 * src/states.c (state_table, state_compare, state_hash): New.
14891 * src/output.c (output_actions): Do not free states now, since we
14892 still need to know the final_state number in `prepare', called
14893 afterwards. Do it...
14894 * src/main.c (main): here: call states_free after `output'.
14895
14896 2002-06-30 Akim Demaille <akim@epita.fr>
14897
14898 * src/state.h, src/state.c (state_new): New, extracted from...
14899 * src/LR0.c (new_state): here.
14900 * src/state.h (STATE_ALLOC): Move to...
14901 * src/state.c: here.
14902 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14903 * src/state.h, src/state.c: here.
14904
14905 2002-06-30 Akim Demaille <akim@epita.fr>
14906
14907 * src/reader.c (gensym): Rename as...
14908 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14909 (getsym): Rename as...
14910 (symbol_get): this.
14911
14912 2002-06-30 Akim Demaille <akim@epita.fr>
14913
14914 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14915 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14916 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14917 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14918
14919 2002-06-30 Akim Demaille <akim@epita.fr>
14920
14921 Make the test suite pass with warnings checked.
14922
14923 * tests/actions.at (Printers and Destructors): Improve.
14924 Avoid unsigned vs. signed issues.
14925 * tests/calc.at: Don't exercise the scanner here, do it...
14926 * tests/input.at (Torturing the Scanner): here.
14927
14928 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14929
14930 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14931 reorganize first lines parallel to yacc.c.
14932
14933 2002-06-28 Akim Demaille <akim@epita.fr>
14934
14935 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14936 (b4_token_enum, b4_token_defines): New, factored from...
14937 * data/lalr1.cc, data/yacc.c, glr.c: here.
14938
14939 2002-06-28 Akim Demaille <akim@epita.fr>
14940
14941 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14942 unused variables.
14943 * src/output.c (merger_output): static.
14944
14945 2002-06-28 Akim Demaille <akim@epita.fr>
14946
14947 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14948 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14949 pacify GCC.
14950 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14951
14952 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14953
14954 Accumulated changelog for new GLR parsing features.
14955
14956 * src/conflicts.c (count_total_conflicts): Change name to
14957 conflicts_total_count.
14958 * src/conflicts.h: Ditto.
14959 * src/output.c (token_actions): Use the new name.
14960 (output_conflicts): Change conflp => conflict_list_heads, and
14961 confl => conflict_list for better readability.
14962 * data/glr.c: Use the new names.
14963 * NEWS: Add self to GLR announcement.
14964
14965 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14966
14967 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14968 Akim Demaille.
14969
14970 * data/bison.glr: Change name to glr.c
14971 * data/glr.c: Renamed from bison.glr.
14972 * data/Makefile.am: Add glr.c
14973
14974 * src/getargs.c:
14975
14976 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14977 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14978
14979 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14980
14981 * data/bison.glr: Be sure to restore the
14982 current #line when returning to the skeleton contents after having
14983 exposed the input file's #line.
14984
14985 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14986
14987 * data/bison.glr: Bring up to date with changes to bison.simple.
14988
14989 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14990
14991 * data/bison.glr: Correct definitions that use b4_prefix.
14992 Various reformatting.
14993 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14994 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14995 yytokenp argument; now part of stack.
14996 (yychar): Define to behave as documented.
14997 (yyclearin): Ditto.
14998
14999 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15000
15001 * src/reader.h: Add declaration for free_merger_functions.
15002
15003 * src/reader.c (merge_functions): New variable.
15004 (get_merge_function): New function.
15005 (free_merger_functions): New function.
15006 (readgram): Check for %prec that is not followed by a symbol.
15007 Handle %dprec and %merge declarations.
15008 (packgram): Initialize dprec and merger fields in rules array.
15009
15010 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
15011 conflict_list_cnt, conflict_list_free): New variables.
15012 (table_grow): Also grow conflict_table.
15013 (prepare_rules): Output dprec and merger tables.
15014 (conflict_row): New function.
15015 (action_row): Output conflict lists for GLR parser. Don't use
15016 default reduction in conflicted states for GLR parser so that there
15017 are spaces for the conflict lists.
15018 (save_row): Also save conflict information.
15019 (token_actions): Allocate conflict list.
15020 (merger_output): New function.
15021 (pack_vector): Pack conflict table, too.
15022 (output_conflicts): New function to output yyconflp and yyconfl.
15023 (output_check): Allocate conflict_tos.
15024 (output_actions): Output conflict tables, also.
15025 (output_skeleton): Output b4_mergers definition.
15026 (prepare): Output b4_max_rhs_length definition.
15027 Use 'bison.glr' as default skeleton for GLR parsers.
15028
15029 * src/gram.c (glr_parser): New flag.
15030 (grammar_free): Call free_merger_functions.
15031
15032 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
15033 all pairs of conflicting reductions, rather than just all tokens
15034 causing conflicts. Needed to size conflict tables.
15035 (conflicts_output): Modify call to count_rr_conflicts for new
15036 interface.
15037 (conflicts_print): Ditto.
15038 (count_total_conflicts): New function.
15039
15040 * src/reader.h (merger_list): New type.
15041 (merge_functions): New variable.
15042
15043 * src/lex.h (tok_dprec, tok_merge): New token types.
15044
15045 * src/gram.h (rule_s): Add dprec and merger fields.
15046 (glr_parser): New flag.
15047
15048 * src/conflicts.h (count_total_conflicts): New function.
15049
15050 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
15051
15052 * doc/bison.texinfo (Generalized LR Parsing): New section.
15053 (GLR Parsers): New section.
15054 (Language and Grammar): Mention GLR parsing.
15055 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
15056 Correct typo ("tge" -> "the").
15057
15058 * data/bison.glr: New skeleton for GLR parsing.
15059
15060 * tests/cxx-gram.at: New tests for GLR parsing.
15061
15062 * tests/testsuite.at: Include cxx-gram.at.
15063
15064 * tests/Makefile.am: Add cxx-gram.at.
15065
15066 * src/parse-gram.y:
15067
15068 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
15069
15070 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
15071
15072 2002-06-27 Akim Demaille <akim@epita.fr>
15073
15074 * src/options.h, src/options.c: Remove.
15075 * src/getargs.c (short_options, long_options): New.
15076
15077 2002-06-27 Akim Demaille <akim@epita.fr>
15078
15079 * data/bison.simple, data/bison.c++: Rename as...
15080 * data/yacc.c, data/lalr1.cc: these.
15081 * doc/bison.texinfo (Environment Variables): Remove.
15082
15083 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
15084
15085 * src/getargs.c (report_argmatch): Initialize strtok().
15086
15087 2002-06-20 Akim Demaille <akim@epita.fr>
15088
15089 * data/bison.simple (b4_symbol_actions): New, replaces...
15090 (b4_symbol_destructor, b4_symbol_printer): these.
15091 (yysymprint): Be sure to call YYPRINT only for tokens, and using
15092 user token numbers.
15093
15094 2002-06-20 Akim Demaille <akim@epita.fr>
15095
15096 * data/bison.simple (yydestructor): Rename as...
15097 (yydestruct): this.
15098
15099 2002-06-20 Akim Demaille <akim@epita.fr>
15100
15101 * src/symtab.h, src/symtab.c (symbol_type_set)
15102 (symbol_destructor_set, symbol_precedence_set): The location is
15103 the last argument.
15104 Adjust all callers.
15105
15106 2002-06-20 Akim Demaille <akim@epita.fr>
15107
15108 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
15109 internals.
15110 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
15111 Takes a location.
15112 * src/symtab.h, src/symtab.c (symbol_class_set)
15113 (symbol_user_token_number_set): Likewise.
15114 Adjust all callers.
15115 Promote complain_at.
15116 * tests/input.at (Type Clashes): Adjust.
15117
15118 2002-06-20 Akim Demaille <akim@epita.fr>
15119
15120 * data/bison.simple (YYLEX): Fix the declaration when
15121 %pure-parser.
15122
15123 2002-06-20 Akim Demaille <akim@epita.fr>
15124
15125 * data/bison.simple (yysymprint): Don't print the token number,
15126 just its name.
15127 * tests/actions.at (Destructors): Rename as...
15128 (Printers and Destructors): this.
15129 Also exercise %printer.
15130
15131 2002-06-20 Akim Demaille <akim@epita.fr>
15132
15133 * data/bison.simple (YYDSYMPRINT): New.
15134 Use it to remove many of the #if YYDEBUG/if (yydebug).
15135
15136 2002-06-20 Akim Demaille <akim@epita.fr>
15137
15138 * src/symtab.h, src/symtab.c (symbol_t): printer and
15139 printer_location are new members.
15140 (symbol_printer_set): New.
15141 * src/parse-gram.y (PERCENT_PRINTER): New token.
15142 Handle its associated rule.
15143 * src/scan-gram.l: Adjust.
15144 (handle_destructor_at, handle_destructor_dollar): Rename as...
15145 (handle_symbol_code_at, handle_symbol_code_dollar): these.
15146 * src/output.c (symbol_printers_output): New.
15147 (output_skeleton): Call it.
15148 * data/bison.simple (yysymprint): New. Cannot be named yyprint
15149 since there are already many grammar files with a user `yyprint'.
15150 Replace the calls to YYPRINT to calls to yysymprint.
15151 * tests/calc.at: Adjust.
15152 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
15153 taking advantage of parser very internal details (stack size!).
15154
15155 2002-06-20 Akim Demaille <akim@epita.fr>
15156
15157 * src/scan-gram.l: Complete the scanner with the missing patterns
15158 to pacify Flex.
15159 Use `quote' and `symbol_tag_get' where appropriate.
15160
15161 2002-06-19 Akim Demaille <akim@epita.fr>
15162
15163 * tests/actions.at (Destructors): Augment to test locations.
15164 * data/bison.simple (yydestructor): Pass it the current location
15165 if locations are enabled.
15166 Prototype only when __STDC__ or C++.
15167 Change the argument names to move into the yy name space: there is
15168 user code here.
15169
15170 2002-06-19 Akim Demaille <akim@epita.fr>
15171
15172 * data/bison.simple (b4_pure_if): New.
15173 Use it instead of #ifdef YYPURE.
15174
15175 2002-06-19 Akim Demaille <akim@epita.fr>
15176
15177 * data/bison.simple (b4_location_if): New.
15178 Use it instead of #ifdef YYLSP_NEEDED.
15179
15180 2002-06-19 Akim Demaille <akim@epita.fr>
15181
15182 Prepare @$ in %destructor, but currently don't bind it in the
15183 skeleton, as %location use is not cleaned up yet.
15184
15185 * src/scan-gram.l (handle_dollar, handle_destructor_at)
15186 (handle_action_at): New.
15187 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
15188 a braced_code_t and a location as additional arguments.
15189 (handle_destructor_dollar): Instead of requiring `b4_eval', just
15190 unquote one when outputting `b4_dollar_dollar'.
15191 Adjust callers.
15192 * data/bison.simple (b4_eval): Remove.
15193 (b4_symbol_destructor): Adjust.
15194 * tests/input.at (Invalid @n): Adjust.
15195
15196 2002-06-19 Zack Weinberg <zack@codesourcery.com>
15197
15198 * doc/bison.texinfo: Document ability to have multiple
15199 prologue sections.
15200
15201 2002-06-18 Akim Demaille <akim@epita.fr>
15202
15203 * src/files.c (compute_base_names): When computing the output file
15204 names from the input file name, strip the directory part.
15205
15206 2002-06-18 Akim Demaille <akim@epita.fr>
15207
15208 * data/bison.simple.new: Comment changes.
15209 Reported by Andreas Schwab.
15210
15211 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
15212
15213 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
15214 there are no `label `yyoverflowlab' defined but not used' warnings
15215 when yyoverflow is defined.
15216
15217 2002-06-18 Akim Demaille <akim@epita.fr>
15218
15219 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
15220 new member.
15221 (symbol_destructor_set): Adjust.
15222 * src/output.c (symbol_destructors_output): Output the destructor
15223 locations.
15224 Output the symbol name.
15225 * data/bison.simple (b4_symbol_destructor): Adjust.
15226
15227 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15228 and Akim Demaille <akim@epita.fr>
15229
15230 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15231 what's left on the stack when the error recovery hits EOF.
15232 * tests/actions.at (Destructors): Complete to exercise this case.
15233
15234 2002-06-17 Akim Demaille <akim@epita.fr>
15235
15236 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15237 arguments is really empty, not only equal to `[]'.
15238 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15239 member.
15240 (symbol_destructor_set): New.
15241 * src/output.c (symbol_destructors_output): New.
15242 * src/reader.h (brace_code_t, current_braced_code): New.
15243 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15244 (handle_dollar): Rename as...
15245 (handle_action_dollar): this.
15246 (handle_destructor_dollar): New.
15247 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15248 (grammar_declaration): Use it.
15249 * data/bison.simple (yystos): Is always defined.
15250 (yydestructor): New.
15251 * tests/actions.at (Destructors): New.
15252 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15253
15254 2002-06-17 Akim Demaille <akim@epita.fr>
15255
15256 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15257 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15258 rule_length only when needed.
15259 * src/output.c (actions_output, token_definitions_output): Output
15260 the full M4 block.
15261 * src/symtab.c: Don't access directly to the symbol tag, use
15262 symbol_tag_get.
15263 * src/parse-gram.y: Use symbol_list_free.
15264
15265 2002-06-17 Akim Demaille <akim@epita.fr>
15266
15267 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15268 (symbol_list_prepend, get_type_name): Move to...
15269 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15270 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15271 Adjust all callers.
15272 (symbol_list_free): New.
15273 * src/scan-gram.l (handle_dollar): Takes a location.
15274 * tests/input.at (Invalid $n): Adjust.
15275
15276 2002-06-17 Akim Demaille <akim@epita.fr>
15277
15278 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15279 (symbol_list_prepend): New.
15280 * src/parse-gram.y (%union): `list' is a new member.
15281 (symbols.1): New, replaces...
15282 (terms_to_prec.1, nterms_to_type.1): these.
15283 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15284 Take a location as additional argument.
15285 Adjust all callers.
15286
15287 2002-06-15 Akim Demaille <akim@epita.fr>
15288
15289 * src/parse-gram.y: Move %token in the declaration section so that
15290 we don't depend upon CVS Bison.
15291
15292 2002-06-15 Akim Demaille <akim@epita.fr>
15293
15294 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15295 * src/print.c (print_core): Use it.
15296
15297 2002-06-15 Akim Demaille <akim@epita.fr>
15298
15299 * src/conflicts.c (log_resolution): Accept the rule involved in
15300 the sr conflicts instead of the lookahead number that points to
15301 that rule.
15302 (flush_reduce): Accept the current lookahead vector as argument,
15303 instead of the index in LA.
15304 (resolve_sr_conflict): Accept the current number of lookahead
15305 bitset to consider for the STATE, instead of the index in LA.
15306 (set_conflicts): Adjust.
15307 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15308
15309 2002-06-15 Akim Demaille <akim@epita.fr>
15310
15311 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15312 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15313 Adjust all dependencies.
15314 * src/lalr.c (initialize_lookaheads): Split into...
15315 (states_lookaheads_count, states_lookaheads_initialize): these.
15316 (lalr): Adjust.
15317
15318 2002-06-15 Akim Demaille <akim@epita.fr>
15319
15320 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15321 out of...
15322 (grammar_rules_print): here.
15323 * src/reduce.c (reduce_output): Use it.
15324 * tests/reduce.at (Useless Rules, Reduced Automaton)
15325 (Underivable Rules): Adjust.
15326
15327 2002-06-15 Akim Demaille <akim@epita.fr>
15328
15329 Copy BYacc's nice way to report the grammar.
15330
15331 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15332 New.
15333 Don't print the rules' location, it is confusing and useless.
15334 (rule_print): Use grammar_rhs_print.
15335 * src/print.c (print_grammar): Use grammar_rules_print.
15336
15337 2002-06-15 Akim Demaille <akim@epita.fr>
15338
15339 Complete and rationalize `useless thing' warnings.
15340
15341 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15342 (symbol_tag_print): New.
15343 Use them everywhere in place of accessing directly the tag member.
15344 * src/gram.h, src/gram.c (rule_print): New.
15345 Use it where a rule used to be printed `by hand'.
15346 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15347 (reduce_grammar_tables): Report the useless rules.
15348 (reduce_print): Useless things are a warning, not an error.
15349 Report it as such.
15350 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15351 (Reduced Automaton, Underivable Rules): Adjust.
15352 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15353 * tests/conflicts.at (Unresolved SR Conflicts)
15354 (Solved SR Conflicts): Adjust.
15355
15356 2002-06-15 Akim Demaille <akim@epita.fr>
15357
15358 Let symbols have a location.
15359
15360 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15361 (getsym): Adjust.
15362 Adjust all callers.
15363 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15364 Use location_t, not int.
15365 * src/symtab.c (symbol_check_defined): Take advantage of the
15366 location.
15367 * tests/regression.at (Invalid inputs): Adjust.
15368
15369 2002-06-15 Akim Demaille <akim@epita.fr>
15370
15371 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15372 (input): Don't try to initialize yylloc here, do it in the
15373 scanner.
15374 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15375 * src/gram.h (rule_t): Change line and action_line into location
15376 and action_location, of location_t type.
15377 Adjust all dependencies.
15378 * src/location.h, src/location.c (empty_location): New.
15379 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15380 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15381 (grammar_current_rule_symbol_append)
15382 (grammar_current_rule_action_append): Expect a location as argument.
15383 * src/reader.c (grammar_midrule_action): Adjust to attach an
15384 action's location as dummy symbol location.
15385 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15386 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15387 the line numbers.
15388
15389 2002-06-14 Akim Demaille <akim@epita.fr>
15390
15391 Grammar declarations may be found in the grammar section.
15392
15393 * src/parse-gram.y (rules_or_grammar_declaration): New.
15394 (declarations): Each declaration may end with a semicolon, not
15395 just...
15396 (grammar_declaration): `"%union"'.
15397 (grammar): Branch to rules_or_grammar_declaration.
15398
15399 2002-06-14 Akim Demaille <akim@epita.fr>
15400
15401 * src/main.c (main): Invoke scanner_free.
15402
15403 2002-06-14 Akim Demaille <akim@epita.fr>
15404
15405 * src/output.c (m4_invoke): Extracted from...
15406 (output_skeleton): here.
15407 Free tempfile.
15408
15409 2002-06-14 Akim Demaille <akim@epita.fr>
15410
15411 * src/parse-gram.y (directives, directive, gram)
15412 (grammar_directives, precedence_directives, precedence_directive):
15413 Rename as...
15414 (declarations, declaration, grammar, grammar_declaration)
15415 (precedence_declaration, precedence_declarator): these.
15416 (symbol_declaration): New.
15417
15418 2002-06-14 Akim Demaille <akim@epita.fr>
15419
15420 * src/files.c (action_obstack): Remove, unused.
15421 (output_obstack): Remove it, and all its dependencies, as it is no
15422 longer needed.
15423 * src/reader.c (epilogue_set): Build the epilogue in the
15424 muscle_obstack.
15425 * src/output.h, src/output.c (muscle_obstack): Move to...
15426 * src/muscle_tab.h, src/muscle_tab.h: here.
15427 (muscle_init): Initialize muscle_obstack.
15428 (muscle_free): New.
15429 * src/main.c (main): Call it.
15430
15431 2002-06-14 Akim Demaille <akim@epita.fr>
15432
15433 * src/location.h: New, extracted from...
15434 * src/reader.h: here.
15435 * src/Makefile.am (noinst_HEADERS): Merge into
15436 (bison_SOURCES): this.
15437 Add location.h.
15438 * src/parse-gram.y: Use location_t instead of Bison's.
15439 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15440 Use location_t instead of ints.
15441
15442 2002-06-14 Akim Demaille <akim@epita.fr>
15443
15444 * data/bison.simple, data/bison.c++: Be sure to restore the
15445 current #line when returning to the skeleton contents after having
15446 exposed the input file's #line.
15447
15448 2002-06-12 Akim Demaille <akim@epita.fr>
15449
15450 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15451 eager.
15452 * tests/actions.at (Exotic Dollars): New.
15453
15454 2002-06-12 Akim Demaille <akim@epita.fr>
15455
15456 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15457 ['"/] too eagerly.
15458 * tests/input.at (Torturing the Scanner): New.
15459
15460 2002-06-11 Akim Demaille <akim@epita.fr>
15461
15462 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15463 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15464 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15465 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15466 * src/reader.c (reader): Use it.
15467
15468 2002-06-11 Akim Demaille <akim@epita.fr>
15469
15470 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15471 Adjust all callers.
15472 (scanner_last_string_free): New.
15473
15474 2002-06-11 Akim Demaille <akim@epita.fr>
15475
15476 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15477 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15478 (last_string, YY_OBS_FREE): New.
15479 Use them when returning an ID.
15480
15481 2002-06-11 Akim Demaille <akim@epita.fr>
15482
15483 Have Bison grammars parsed by a Bison grammar.
15484
15485 * src/reader.c, src/reader.h (prologue_augment): New.
15486 * src/reader.c (copy_definition): Remove.
15487
15488 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15489 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15490 (grammar_current_rule_prec_set, grammar_current_rule_check)
15491 (grammar_current_rule_symbol_append)
15492 (grammar_current_rule_action_append): Export.
15493 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15494 (symbol_list_action_append): Remove.
15495 Hook the routines from reader.
15496 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15497 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15498
15499 * src/reader.c (read_declarations): Remove, unused.
15500
15501 * src/parse-gram.y: Handle the epilogue.
15502 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15503 (grammar_start_symbol_set): this.
15504 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15505 * src/reader.c (readgram): Remove, unused.
15506 (reader): Adjust to insert eoftoken and axiom where appropriate.
15507
15508 * src/reader.c (copy_dollar): Replace with...
15509 * src/scan-gram.h (handle_dollar): this.
15510 * src/parse-gram.y: Remove `%thong'.
15511
15512 * src/reader.c (copy_at): Replace with...
15513 * src/scan-gram.h (handle_at): this.
15514
15515 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15516 New.
15517
15518 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15519 time being.
15520
15521 * src/reader.h, src/reader.c (grammar_rule_end): New.
15522
15523 * src/parse.y (current_type, current_class): New.
15524 Implement `%nterm', `%token' support.
15525 Merge `%term' into `%token'.
15526 (string_as_id): New.
15527 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15528 type name.
15529
15530 * src/parse-gram.y: Be sure to handle properly the beginning of
15531 rules.
15532
15533 * src/parse-gram.y: Handle %type.
15534 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15535
15536 * src/parse-gram.y: More directives support.
15537 * src/options.c: No longer handle source directives.
15538
15539 * src/parse-gram.y: Fix %output.
15540
15541 * src/parse-gram.y: Handle %union.
15542 Use the prologue locations.
15543 * src/reader.c (parse_union_decl): Remove.
15544
15545 * src/reader.h, src/reader.c (epilogue_set): New.
15546 * src/parse-gram.y: Use it.
15547
15548 * data/bison.simple, data/bison.c++: b4_stype is now either not
15549 defined, then default to int, or to the contents of %union,
15550 without `union' itself.
15551 Adjust.
15552 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15553
15554 * src/output.c (actions_output): Don't output braces, as they are
15555 already handled by the scanner.
15556
15557 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15558 characters to themselves.
15559
15560 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15561 that the epilogue has a proper #line.
15562
15563 * src/parse-gram.y: Handle precedence/associativity.
15564
15565 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15566 a terminal.
15567 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15568 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15569 at all to define terminals that cannot be emitted.
15570
15571 * src/scan-gram.l: Escape M4 characters.
15572
15573 * src/scan-gram.l: Working properly with escapes in user
15574 strings/characters.
15575
15576 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15577 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15578 grammar.
15579 Use more modest sizes, as for the time being the parser does not
15580 release memory, and therefore the process swallows a huge amount
15581 of memory.
15582
15583 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15584 stricter %token grammar.
15585
15586 * src/symtab.h (associativity): Add `undef_assoc'.
15587 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15588 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15589
15590 * tests/regression.at (Invalid %directive): Remove, as it is now
15591 meaningless.
15592 (Invalid inputs): Adjust to the new error messages.
15593 (Token definitions): The new grammar doesn't allow too many
15594 eccentricities.
15595
15596 * src/lex.h, src/lex.c: Remove.
15597 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15598 (copy_character, copy_string2, copy_string, copy_identifier)
15599 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15600 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15601 (parse_action): Remove.
15602 * po/POTFILES.in: Adjust.
15603
15604 2002-06-11 Akim Demaille <akim@epita.fr>
15605
15606 * src/reader.c (parse_action): Don't store directly into the
15607 rule's action member: return the action as a string.
15608 Don't require `rule_length' as an argument: compute it.
15609 (grammar_current_rule_symbol_append)
15610 (grammar_current_rule_action_append): New, eved out from
15611 (readgram): here.
15612 Remove `action_flag', `rulelength', unused now.
15613
15614 2002-06-11 Akim Demaille <akim@epita.fr>
15615
15616 * src/reader.c (grammar_current_rule_prec_set).
15617 (grammar_current_rule_check): New, eved out from...
15618 (readgram): here.
15619 Remove `xaction', `first_rhs': useless.
15620 * tests/input.at (Type clashes): New.
15621 * tests/existing.at (GNU Cim Grammar): Adjust.
15622
15623 2002-06-11 Akim Demaille <akim@epita.fr>
15624
15625 * src/reader.c (grammar_midrule_action): New, Eved out from
15626 (readgram): here.
15627
15628 2002-06-11 Akim Demaille <akim@epita.fr>
15629
15630 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15631 New.
15632 (readgram): Use them as replacement of inlined code, crule and
15633 crule1.
15634
15635 2002-06-11 Akim Demaille <akim@epita.fr>
15636
15637 * src/reader.c (grammar_end, grammar_symbol_append): New.
15638 (readgram): Use them.
15639 Make the use of `p' as local as possible.
15640
15641 2002-06-10 Akim Demaille <akim@epita.fr>
15642
15643 GCJ's parser requires the tokens to be defined before the prologue.
15644
15645 * data/bison.simple: Output the token definition before the user's
15646 prologue.
15647 * tests/regression.at (Braces parsing, Duplicate string)
15648 (Mixing %token styles): Check the output from bison.
15649 (Early token definitions): New.
15650
15651 2002-06-10 Akim Demaille <akim@epita.fr>
15652
15653 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15654 assigning twice the same user number to a token, so that we can
15655 use it in...
15656 * src/lex.c (lex): here.
15657 Also use `symbol_class_set' instead of hand written code.
15658 * src/reader.c (parse_assoc_decl): Likewise.
15659
15660 2002-06-10 Akim Demaille <akim@epita.fr>
15661
15662 * src/symtab.c, src/symtab.c (symbol_class_set)
15663 (symbol_user_token_number_set): New.
15664 * src/reader.c (parse_token_decl): Use them.
15665 Use a switch instead of ifs.
15666 Use a single argument.
15667
15668 2002-06-10 Akim Demaille <akim@epita.fr>
15669
15670 Remove `%thong' support as it is undocumented, unused, duplicates
15671 `%token's job, and creates useless e-mail traffic with people who
15672 want to know what it is, why it is undocumented, unused, and
15673 duplicates `%token's job.
15674
15675 * src/reader.c (parse_thong_decl): Remove.
15676 * src/options.c (option_table): Remove "thong".
15677 * src/lex.h (tok_thong): Remove.
15678
15679 2002-06-10 Akim Demaille <akim@epita.fr>
15680
15681 * src/symtab.c, src/symtab.c (symbol_type_set)
15682 (symbol_precedence_set): New.
15683 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15684 (value_components_used): Remove, unused.
15685
15686 2002-06-09 Akim Demaille <akim@epita.fr>
15687
15688 Move symbols handling code out of the reader.
15689
15690 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15691 (axiom): Move to...
15692 * src/symtab.h, src/symtab.c: here.
15693
15694 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15695 * src/reader.c (startval): Rename as...
15696 * src/symtab.h, src/symtab.c (startsymbol): this.
15697 * src/reader.c: Adjust.
15698
15699 * src/reader.c (symbol_check_defined, symbol_make_alias)
15700 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15701 (token_translations_init)
15702 Move to...
15703 * src/symtab.c: here.
15704 * src/reader.c (packsymbols): Move to...
15705 * src/symtab.h, src/symtab.c (symbols_pack): here.
15706 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15707 argument.
15708
15709 2002-06-03 Akim Demaille <akim@epita.fr>
15710
15711 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15712 then statements.
15713
15714 2002-06-03 Akim Demaille <akim@epita.fr>
15715
15716 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15717 structs with non literals.
15718 * src/scan-skel.l: never-interactive.
15719 * src/conflicts.c (enum conflict_resolution_e): No trailing
15720 comma.
15721 * src/getargs.c (usage): Split long literal strings.
15722 Reported by Hans Aberg.
15723
15724 2002-05-28 Akim Demaille <akim@epita.fr>
15725
15726 * data/bison.c++: Use C++ ostreams.
15727 (cdebug_): New member.
15728
15729 2002-05-28 Akim Demaille <akim@epita.fr>
15730
15731 * src/output.c (output_skeleton): Be sure to allocate enough room
15732 for `/' _and_ for `\0' in full_skeleton.
15733
15734 2002-05-28 Akim Demaille <akim@epita.fr>
15735
15736 * data/bison.c++: Catch up with bison.simple:
15737 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15738 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15739 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15740 and popping traces.
15741
15742 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15743
15744 * src/output.c (output_skeleton): Put an explicit path in front of
15745 the skeleton file name, rather than relying on the -I directory,
15746 to partially alleviate effects of having a skeleton file lying around
15747 in the current directory.
15748
15749 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15750
15751 * src/conflicts.c (log_resolution): Correct typo:
15752 obstack_printf should be obstack_fgrow1.
15753
15754 2002-05-26 Akim Demaille <akim@epita.fr>
15755
15756 * src/state.h (state_t): `solved_conflicts' is a new member.
15757 * src/LR0.c (new_state): Set it to 0.
15758 * src/conflicts.h, src/conflicts.c (print_conflicts)
15759 (free_conflicts, solve_conflicts): Rename as...
15760 (conflicts_print, conflicts_free, conflicts_solve): these.
15761 Adjust callers.
15762 * src/conflicts.c (enum conflict_resolution_e)
15763 (solved_conflicts_obstack): New, used by...
15764 (log_resolution): this.
15765 Adjust to attach the conflict resolution to each state.
15766 Complete the description with the precedence/associativity
15767 information.
15768 (resolve_sr_conflict): Adjust.
15769 * src/print.c (print_state): Output its solved_conflicts.
15770 * tests/conflicts.at (Unresolved SR Conflicts)
15771 (Solved SR Conflicts): Exercise --report=all.
15772
15773 2002-05-26 Akim Demaille <akim@epita.fr>
15774
15775 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15776 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15777 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15778 (token_number_t, item_number_as_token_number)
15779 (token_number_as_item_number, muscle_insert_token_number_table):
15780 Rename as...
15781 (symbol_number_t, item_number_as_symbol_number)
15782 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15783 these, since it is more appropriate.
15784
15785 2002-05-26 Akim Demaille <akim@epita.fr>
15786
15787 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15788 `Error:' lines.
15789 * data/bison.simple (yystos) [YYDEBUG]: New.
15790 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15791 error recovery.
15792 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15793
15794 2002-05-25 Akim Demaille <akim@epita.fr>
15795
15796 * doc/bison.texinfo (Debugging): Split into...
15797 (Tracing): this new section, its former contents, and...
15798 (Understanding): this new section.
15799 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15800 by...
15801 (report_flag): this.
15802 Adjust all dependencies.
15803 (report_args, report_types, report_argmatch): New.
15804 (usage, getargs): Report/support -r, --report.
15805 * src/options.h
15806 (struct option_table_struct): Rename as..,
15807 (struct option_table_s): this.
15808 Rename the `set_flag' member to `flag' to match with getopt_long's
15809 struct.
15810 * src/options.c (option_table): Split verbose into an entry for
15811 %verbose, and another for --verbose.
15812 Support --report/-r, so remove -r from the obsolete --raw.
15813 * src/print.c: Attach full item sets and lookaheads reports to
15814 report_flag instead of trace_flag.
15815 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15816
15817 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15818 and Paul Eggert <eggert@twinsun.com>
15819
15820 * data/bison.simple (yyparse): Correct error handling to conform to
15821 POSIX and yacc. Specifically, after syntax error is discovered,
15822 do not reduce further before shifting the error token.
15823 Clean up the code a bit by removing the labels yyerrdefault,
15824 yyerrhandle, yyerrpop.
15825 * NEWS: Document the above.
15826
15827 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15828
15829 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15830 type; it isn't always big enough, since it doesn't necessarily
15831 include non-terminals.
15832 (yytranslate): Expand definition of yy_token_number_type, so that
15833 the latter can be removed.
15834 (yy_token_number_type): Remove, only one use.
15835 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15836 don't use TokenNumberType as element type.
15837
15838 * tests/regression.at: Modify expected output to agree with change
15839 to yyr1 and yytranslate.
15840
15841 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15842
15843 * src/reader.c (parse_action): Use copy_character instead of
15844 obstack_1grow.
15845
15846 2002-05-13 Akim Demaille <akim@epita.fr>
15847
15848 * tests/regression.at (Token definitions): Prototype yylex and
15849 yyerror.
15850
15851 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15852
15853 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15854 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15855 32-bit arithmetic.
15856 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15857
15858 2002-05-07 Akim Demaille <akim@epita.fr>
15859
15860 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15861 avoid GCC warnings.
15862
15863 2002-05-07 Akim Demaille <akim@epita.fr>
15864
15865 Kill GCC warnings.
15866
15867 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15868 over the RHS of each rule.
15869 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15870 * src/state.h (state_t): Member `nitems' is unsigned short.
15871 * src/LR0.c (get_state): Adjust.
15872 * src/reader.c (packgram): Likewise.
15873 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15874 `Type'.
15875 (muscle_insert_int_table): Remove, unused.
15876 (prepare_rules): Remove `max'.
15877
15878 2002-05-06 Akim Demaille <akim@epita.fr>
15879
15880 * src/closure.c (print_firsts): Display of the symbol tags.
15881 (bitmatrix_print): Move to...
15882 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15883 here.
15884 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15885
15886 2002-05-06 Akim Demaille <akim@epita.fr>
15887
15888 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15889 hash_do_for_each.
15890
15891 2002-05-06 Akim Demaille <akim@epita.fr>
15892
15893 * src/LR0.c (new_state, get_state): Instead of using the global
15894 `kernel_size' and `kernel_base', have two new arguments:
15895 `core_size' and `core'.
15896 Adjust callers.
15897
15898 2002-05-06 Akim Demaille <akim@epita.fr>
15899
15900 * src/reader.c (packgram): No longer end `ritem' with a 0
15901 sentinel: it is not used.
15902
15903 2002-05-05 Akim Demaille <akim@epita.fr>
15904
15905 New experimental feature: display the lookaheads in the report and
15906 graph.
15907
15908 * src/print (print_core): When --trace-flag, display the rules
15909 lookaheads.
15910 * src/print_graph.c (print_core): Likewise.
15911 Swap the arguments.
15912 Adjust caller.
15913
15914 2002-05-05 Akim Demaille <akim@epita.fr>
15915
15916 * tests/torture.at (Many lookaheads): New test.
15917
15918 2002-05-05 Akim Demaille <akim@epita.fr>
15919
15920 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15921 (GENERATE_MUSCLE_INSERT_TABLE): this.
15922 (output_int_table, output_unsigned_int_table, output_short_table)
15923 (output_token_number_table, output_item_number_table): Replace with...
15924 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15925 (muscle_insert_short_table, muscle_insert_token_number_table)
15926 (muscle_insert_item_number_table): these.
15927 Adjust all callers.
15928 (prepare_tokens): Don't free `translations', since...
15929 * src/reader.h, src/reader.c (grammar_free): do it.
15930 Move to...
15931 * src/gram.h, src/gram.c (grammar_free): here.
15932 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15933 b4_translate_max.
15934
15935 2002-05-05 Akim Demaille <akim@epita.fr>
15936
15937 * src/output.c (output_unsigned_int_table): New.
15938 (prepare_rules): `i' is unsigned.
15939 `prhs', `rline', `r2' are unsigned int.
15940 Rename muscle `rhs_number_max' as `rhs_max'.
15941 Output muscles `prhs_max', `rline_max', and `r2_max'.
15942 Free rline and r1.
15943 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15944 to compute types instead of constant types.
15945 * tests/regression.at (Web2c Actions): Adjust.
15946
15947 2002-05-04 Akim Demaille <akim@epita.fr>
15948
15949 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15950 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15951 Adjust dependencies.
15952 * src/output.c (token_definitions_output): Be sure not to output a
15953 `#define 'a'' when fed with `%token 'a' "a"'.
15954 * tests/regression.at (Token definitions): New.
15955
15956 2002-05-03 Paul Eggert <eggert@twinsun.com>
15957
15958 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15959 for K&R C.
15960
15961 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15962
15963 * Makefile.am (SUBDIRS): Remove intl.
15964 (EXTRA_DIST): Add config/config.rpath.
15965
15966 2002-05-03 Akim Demaille <akim@epita.fr>
15967
15968 * data/bison.simple (m4_if): Don't output empty enums.
15969 And actually, output valid enum definitions :(.
15970
15971 2002-05-03 Akim Demaille <akim@epita.fr>
15972
15973 * configure.bat: Remove, completely obsolete.
15974 * Makefile.am (EXTRA_DIST): Adjust.
15975 Don't distribute config.rpath...
15976 * config/Makefile.am (EXTRA_DIST): Do it.
15977
15978 2002-05-03 Akim Demaille <akim@epita.fr>
15979
15980 * configure.in (GETTEXT_VERSION): New.
15981 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15982
15983 2002-05-03 Akim Demaille <akim@epita.fr>
15984
15985 * data/bison.simple (b4_token_enum): New.
15986 (b4_token_defines): Use it to output tokens both as #define and
15987 enums.
15988 Suggested by Paul Eggert.
15989 * src/output.c (token_definitions_output): Don't output spurious
15990 white spaces.
15991
15992 2002-05-03 Akim Demaille <akim@epita.fr>
15993
15994 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15995
15996 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15997
15998 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15999 Update the stack class, give a try to deque as the default container.
16000
16001 2002-05-02 Akim Demaille <akim@epita.fr>
16002
16003 * data/bison.simple (yyparse): Do not implement @$ = @1.
16004 (YYLLOC_DEFAULT): Adjust to do it.
16005 * doc/bison.texinfo (Location Default Action): Fix.
16006
16007 2002-05-02 Akim Demaille <akim@epita.fr>
16008
16009 * src/reader.c (parse_braces): Merge into...
16010 (parse_action): this.
16011
16012 2002-05-02 Akim Demaille <akim@epita.fr>
16013
16014 * configure.in (ALL_LINGUAS): Remove.
16015 * po/LINGUAS, hr.po: New.
16016
16017 2002-05-02 Akim Demaille <akim@epita.fr>
16018
16019 Remove the so called hairy (semantic) parsers.
16020
16021 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
16022 * src/gram.h, src/gram.c (semantic_parser): Remove.
16023 (rule_t): Remove the guard and guard_line members.
16024 * src/lex.h (token_t): remove tok_guard.
16025 * src/options.c (option_table): Remove %guard and %semantic_parser
16026 support.
16027 * src/output.c, src/output.h (guards_output): Remove.
16028 (prepare): Adjust.
16029 (token_definitions_output): Don't output the `T'
16030 tokens (???).
16031 (output_skeleton): Don't output the guards.
16032 * src/files.c, src/files.c (attrsfile): Remove.
16033 * src/reader.c (symbol_list): Remove the guard and guard_line
16034 members.
16035 Adjust dependencies.
16036 (parse_guard): Remove.
16037 * data/bison.hairy: Remove.
16038 * doc/bison.texinfo (Environment Variables): Remove occurrences of
16039 BISON_HAIRY.
16040
16041 2002-05-02 Akim Demaille <akim@epita.fr>
16042
16043 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
16044 (parse_guard): Rename the formal argument `stack_offset' as
16045 `rule_length', which is more readable.
16046 Adjust callers.
16047 (copy_at, copy_dollar): Instead of outputting the hard coded
16048 values of $$, $n and so forth, output invocation to b4_lhs_value,
16049 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
16050 Note: this patch partially drops `semantic-parser' support: it
16051 always does `rule_length - n', where semantic parsers ought to
16052 always use `-n'.
16053 * data/bison.simple, data/bison.c++ (b4_lhs_value)
16054 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
16055
16056 2002-05-02 Akim Demaille <akim@epita.fr>
16057
16058 * configure.in (AC_INIT): Bump to 1.49b.
16059 (AM_INIT_AUTOMAKE): Short invocation.
16060
16061 2002-05-02 Akim Demaille <akim@epita.fr>
16062
16063 Version 1.49a.
16064
16065 2002-05-01 Akim Demaille <akim@epita.fr>
16066
16067 * src/skeleton.h: Remove.
16068
16069 2002-05-01 Akim Demaille <akim@epita.fr>
16070
16071 * src/skeleton.h: Fix the #endif.
16072 Reported by Magnus Fromreide.
16073
16074 2002-04-26 Paul Eggert <eggert@twinsun.com>
16075
16076 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
16077 Define if we define YYSTYPE and YYLTYPE, respectively.
16078 (YYCOPY): Fix [] quoting problem in the non-GCC case.
16079
16080 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
16081
16082 * src/scan-skel.l: Postprocess quadrigraphs.
16083
16084 * src/reader.c (copy_character): New function, used to output
16085 single characters while replacing `[' and `]' with quadrigraphs, to
16086 avoid troubles with M4 quotes.
16087 (copy_comment): Output characters with copy_character.
16088 (read_additionnal_code): Likewise.
16089 (copy_string2): Likewise.
16090 (copy_definition): Likewise.
16091
16092 * tests/calc.at: Exercise M4 quoting.
16093
16094 2002-04-25 Akim Demaille <akim@epita.fr>
16095
16096 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
16097 between `!' and the command.
16098 Reported by Paul Eggert.
16099
16100 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
16101
16102 * tests/calc.at: Exercise prologue splitting.
16103
16104 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
16105 `b4_post_prologue' instead of `b4_prologue'.
16106
16107 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
16108 muscles.
16109 (output): Free pre_prologue_obstack and post_prologue_obstack.
16110 * src/files.h, src/files.c (attrs_obstack): Remove.
16111 (pre_prologue_obstack, post_prologue_obstack): New.
16112 * src/reader.c (copy_definition): Add a parameter to specify the
16113 obstack to fill, instead of using attrs_obstack unconditionally.
16114 (read_declarations): Pass pre_prologue_obstack to copy_definition if
16115 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
16116
16117 2002-04-23 Paul Eggert <eggert@twinsun.com>
16118
16119 * data/bison.simple: Remove unnecessary commentary and white
16120 space differences from 1_29-branch.
16121 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
16122
16123 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
16124 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
16125 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
16126 constructors or destructors.
16127
16128 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
16129
16130 2002-04-23 Akim Demaille <akim@epita.fr>
16131
16132 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
16133 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
16134 location with columns.
16135 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
16136 All reported by Paul Eggert.
16137
16138 2002-04-22 Akim Demaille <akim@epita.fr>
16139
16140 * src/reduce.c (dump_grammar): Move to...
16141 * src/gram.h, src/gram.c (grammar_dump): here.
16142 Be sure to separate long item numbers.
16143 Don't read the members of a rule's prec if its nil.
16144
16145 2002-04-22 Akim Demaille <akim@epita.fr>
16146
16147 * src/output.c (table_size, table_grow): New.
16148 (MAXTABLE): Remove, replace uses with table_size.
16149 (pack_vector): Instead of dying when the table is too big, grow it.
16150
16151 2002-04-22 Akim Demaille <akim@epita.fr>
16152
16153 * data/bison.simple (yyr1): Its type is that of a token number.
16154 * data/bison.c++ (r1_): Likewise.
16155 * tests/regression.at (Web2c Actions): Adjust.
16156
16157 2002-04-22 Akim Demaille <akim@epita.fr>
16158
16159 * src/reader.c (token_translations_init): 256 is now the default
16160 value for the error token, i.e., it will be assigned another
16161 number if the user assigned 256 to one of her tokens.
16162 (reader): Don't force 256 to error.
16163 * doc/bison.texinfo (Symbols): Adjust.
16164 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
16165 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
16166 etc. instead of 10, 20, 30 (which was used to `jump' over error
16167 (256) and undefined (2)).
16168
16169 2002-04-22 Akim Demaille <akim@epita.fr>
16170
16171 Propagate more token_number_t.
16172
16173 * src/gram.h (token_number_as_item_number)
16174 (item_number_as_token_number): New.
16175 * src/output.c (GENERATE_OUTPUT_TABLE): New.
16176 Use it to create output_item_number_table and
16177 output_token_number_table.
16178 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
16179 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
16180 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
16181 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
16182
16183 2002-04-22 Akim Demaille <akim@epita.fr>
16184
16185 * src/output.h, src/output.c (get_lines_number): Remove.
16186
16187 2002-04-19 Akim Demaille <akim@epita.fr>
16188
16189 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
16190 as Lex/Flex'.
16191 (Debugging): More details about enabling the debugging features.
16192 (Table of Symbols): Describe $$, $n, @$, and @n.
16193 Suggested by Tim Josling.
16194
16195 2002-04-19 Akim Demaille <akim@epita.fr>
16196
16197 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
16198
16199 2002-04-10 Akim Demaille <akim@epita.fr>
16200
16201 * src/system.h: Rely on HAVE_LIMITS_H.
16202 Suggested by Paul Eggert.
16203
16204 2002-04-09 Akim Demaille <akim@epita.fr>
16205
16206 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
16207 full stderr, and strip it according to the bison options, instead
16208 of composing the error message from different bits.
16209 This makes it easier to check for several error messages.
16210 Adjust all the invocations.
16211 Add an invocation exercising the error token.
16212 Add an invocation demonstrating a stupid error message.
16213 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
16214 Adjust the tests.
16215 Error message are for stderr, not stdout.
16216
16217 2002-04-09 Akim Demaille <akim@epita.fr>
16218
16219 * src/gram.h, src/gram.c (error_token_number): Remove, use
16220 errtoken->number.
16221 * src/reader.c (reader): Don't specify the user token number (2)
16222 for $undefined, as it uselessly prevents using it.
16223 * src/gram.h (token_number_t): Move to...
16224 * src/symtab.h: here.
16225 (state_t.number): Is a token_number_t.
16226 * src/print.c, src/reader.c: Use undeftoken->number instead of
16227 hard coded 2.
16228 (Even though this 2 is not the same as above: the number of the
16229 undeftoken remains being 2, it is its user token number which
16230 might not be 2).
16231 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16232 `user_token_number_max'.
16233 Output `undef_token_number'.
16234 * data/bison.simple, data/bison.c++: Use them.
16235 Be sure to map invalid yylex return values to
16236 `undef_token_number'. This saves us from gratuitous SEGV.
16237
16238 * tests/conflicts.at (Solved SR Conflicts)
16239 (Unresolved SR Conflicts): Adjust.
16240 * tests/regression.at (Web2c Actions): Adjust.
16241
16242 2002-04-08 Akim Demaille <akim@epita.fr>
16243
16244 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16245 Adding #line.
16246 Remove the duplicate `typedefs'.
16247 (RhsNumberType): Fix the declaration and various other typos.
16248 Use __ofile__.
16249 * data/bison.simple: Use __ofile__.
16250 * src/scan-skel.l: Handle __ofile__.
16251
16252 2002-04-08 Akim Demaille <akim@epita.fr>
16253
16254 * src/gram.h (item_number_t): New, the type of item numbers in
16255 RITEM. Note that it must be able to code symbol numbers as
16256 positive number, and the negation of rule numbers as negative
16257 numbers.
16258 Adjust all dependencies (pretty many).
16259 * src/reduce.c (rule): Remove this `short *' pointer: use
16260 item_number_t.
16261 * src/system.h (MINSHORT, MAXSHORT): Remove.
16262 Include `limits.h'.
16263 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16264 (shortcpy): Remove.
16265 (MAXTABLE): Move to...
16266 * src/output.c (MAXTABLE): here.
16267 (prepare_rules): Use output_int_table to output rhs.
16268 * data/bison.simple, data/bison.c++: Adjust.
16269 * tests/torture.at (Big triangle): Move the limit from 254 to
16270 500.
16271 * tests/regression.at (Web2c Actions): Ajust.
16272
16273 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16274 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16275 passes, but produces negative #line number, once fixed, GCC is
16276 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16277 C), it passes.
16278 * src/state.h (state_h): Code input lines on ints, not shorts.
16279
16280 2002-04-08 Akim Demaille <akim@epita.fr>
16281
16282 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16283 and then the grammar.
16284
16285 2002-04-08 Akim Demaille <akim@epita.fr>
16286
16287 * src/system.h: No longer using strndup.
16288
16289 2002-04-07 Akim Demaille <akim@epita.fr>
16290
16291 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16292 * src/output.c (output_table_data): Return the longest number.
16293 (prepare_tokens): Output `token_number_max').
16294 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16295 New.
16296 Use them to define yy_token_number_type/TokenNumberType.
16297 Use this type for yytranslate.
16298 * tests/torture.at (Big triangle): Push the limit from 124 to
16299 253.
16300 * tests/regression.at (Web2c Actions): Adjust.
16301
16302 2002-04-07 Akim Demaille <akim@epita.fr>
16303
16304 * tests/torture.at (Big triangle): New.
16305 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16306 * tests/existing.at: here.
16307
16308 2002-04-07 Akim Demaille <akim@epita.fr>
16309
16310 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16311 nritems.
16312 Adjust dependencies.
16313
16314 2002-04-07 Akim Demaille <akim@epita.fr>
16315
16316 * src/reader.c: Normalize increments to prefix form.
16317
16318 2002-04-07 Akim Demaille <akim@epita.fr>
16319
16320 * src/reader.c, symtab.c: Remove debugging code.
16321
16322 2002-04-07 Akim Demaille <akim@epita.fr>
16323
16324 Rename all the `bucket's as `symbol_t'.
16325
16326 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16327 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16328 * src/symtab.c, src/symtab.h (bucket): Rename as...
16329 (symbol_t): this.
16330 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16331 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16332 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16333 (buckets_new, buckets_free, buckets_do): Rename as...
16334 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16335 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16336 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16337 (symbols_new, symbols_free, symbols_do): these.
16338
16339 2002-04-07 Akim Demaille <akim@epita.fr>
16340
16341 Use lib/hash for the symbol table.
16342
16343 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16344 EOF.
16345 * src/lex.c (lex): Set the `number' member of new terminals.
16346 * src/reader.c (bucket_check_defined, bucket_make_alias)
16347 (bucket_check_alias_consistence, bucket_translation): New.
16348 (reader, grammar_free, readgram, token_translations_init)
16349 (packsymbols): Adjust.
16350 (reader): Number the predefined tokens.
16351 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16352 for predefined tokens.
16353 * src/symtab.h (bucket): Remove all the hash table related
16354 members.
16355 * src/symtab.c (symtab): Replace by...
16356 (bucket_table): this.
16357 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16358 (buckets_new, buckets_do): New.
16359
16360 2002-04-07 Akim Demaille <akim@epita.fr>
16361
16362 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16363 (start_symbol, max_user_token_number, semantic_parser)
16364 (error_token_number): Initialize.
16365 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16366 Initialize.
16367 (reader): Don't.
16368 (errtoken, eoftoken, undeftoken, axiom): Extern.
16369
16370 2002-04-07 Akim Demaille <akim@epita.fr>
16371
16372 * src/gram.h (rule_s): prec and precsym are now pointers
16373 to the bucket giving the priority/associativity.
16374 Member `associativity' removed: useless.
16375 * src/reduce.c, src/conflicts.c: Adjust.
16376
16377 2002-04-07 Akim Demaille <akim@epita.fr>
16378
16379 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16380 Properly escape the symbols' TAG when outputting them.
16381
16382 2002-04-07 Akim Demaille <akim@epita.fr>
16383
16384 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16385
16386 2002-04-07 Akim Demaille <akim@epita.fr>
16387
16388 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16389 (LArule): this, which is an array to rule_t*.
16390 * src/print.c, src/conflicts.c: Adjust.
16391
16392 2002-04-07 Akim Demaille <akim@epita.fr>
16393
16394 * src/gram.h (rule_t): Rename `number' as `user_number'.
16395 `number' is a new member.
16396 Adjust dependencies.
16397 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16398
16399 2002-04-07 Akim Demaille <akim@epita.fr>
16400
16401 As a result of the previous patch, it is no longer needed
16402 to reorder ritem itself.
16403
16404 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16405
16406 2002-04-07 Akim Demaille <akim@epita.fr>
16407
16408 Be sure never to walk through RITEMS, but use only data related to
16409 the rules themselves. RITEMS should be banished.
16410
16411 * src/output.c (output_token_translations): Rename as...
16412 (prepare_tokens): this.
16413 In addition to `translate', prepare the muscles `tname' and
16414 `toknum', which were handled by...
16415 (output_rule_data): this.
16416 Remove, and move the remainder of its outputs into...
16417 (prepare_rules): this new routines, which also merges content from
16418 (output_gram): this.
16419 (prepare_rules): Be sure never to walk through RITEMS.
16420 (output_stos): Rename as...
16421 (prepare_stos): this.
16422 (output): Always invoke prepare_states, after all, just don't use it
16423 in the output if you don't need it.
16424
16425 2002-04-07 Akim Demaille <akim@epita.fr>
16426
16427 * src/LR0.c (new_state): Display `nstates' as the name of the
16428 newly created state.
16429 Adjust to initialize first_state and last_state if needed.
16430 Be sure to distinguish the initial from the final state.
16431 (new_states): Create the itemset of the initial state, and use
16432 new_state.
16433 * src/closure.c (closure): Now that the initial state has its
16434 items properly set, there is no need for a special case when
16435 creating `ruleset'.
16436
16437 As a result, now the rule 0, reducing to $axiom, is visible in the
16438 outputs. Adjust the test suite.
16439
16440 * tests/conflicts.at (Solved SR Conflicts)
16441 (Unresolved SR Conflicts): Adjust.
16442 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16443 * tests/conflicts.at (S/R in initial): New.
16444
16445 2002-04-07 Akim Demaille <akim@epita.fr>
16446
16447 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16448 the RHS of the rules.
16449 * src/output.c (output_gram): Likewise.
16450
16451 2002-04-07 Akim Demaille <akim@epita.fr>
16452
16453 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16454 bucket.
16455 Adjust all dependencies.
16456 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16457 `number' of the buckets too.
16458 * src/gram.h: Include `symtab.h'.
16459 (associativity): Move to...
16460 * src/symtab.h: here.
16461 No longer include `gram.h'.
16462
16463 2002-04-07 Akim Demaille <akim@epita.fr>
16464
16465 * src/gram.h, src/gram.c (rules_rhs_length): New.
16466 (ritem_longest_rhs): Use it.
16467 * src/gram.h (rule_t): `number' is a new member.
16468 * src/reader.c (packgram): Set it.
16469 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16470 the end of `rules', and count them out of `nrules'.
16471 (reduce_output, dump_grammar): Adjust.
16472 * src/print.c (print_grammar): It is no longer needed to check for
16473 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16474 * tests/reduce.at (Reduced Automaton): New test.
16475
16476 2002-04-07 Akim Demaille <akim@epita.fr>
16477
16478 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16479 lacking `+ 1' to nrules, Bison reported as useless a token if it
16480 was used solely to set the precedence of the last rule...
16481
16482 2002-04-07 Akim Demaille <akim@epita.fr>
16483
16484 * data/bison.c++, data/bison.simple: Don't output the current file
16485 name in #line, to avoid useless diffs between two identical
16486 outputs under different names.
16487
16488 2002-04-07 Akim Demaille <akim@epita.fr>
16489
16490 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16491 Normalize loops to using `< nrules + 1', not `<= nrules'.
16492
16493 2002-04-07 Akim Demaille <akim@epita.fr>
16494
16495 * TODO: Update.
16496
16497 2002-04-07 Akim Demaille <akim@epita.fr>
16498
16499 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16500 bucket.value as bucket.number.
16501
16502 2002-04-07 Akim Demaille <akim@epita.fr>
16503
16504 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16505 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16506 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16507 RHS, instead of being an index in RITEMS.
16508
16509 2002-04-04 Paul Eggert <eggert@twinsun.com>
16510
16511 * doc/bison.texinfo: Update copyright date.
16512 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16513 (Symbols): Warn about running Bison in one character set,
16514 but compiling and/or running in an incompatible one.
16515 Warn about character code 256, too.
16516
16517 2002-04-03 Paul Eggert <eggert@twinsun.com>
16518
16519 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16520 YYERROR_VERBOSE is nonzero, not whether it is defined.
16521
16522 Merge changes from bison-1_29-branch.
16523
16524 2002-03-20 Paul Eggert <eggert@twinsun.com>
16525
16526 Merge fixes from Debian bison_1.34-1.diff.
16527
16528 * configure.in (AC_PREREQ): 2.53.
16529
16530 2002-03-20 Akim Demaille <akim@epita.fr>
16531
16532 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16533
16534 2002-03-19 Paul Eggert <eggert@twinsun.com>
16535
16536 * src/bison.simple (YYCOPY): New macro.
16537 (YYSTACK_RELOCATE): Use it.
16538 Remove Type arg; no longer needed. All callers changed.
16539 (yymemcpy): Remove; no longer needed.
16540
16541 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16542 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16543
16544 2002-03-19 Akim Demaille <akim@epita.fr>
16545
16546 Test and fix the #line outputs.
16547
16548 * tests/atlocal.at (GCC): New.
16549 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16550 (Prologue synch line, %union synch line, Postprologue synch line)
16551 (Action synch line, Epilogue synch line): New tests.
16552 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16553 * data/bison.simple, data/bison.c++: Use it.
16554
16555 2002-03-19 Akim Demaille <akim@epita.fr>
16556
16557 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16558 (Solved SR Conflicts, %expect not enough, %expect right)
16559 (%expect too much): Move to...
16560 * tests/conflicts.at: this new file.
16561
16562 2002-03-19 Akim Demaille <akim@epita.fr>
16563
16564 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16565 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16566 that we can move to enums for instance.
16567 * src/output.c (token_definitions_output): Output a list of
16568 `token-name, token-number' instead of the #define.
16569 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16570
16571 2002-03-14 Akim Demaille <akim@epita.fr>
16572
16573 Use Gettext 0.11.1.
16574
16575 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16576
16577 * data/bison.c++: Make the user able to add members to the generated
16578 parser by subclassing.
16579
16580 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16581
16582 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16583 a character.
16584 Reported by Nicolas Tisserand and Nicolas Burrus.
16585
16586 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16587
16588 * src/reader.c: Warn about lacking semi-colons, do not complain.
16589
16590 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16591
16592 * data/bison.c++: Remove a debug line.
16593
16594 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16595
16596 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16597 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16598 provide a default implementation.
16599
16600 2002-03-04 Akim Demaille <akim@epita.fr>
16601
16602 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16603 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16604 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16605 * tests/semantic.at (Parsing Guards): Similarly.
16606 * src/reader.at (readgram): Complain if the last rule is not ended
16607 with a semi-colon.
16608
16609 2002-03-04 Akim Demaille <akim@epita.fr>
16610
16611 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16612 * src/closure.c: here.
16613 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16614 RTC.
16615 * src/warshall.h, src/warshall.c: Remove.
16616 * tests/sets.at (Broken Closure): Adjust.
16617
16618 2002-03-04 Akim Demaille <akim@epita.fr>
16619
16620 * src/output.c (output_skeleton): tempdir is const.
16621 bytes_read is unused.
16622
16623 2002-03-04 Akim Demaille <akim@epita.fr>
16624
16625 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16626 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16627 Update.
16628 From Michael Hayes.
16629
16630 2002-03-04 Akim Demaille <akim@epita.fr>
16631
16632 * src/closure.c (closure): `r' is unused.
16633
16634 2002-03-04 Akim Demaille <akim@epita.fr>
16635
16636 * tests/sets.at (Broken Closure): Add the ending `;'.
16637 * src/reader.at (readgram): Complain if a rule is not ended with a
16638 semi-colon.
16639
16640 2002-03-04 Akim Demaille <akim@epita.fr>
16641
16642 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16643 (count_sr_conflicts): Use bitset_count.
16644 * src/reduce.c (inaccessable_symbols): Ditto.
16645 (bits_size): Remove.
16646 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16647
16648 2002-03-04 Akim Demaille <akim@epita.fr>
16649
16650 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16651 * src/reduce.c: Remove the `bitset_zero's following the
16652 `bitset_create's, as now it is performed by the latter.
16653
16654 2002-03-04 Akim Demaille <akim@epita.fr>
16655
16656 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16657 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16658 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16659 latest sources from Michael.
16660
16661 2002-03-04 Akim Demaille <akim@epita.fr>
16662
16663 * src/output.c (output): Don't free the grammar.
16664 * src/reader.c (grammar_free): New.
16665 * src/main.c (main): Call it and don't free symtab here.
16666
16667 2002-03-04 Akim Demaille <akim@epita.fr>
16668
16669 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16670 before returning.
16671 Reported by Benoit Perrot.
16672
16673 2002-03-04 Akim Demaille <akim@epita.fr>
16674
16675 Use bitset operations when possible, not loops over bits.
16676
16677 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16678 bitset_or.
16679 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16680 * src/reduce.c (useless_nonterminals): Formatting changes.
16681 * src/warshall.c (TC): Use bitset_or.
16682
16683 2002-03-04 Akim Demaille <akim@epita.fr>
16684
16685 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16686 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16687 Ditto.
16688
16689 2002-03-04 Akim Demaille <akim@epita.fr>
16690
16691 * src/lalr.c (F): Now a bitset*.
16692 Adjust all dependencies.
16693
16694 2002-03-04 Akim Demaille <akim@epita.fr>
16695
16696 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16697 Adjust all dependencies.
16698
16699 2002-03-04 Akim Demaille <akim@epita.fr>
16700
16701 * src/L0.c, src/LR0.h (nstates): Be size_t.
16702 Adjust comparisons (signed vs unsigned).
16703 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16704 bitset*.
16705 Adjust all dependencies.
16706
16707 2002-03-04 Akim Demaille <akim@epita.fr>
16708
16709 * src/closure.c (firsts): Now, also a bitset.
16710 Adjust all dependencies.
16711 (varsetsize): Remove, now unused.
16712 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16713
16714 2002-03-04 Akim Demaille <akim@epita.fr>
16715
16716 * src/print.c: Convert to use bitset.h, not hand coded iterations
16717 over ints.
16718
16719 2002-03-04 Akim Demaille <akim@epita.fr>
16720
16721 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16722
16723 2002-03-04 Akim Demaille <akim@epita.fr>
16724
16725 * src/closure.c (ruleset): Be a bitset.
16726 (rulesetsize): Remove.
16727
16728 2002-03-04 Akim Demaille <akim@epita.fr>
16729
16730 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16731 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16732 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16733 * src/closure.c (fderives): Be an array of bitsets.
16734
16735 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16736
16737 * data/bison.c++: Merge the two generated headers. Insert a copyright
16738 notice in each output file.
16739
16740 2002-02-28 Akim Demaille <akim@epita.fr>
16741
16742 * data/bison.c++: Copy the prologue of bison.simple to fetch
16743 useful M4 definitions, such as b4_header_guard.
16744
16745 2002-02-25 Akim Demaille <akim@epita.fr>
16746
16747 * src/getargs.c (version): Give the name of the authors, and use a
16748 translator friendly scheme for the bgr
16749 copyright notice.
16750
16751 2002-02-25 Akim Demaille <akim@epita.fr>
16752
16753 * src/output.c (header_output): Remove, now handled completely via
16754 M4.
16755
16756 2002-02-25 Akim Demaille <akim@epita.fr>
16757
16758 * m4/m4.m4: New, from CVS Autoconf.
16759 * configure.in: Invoke it.
16760 * src/output.c (output_skeleton): Use its result instead of the
16761 hard coded name.
16762
16763 2002-02-25 Akim Demaille <akim@epita.fr>
16764
16765 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16766 Fileutils 4.1.5.
16767 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16768 * src/output.c (output_skeleton): Use mkstemp to create a real
16769 temporary file.
16770 Move the filling of `skeleton' and its muscle to...
16771 (prepare): here.
16772 (output): Move the definition of the prologue muscle to...
16773 (prepare): here.
16774 * src/system.h (DEFAULT_TMPDIR): New.
16775
16776 2002-02-14 Paul Eggert <eggert@twinsun.com>
16777
16778 Remove the support for C++ namespace cleanliness; it was
16779 causing more problems than it was curing, since it didn't work
16780 properly on some nonstandard C++ compilers. This can wait
16781 for a proper C++ parser.
16782
16783 * NEWS: Document this.
16784 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16785 of C++, as it's treated like C now.
16786 * src/bison.simple (YYSTD): Remove.
16787 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16788 Treat C++ just like Standard C instead of trying to support
16789 namespace cleanliness.
16790
16791 2002-02-14 Akim Demaille <akim@epita.fr>
16792
16793 * tests/regression.at (else): Adjust to Andreas' change.
16794
16795 2002-02-14 Akim Demaille <akim@epita.fr>
16796
16797 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16798
16799 2002-02-13 Andreas Schwab <schwab@suse.de>
16800
16801 * src/output.c (output_rule_data): Don't output NULL, it might
16802 not be defined yet.
16803
16804 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16805
16806 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16807 (Copyright notice): Update.
16808
16809 2002-02-11 Akim Demaille <akim@epita.fr>
16810
16811 * tests/regression.at (%nonassoc and eof): Don't include
16812 nonportable headers.
16813
16814 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16815
16816 * data/bison.c++: Correct error recovery. Make the user able to
16817 initialize the starting location.
16818
16819 2002-02-07 Akim Demaille <akim@epita.fr>
16820
16821 * tests/input.at: New.
16822
16823 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16824
16825 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16826 more consistent when naming methods and variables. Put preprocessor
16827 directives around tables only needed for debugging.
16828
16829 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16830
16831 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16832 C++ parsers.
16833 (yy::b4_name::parse): Use print_.
16834
16835 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16836
16837 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16838
16839 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16840
16841 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16842 C++ parsers.
16843 (yy::b4_name::parse): Build verbose error messages, and use error_.
16844
16845 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16846
16847 * data/bison.c++: Fix m4 quoting in comments.
16848
16849 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16850
16851 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16852 not expanded by m4.
16853
16854 2002-02-05 Akim Demaille <akim@epita.fr>
16855
16856 * data/bison.c++: Adjust to the M4 back end.
16857 More is certainly needed.
16858
16859 2002-02-05 Akim Demaille <akim@epita.fr>
16860
16861 Give a try to M4 as a back end.
16862
16863 * lib/readpipe.c: New, from wdiff.
16864 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16865 BISON_HAIRY.
16866 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16867 specific values. Now it is m4 that performs the lookup.
16868 * src/parse-skel.y: Remove.
16869 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16870 * src/output.c (actions_output, guards_output)
16871 (token_definitions_output): No longer keeps track of the output
16872 line number, hence remove the second argument.
16873 (guards_output): Check against the guard member of a rule, not the
16874 action member.
16875 Adjust callers.
16876 (output_skeleton): Don't look for the skeleton location, let m4 do
16877 that.
16878 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16879 file will be used.
16880 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16881 (prepare): Given that for the time being changesyntax is not
16882 usable in M4, rename the muscles using `-' to `_'.
16883 Define `defines_flag', `output_parser_name' and `output_header_name'.
16884 * src/output.h (actions_output, guards_output)
16885 (token_definitions_output): Adjust prototypes.
16886 * src/scan-skel.l: Instead of scanning the skeletons, it now
16887 processes the output of m4: `__oline__' and `#output'.
16888 * data/bison.simple: Adjust to be used by M4(sugar).
16889 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16890 to date.
16891 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16892 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16893 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16894 shamelessly stolen from CVS Autoconf.
16895
16896 2002-02-05 Akim Demaille <akim@epita.fr>
16897
16898 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16899 * configure.in: Check for the declarations of free and malloc.
16900 * src/muscle_tab.c: Adjust.
16901
16902 2002-02-05 Akim Demaille <akim@epita.fr>
16903
16904 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16905 which have no values.
16906
16907 2002-02-05 Akim Demaille <akim@epita.fr>
16908
16909 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16910 * data/: here.
16911
16912 2002-01-29 Paul Eggert <eggert@twinsun.com>
16913
16914 * src/bison.simple (YYSIZE_T): Do not define merely because
16915 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16916 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16917
16918 2002-01-27 Akim Demaille <akim@epita.fr>
16919
16920 Fix `%nonassoc and eof'.
16921
16922 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16923 which were not properly copied! Replace
16924 memcpy (res->errs, src->errs, src->nerrs);
16925 with
16926 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16927 !!!
16928 * tests/regression.at (%nonassoc and eof): Adjust to newest
16929 Autotest: `.' is not in the PATH.
16930
16931 2002-01-27 Akim Demaille <akim@epita.fr>
16932
16933 * tests/sets.at (AT_EXTRACT_SETS): New.
16934 (Nullable): Use it.
16935 (Firsts): New.
16936
16937 2002-01-26 Akim Demaille <akim@epita.fr>
16938
16939 * tests/actions.at, tests/calc.at, tests/headers.at,
16940 * tests/torture.at: Adjust to the newest Autotest which no longer
16941 forces `.' in the PATH.
16942
16943 2002-01-25 Akim Demaille <akim@epita.fr>
16944
16945 * tests/regression.at (%nonassoc and eof): New.
16946 Suggested by Robert Anisko.
16947
16948 2002-01-24 Akim Demaille <akim@epita.fr>
16949
16950 Bison dumps core when trying to complain about broken input files.
16951 Reported by Cris van Pelt.
16952
16953 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16954 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16955 into...
16956 (Invalid inputs): Strengthen: exercise parse_percent_token.
16957
16958 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16959
16960 * src/Makefile.am: Add bison.c++.
16961 * src/bison.c++: New skeleton.
16962
16963 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16964
16965 * po/it.po: New.
16966
16967 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16968
16969 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16970
16971 2002-01-20 Marc Autret <marc@gnu.org>
16972
16973 * src/files.c (compute_output_file_names): Fix
16974
16975 2002-01-20 Marc Autret <marc@gnu.org>
16976
16977 * tests/output.at: New test.
16978 * src/files.c (compute_base_names): Don't map extensions when
16979 the YACC flag is set, use defaults.
16980 Reported by Evgeny Stambulchik.
16981
16982 2002-01-20 Marc Autret <marc@gnu.org>
16983
16984 * src/system.h: Need to define __attribute__ away for non-GCC
16985 compilers as well (i.e., the vendor C compiler).
16986 Suggested by Albert Chin-A-Young.
16987
16988 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16989
16990 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16991 canonical definition.
16992 * src/system.h: Use the canonical definition for PARAMS (avoids
16993 a conflict with the macro from lib/hash.h).
16994
16995 2002-01-11 Akim Demaille <akim@epita.fr>
16996
16997 * configure.in: Use AC_FUNC_STRNLEN.
16998 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16999
17000 2002-01-09 Akim Demaille <akim@epita.fr>
17001
17002 * src/files.c, src/files.h (output_infix): New.
17003 (tab_extension): Remove.
17004 (compute_base_names): Compute the former, drop the latter.
17005 * src/output.c (prepare): Insert the muscles `output-infix', and
17006 `output-suffix'.
17007 * src/parse-skel.y (string, string.1): New.
17008 (section.header): Use it.
17009 (section.yacc): Remove.
17010 (prefix): Remove too.
17011 * src/scan-skel.l: Adjust.
17012 * src/bison.simple, src/bison.hairy: Adjust.
17013
17014 2002-01-09 Akim Demaille <akim@epita.fr>
17015
17016 * configure.in (WERROR_CFLAGS): Compute it.
17017 * src/Makefile.am (CFLAGS): Pass it.
17018 * tests/atlocal.in (CFLAGS): Idem.
17019 * src/files.c: Fix a few warnings.
17020 (get_extension_index): Remove, unused.
17021
17022 2002-01-08 Akim Demaille <akim@epita.fr>
17023
17024 * src/getargs.c (AS_FILE_NAME): New.
17025 (getargs): Use it to convert DOSish file names.
17026 * src/files.c (base_name): Rename as full_base_name to avoid
17027 clashes with `base_name ()'.
17028 (filename_split): New.
17029 (compute_base_names): N-th rewrite, using filename_split.
17030
17031 2002-01-08 Akim Demaille <akim@epita.fr>
17032
17033 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
17034 New, stolen from the Fileutils 4.1.
17035 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
17036 * configure.in: Check for the presence of memrchr, and of its
17037 prototype.
17038
17039 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
17040
17041 * lib/hash.h (__P): Added definition for this macro.
17042 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
17043 BUILT_SOURCES, to ensure they are generated first.
17044 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
17045 %error-verbose to allow bootstrapping with bison 1.30x.
17046
17047 2002-01-06 Akim Demaille <akim@epita.fr>
17048
17049 * src/reader.c (parse_braces): Don't fetch the next char, the
17050 convention is to fetch on entry.
17051 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
17052 'switch' without a following semicolon.
17053 * tests/regression.at (braces parsing): New.
17054
17055 2002-01-06 Akim Demaille <akim@epita.fr>
17056
17057 Bison is dead wrong in its RR conflict reports.
17058
17059 * tests/torture.at (GNU Cim Grammar): New.
17060 * src/conflicts.c (count_rr_conflicts): Fix.
17061
17062 2002-01-06 Akim Demaille <akim@epita.fr>
17063
17064 Creating package.m4 from configure.ac causes too many problems.
17065
17066 * tests/Makefile.am (package.m4): Create it by hand,
17067 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
17068
17069 2002-01-06 Akim Demaille <akim@epita.fr>
17070
17071 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
17072 skeleton.h.
17073
17074 2002-01-04 Paul Eggert <eggert@twinsun.com>
17075
17076 * doc/bison.texinfo (Debugging):
17077 Remove YYSTDERR; it's no longer defined or used.
17078 Also, s/cstdio.h/cstdio/.
17079
17080 2002-01-03 Akim Demaille <akim@epita.fr>
17081
17082 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
17083
17084 2002-01-03 Akim Demaille <akim@epita.fr>
17085
17086 * src/parse-skel.y (process_skeleton): Don't bind the parser's
17087 tracing code to --trace, wait for a better --trace option, with
17088 args.
17089
17090 2002-01-03 Akim Demaille <akim@epita.fr>
17091
17092 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
17093 The ISO C++ standard is extremely clear about it: stderr is
17094 considered a macro, not a regular symbol (see table 94 `Header
17095 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
17096 Therefore std:: does not apply to it. It still does with fprintf.
17097 Also, s/cstdio.h/cstdio/.
17098
17099 2002-01-03 Akim Demaille <akim@epita.fr>
17100
17101 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
17102 for non system headers.
17103
17104 2002-01-02 Akim Demaille <akim@epita.fr>
17105
17106 Equip the skeleton chain with location tracking, runtime trace,
17107 pure parser and scanner.
17108
17109 * src/parse-skel.y: Request a pure parser, locations, and prefix
17110 renaming.
17111 (%union): Having several members with the same type does not help
17112 type mismatches, simplify.
17113 (YYPRINT, yyprint): New.
17114 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
17115 (skel_error): this.
17116 Handle locations.
17117 * src/scan-skel.l: Adjust to these changes.
17118 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
17119 (LOCATION_PRINT, skel_control_t): New.
17120
17121 2001-12-30 Akim Demaille <akim@epita.fr>
17122
17123 * src/parse-skel.y: Get rid of the shift/reduce conflict:
17124 replace `gb' with BLANKS.
17125 * src/scan-skel.l: Adjust.
17126
17127 2001-12-30 Akim Demaille <akim@epita.fr>
17128
17129 * src/system.h: We don't need nor want bcopy.
17130 Throw away MS-DOS crap: we don't need getpid.
17131 * configure.in: We don't need strndup. It was even causing
17132 problems: because Flex includes the headers *before* us,
17133 _GNU_SOURCE is not defined by config.h, and therefore strndup was
17134 not visible.
17135 * lib/xstrndup.c: New.
17136 * src/scan-skel.l: Use it.
17137 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
17138 * src/parse-skel.y: Use %directives instead of #defines.
17139
17140 2001-12-30 Akim Demaille <akim@epita.fr>
17141
17142 * src/skeleton.h: New.
17143 * src/output.c (output_parser, output_master_parser): Remove, dead
17144 code.
17145 * src/output.h (get_lines_number, actions_output, guards_output)
17146 (token_definitions_output): Prototype them.
17147 * src/parse-skel.y: Add the license notice.
17148 Include output.h and skeleton.h.
17149 (process_skeleton): Returns void, and takes a single parameter.
17150 * src/scan-skel.l: Add the license notice.
17151 Include skeleton.h.
17152 Don't use %option yylineno: it seems that then Flex imagines
17153 REJECT has been used, and therefore it won't reallocate its
17154 buffers (which makes no other sense to me than a bug). It results
17155 in warnings for `unused: yy_flex_realloc'.
17156
17157 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
17158
17159 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17160 (MUSCLE_INSERT_PREFIX): ...to there.
17161 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
17162 (MUSCLE_INSERT_PREFIX): Move from here...
17163
17164 * src/bison.hairy: Add a section directive. Put braces around muscle
17165 names. This parser skeleton is still broken, but Bison should not
17166 choke on a bad muscle 'syntax'.
17167 * src/bison.simple: Add a section directive. Put braces around muscle
17168 names.
17169
17170 * src/files.h (strsuffix, stringappend): Add declarations.
17171 (tab_extension): Add declaration.
17172 (short_base_name): Add declaration.
17173
17174 * src/files.c (strsuffix, stringappend): No longer static. These
17175 functions are used in the skeleton parser.
17176 (tab_extension): New.
17177 (compute_base_names): Use the computations done in this function
17178 to guess if the generated parsers should have '.tab' in their
17179 names.
17180 (short_base_name): No longer static.
17181
17182 * src/output.c (output_skeleton): New.
17183 (output): Disable call to output_master_parser, and give a try to
17184 a new skeleton handling system.
17185 (guards_output, actions_output): No longer static.
17186 (token_definitions_output, get_lines_number): No longer static.
17187
17188 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
17189
17190 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
17191 parse-skel.y.
17192
17193 * src/parse-skel.y: New file.
17194 * src/scan-skel.l: New file.
17195
17196 2001-12-29 Akim Demaille <akim@epita.fr>
17197
17198 %name-prefix is broken.
17199
17200 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
17201 Adjust all dependencies.
17202 * tests/headers.at (export YYLTYPE): Strengthen this test: use
17203 %name-prefix.
17204
17205 Renaming yylval but not yylloc is not consistent. Now we do.
17206
17207 * src/bison.simple: Prefix yylloc if used.
17208 * doc/bison.texinfo (Decl Summary): Document that.
17209
17210 2001-12-29 Akim Demaille <akim@epita.fr>
17211
17212 * doc/bison.texinfo: Promote `%long-directive' over
17213 `%long_directive'.
17214 Remove all references to fixed-output-files, yacc is enough.
17215
17216 2001-12-29 Akim Demaille <akim@epita.fr>
17217
17218 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
17219 user prologue. These are defaults.
17220 * tests/actions.at (Mid-rule actions): Make sure the user can
17221 define YYDEBUG and YYERROR_VERBOSE.
17222
17223 2001-12-29 Akim Demaille <akim@epita.fr>
17224
17225 * src/output.c (header_output): Don't forget to export YYLTYPE and
17226 yylloc.
17227 * tests/headers.at (export YYLTYPE): New, make sure it does.
17228 * tests/regression.at (%union and --defines, Invalid CPP headers):
17229 Move to...
17230 * tests/headers.at: here.
17231
17232 2001-12-29 Akim Demaille <akim@epita.fr>
17233
17234 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17235
17236 2001-12-29 Akim Demaille <akim@epita.fr>
17237
17238 * tests/actions.at (Mid-rule actions): Output on a single line
17239 instead of several.
17240
17241 2001-12-29 Akim Demaille <akim@epita.fr>
17242
17243 * doc/bison.texinfo: Formatting changes.
17244
17245 2001-12-29 Akim Demaille <akim@epita.fr>
17246
17247 Don't store the token defs in a muscle, just be ready to output it
17248 on command. Now possible via `symbols'. Fixes a memory leak.
17249
17250 * src/output.c (token_definitions_output): New.
17251 (output_parser, header_output): Use it.
17252 * src/reader.c (symbols_save): Remove.
17253
17254 2001-12-29 Akim Demaille <akim@epita.fr>
17255
17256 * src/bison.simple: Do not provide a default for YYSTYPE and
17257 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17258 default.
17259
17260 2001-12-29 Akim Demaille <akim@epita.fr>
17261
17262 Mid-rule actions are simply... ignored!
17263
17264 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17265 the empty-rule associated to the dummy symbol, not to the host
17266 rule.
17267 * tests/actions.at (Mid-rule actions): New.
17268
17269 2001-12-29 Akim Demaille <akim@epita.fr>
17270
17271 Memory leak.
17272
17273 * src/reader.c (reader): Free grammar.
17274
17275 2001-12-29 Akim Demaille <akim@epita.fr>
17276
17277 Memory leak.
17278
17279 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17280 since it allocates it for each state, although only one is needed.
17281 (allocate_storage): Do it here.
17282
17283 2001-12-29 Akim Demaille <akim@epita.fr>
17284
17285 * src/options.h, src/options.c (create_long_option_table): Rename
17286 as...
17287 (long_option_table_new): this, with a clearer prototype.
17288 (percent_table): Remove, unused,
17289 * src/getargs.c (getargs): Adjust.
17290
17291 2001-12-29 Akim Demaille <akim@epita.fr>
17292
17293 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17294 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17295 as states.
17296
17297 2001-12-29 Akim Demaille <akim@epita.fr>
17298
17299 * src/lalr.c (build_relations): Rename `states' as `states1'.
17300 Sorry, I don't understand exactly what it is, no better name...
17301
17302 2001-12-29 Akim Demaille <akim@epita.fr>
17303
17304 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17305 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17306 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17307 as rules.
17308
17309 2001-12-29 Akim Demaille <akim@epita.fr>
17310
17311 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17312 ago.
17313
17314 2001-12-29 Akim Demaille <akim@epita.fr>
17315
17316 * src/reader.c, src/reader.h (user_toknums): Remove.
17317 Adjust all users to use symbols[i]->user_token_number.
17318
17319 2001-12-29 Akim Demaille <akim@epita.fr>
17320
17321 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17322 Adjust all users to use symbols[i]->prec or ->assoc.
17323
17324 2001-12-29 Akim Demaille <akim@epita.fr>
17325
17326 * src/reader.c, src/reader.h (tags): Remove.
17327 Adjust all users to use symbols[i]->tag.
17328
17329 2001-12-29 Akim Demaille <akim@epita.fr>
17330
17331 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17332 and rule_table.
17333 * src/reader.c (packsymbols): Fill this table.
17334 Drop sprec.
17335 * src/conflicts.c (resolve_sr_conflict): Adjust.
17336 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17337 single table.
17338 Use symbols[i]->tag instead of tags[i].
17339
17340 2001-12-29 Akim Demaille <akim@epita.fr>
17341
17342 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17343 In addition, put a comment in there, to replace...
17344 * tests/regression.at (%union and C comments): Remove.
17345
17346 2001-12-29 Akim Demaille <akim@epita.fr>
17347
17348 * tests/regression.at (Web2c Actions): Blindly move the actual
17349 output as expected output. The contents *seem* right to me, but I
17350 can't pretend reading perfectly parser tables... Nonetheless, all
17351 the other tests pass correctly, the table look OK, even though the
17352 presence of `$axiom' is to be noted: AFAICS it is useless (but
17353 harmless).
17354
17355 2001-12-29 Akim Demaille <akim@epita.fr>
17356
17357 * src/reader.c (readgram): Don't add the rule 0 if there were no
17358 rules read. In other words, add it _after_ having performed
17359 grammar sanity checks.
17360 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17361
17362 2001-12-29 Akim Demaille <akim@epita.fr>
17363
17364 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17365 visible, and some states have now a different number.
17366
17367 2001-12-29 Akim Demaille <akim@epita.fr>
17368
17369 * src/reader.c (readgram): Bind the initial rule's lineno to that
17370 of the first rule.
17371 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17372 (Solved SR Conflicts): Adjust rule 0's line number.
17373
17374 2001-12-29 Akim Demaille <akim@epita.fr>
17375
17376 Fix the `GAWK Grammar' failure.
17377
17378 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17379 the reductions of the first state which was mistakenly confused
17380 with the final state because precisely final_state was initialized
17381 to 0.
17382 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17383 now noticed by Bison.
17384 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17385 have a reduction on $default.
17386
17387 2001-12-29 Akim Demaille <akim@epita.fr>
17388
17389 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17390 rule line numbers.
17391 * src/closure.c (print_closure): Likewise.
17392 * src/derives.c (print_derives): Likewise.
17393 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17394 now.
17395
17396 2001-12-29 Akim Demaille <akim@epita.fr>
17397
17398 * src/lalr.c (lookaheads_print): New.
17399 (lalr): Call it when --trace-flag.
17400 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17401 are dumped.
17402
17403 2001-12-29 Akim Demaille <akim@epita.fr>
17404
17405 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17406 when walking through ritem, even via rule->rhs.
17407 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17408 (useful_production, useless_nonterminals): Likewise.
17409 (reduce_grammar_tables): Likewise, plus update nritems.
17410 * src/nullable.c (set_nullable): Likewise.
17411 * src/lalr.c (build_relations): Likewise.
17412 * tests/sets.at (Nullable): Adjust.
17413 Fortunately, now, the $axiom is no longer nullable.
17414
17415 2001-12-29 Akim Demaille <akim@epita.fr>
17416
17417 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17418 the 0-sentinel.
17419 * src/gram.c (ritem_longest_rhs): Likewise.
17420 * src/reduce.c (nonterminals_reduce): Likewise.
17421 * src/print_graph.c (print_graph): Likewise.
17422 * src/output.c (output_rule_data): Likewise.
17423 * src/nullable.c (set_nullable): Likewise.
17424
17425 2001-12-29 Akim Demaille <akim@epita.fr>
17426
17427 * src/output.c: Comment changes.
17428
17429 2001-12-27 Paul Eggert <eggert@twinsun.com>
17430
17431 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17432 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17433 Sparc, as they were causing more porting problems than the
17434 (minor) performance improvement was worth.
17435
17436 Also, catch up with 1.31's YYSTD.
17437
17438 2001-12-27 Akim Demaille <akim@epita.fr>
17439
17440 * src/output.c (output_gram): Rely on nritems, not the
17441 0-sentinel. See below.
17442 Use -1 as separator, not 0.
17443 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17444 Rely on -1 as separator in yyrhs, instead of 0.
17445 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17446 twice `Now at end of input', therefore there are two lines less to
17447 expect.
17448
17449 2001-12-27 Akim Demaille <akim@epita.fr>
17450
17451 * tests/regression.at (Unresolved SR Conflicts):
17452 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17453 below.
17454
17455 2001-12-27 Akim Demaille <akim@epita.fr>
17456
17457 * src/LR0.c (new_state): Recognize the final state by the fact it
17458 is reached by eoftoken.
17459 (insert_start_shifting_state, insert_eof_shifting_state)
17460 (insert_accepting_state, augment_automaton): Remove, since now
17461 these states are automatically computed from the initial state.
17462 (generate_states): Adjust.
17463 * src/print.c: When reporting a rule number to the user, substract
17464 1, so that the axiom rule is rule 0, and the first user rule is 1.
17465 * src/reduce.c: Likewise.
17466 * src/print_graph.c (print_core): For the time being, just as for
17467 the report, depend upon --trace-flags to dump the full set of
17468 items.
17469 * src/reader.c (readgram): Once the grammar read, insert the rule
17470 0: `$axiom: START-SYMBOL $'.
17471 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17472 number of the states has changed (the final state is no longer
17473 necessarily the last), catch up.
17474
17475 2001-12-27 Akim Demaille <akim@epita.fr>
17476
17477 Try to make the use of the eoftoken valid. Given that its value
17478 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17479 is used instead of > 0 where appropriate, (ii), depend upon nritems
17480 instead of the 0-sentinel.
17481
17482 * src/gram.h, src/gram.c (nritems): New.
17483 Expected to be duplication of nitems, but for the time being...
17484 * src/reader.c (packgram): Assert nritems and nitems are equal.
17485 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17486 * src/closure.c (print_closure, print_fderives): Likewise.
17487 * src/gram.c (ritem_print): Likewise.
17488 * src/print.c (print_core, print_grammar): Likewise.
17489 * src/print_graph.c: Likewise.
17490
17491 2001-12-27 Akim Demaille <akim@epita.fr>
17492
17493 * src/main.c (main): If there are complains after grammar
17494 reductions, then output the report anyway if requested, then die.
17495 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17496 * src/reader.c (eoftoken): New.
17497 (parse_token_decl): If the token being defined has value `0', it
17498 is the eoftoken.
17499 (packsymbols): No longer hack `tags' to insert `$' by hand.
17500 Be sure to preserve the value of the eoftoken.
17501 (reader): Make sure eoftoken is defined.
17502 Initialize nsyms to 0: now eoftoken is created just like the others.
17503 * src/print.c (print_grammar): Don't special case the eof token.
17504 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17505 lie anyway, albeit pleasant.
17506 * tests/calc.at: Exercise error messages with eoftoken.
17507 Change the grammar so that empty input is invalid.
17508 Adjust expectations.
17509 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17510
17511 2001-12-27 Akim Demaille <akim@epita.fr>
17512
17513 * configure.in: Check the protos of strchr ans strspn.
17514 Replace strchr if needed.
17515 * src/system.h: Provide the protos of strchr, strspn and memchr if
17516 missing.
17517 * lib/strchr.c: New.
17518 * src/reader.c (symbols_save): Use strchr.
17519
17520 2001-12-27 Akim Demaille <akim@epita.fr>
17521
17522 * src/print.c, src/print_graph.c (escape): New.
17523 Use it to quote the TAGS outputs.
17524 * src/print_graph.c (print_state): Now errors are in red, and
17525 reductions in green.
17526 Prefer high to wide: output the state number on a line of its own.
17527
17528 2001-12-27 Akim Demaille <akim@epita.fr>
17529
17530 * src/state.h, src/state.c (reductions_new): New.
17531 * src/LR0.c (set_state_table): Let all the states have a
17532 `reductions', even if reduced to 0.
17533 (save_reductions): Adjust.
17534 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17535 * src/print.c (print_reductions, print_actions): Adjust.
17536 * src/output.c (action_row): Adjust.
17537
17538 2001-12-27 Akim Demaille <akim@epita.fr>
17539
17540 * src/state.h, src/state.c (errs_new, errs_dup): New.
17541 * src/LR0.c (set_state_table): Let all the states have an errs,
17542 even if reduced to 0.
17543 * src/print.c (print_errs, print_reductions): Adjust.
17544 * src/output.c (output_actions, action_row): Adjust.
17545 * src/conflicts.c (resolve_sr_conflict): Adjust.
17546
17547 2001-12-27 Akim Demaille <akim@epita.fr>
17548
17549 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17550
17551 2001-12-27 Akim Demaille <akim@epita.fr>
17552
17553 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17554 * src/print.c: here.
17555 (lookaheadset, shiftset): New, used as additional storage by
17556 print_reductions.
17557 (print_results): Adjust.
17558 (print_shifts, print_gotos, print_errs): New, extracted from...
17559 (print_actions): here.
17560 * src/print_graph.c (print_actions): Remove dead code.
17561
17562 2001-12-27 Akim Demaille <akim@epita.fr>
17563
17564 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17565 `$n' and `@n'.
17566
17567 2001-12-27 Akim Demaille <akim@epita.fr>
17568
17569 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17570 (build_relations): Adjust.
17571
17572 2001-12-27 Akim Demaille <akim@epita.fr>
17573
17574 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17575 duplication.
17576
17577 2001-12-27 Akim Demaille <akim@epita.fr>
17578
17579 * src/reader.c (packgram): Catch nitems overflows.
17580
17581 2001-12-27 Akim Demaille <akim@epita.fr>
17582
17583 * src/files.c, src/files.h (guard_obstack): Remove.
17584 * src/output.c (output): Adjust.
17585 * src/reader.c (parse_braces): New, factoring...
17586 (copy_action, copy_guard): these two which are renamed as...
17587 (parse_action, parse_guard): these.
17588 As a voluntary consequence, using braces around guards is now
17589 mandatory.
17590
17591 2001-12-27 Akim Demaille <akim@epita.fr>
17592
17593 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17594 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17595 members.
17596 (symbol_list_new): Adjust.
17597 (copy_action): action_line is the first line, not the last.
17598 (copy_guard): Just as for actions, store the `action' only, not
17599 the switch/case/break flesh.
17600 Don't parse the user action that might follow the guard, let...
17601 (readgram): do it, i.e., now, there can be an action after a
17602 guard.
17603 In other words the guard is just explicitly optional.
17604 (packgram): Adjust.
17605 * src/output.c (guards_output): New.
17606 (output_parser): Call it when needed.
17607 (output): Also free the guard and attrs obstacks.
17608 * src/files.c, src/files.h (obstack_save): Remove.
17609 (output_files): Remove.
17610 As a result, if one needs the former `.act' file, using an
17611 appropriate skeleton which requires actions and guards is now
17612 required.
17613 * src/main.c (main): Adjust.
17614 * tests/semantic.at: New.
17615 * tests/regression.at: Use `input.y' as input file name.
17616 Avoid 8+3 problems by requiring input.c when the test needs the
17617 parser.
17618
17619 2001-12-27 Akim Demaille <akim@epita.fr>
17620
17621 * src/reader.c (symbol_list_new): Be sure to initialize all the
17622 fields.
17623
17624 2001-12-27 Akim Demaille <akim@epita.fr>
17625
17626 All the hacks using a final pseudo state are now useless.
17627
17628 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17629 * src/lalr.c (nLA): New.
17630 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17631 instead of lookaheadsp from the pseudo state (nstate + 1).
17632
17633 2001-12-27 Akim Demaille <akim@epita.fr>
17634
17635 * src/output.c (action_row, token_actions): Use a state_t instead
17636 of a integer, and nlookaheads instead of the following state's
17637 lookaheadsp.
17638
17639 2001-12-27 Akim Demaille <akim@epita.fr>
17640
17641 * src/conflicts.c (log_resolution, flush_shift)
17642 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17643 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17644 (conflicts_print, print_reductions): Use a state_t instead of an
17645 integer when referring to a state.
17646 As much as possible, depend upon nlookaheads, instead of the
17647 `lookaheadsp' member of the following state (since lookaheads of
17648 successive states are successive, the difference between state n + 1
17649 and n served as the number of lookaheads for state n).
17650 * src/lalr.c (add_lookback_edge): Likewise.
17651 * src/print.c (print_core, print_actions, print_state)
17652 (print_results): Likewise.
17653 * src/print_graph.c (print_core, print_actions, print_state)
17654 (print_graph): Likewise.
17655 * src/conflicts.h: Adjust.
17656
17657 2001-12-27 Akim Demaille <akim@epita.fr>
17658
17659 * src/bison.hairy: Formatting/comment changes.
17660 ANSIfy.
17661 Remove `register' indications.
17662 Add plenty of `static'.
17663
17664 2001-12-27 Akim Demaille <akim@epita.fr>
17665
17666 * src/output.c (prepare): Drop the muscle `ntbase' which
17667 duplicates ntokens.
17668 * src/bison.simple: Formatting/comment changes.
17669 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17670 is an undocumented synonym.
17671
17672 2001-12-22 Akim Demaille <akim@epita.fr>
17673
17674 * src/output.c (output_table_data): Change the prototype to use
17675 `int' for array ranges: some invocations do pass an int, not a
17676 short.
17677 Reported by Wayne Green.
17678
17679 2001-12-22 Akim Demaille <akim@epita.fr>
17680
17681 Some actions of web2c.y are improperly triggered.
17682 Reported by Mike Castle.
17683
17684 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17685 * tests/regression.at (Web2c): Rename as...
17686 (Web2c Report): this.
17687 (Web2c Actions): New.
17688
17689 2001-12-22 Akim Demaille <akim@epita.fr>
17690
17691 Reductions in web2c.y are improperly reported.
17692 Reported by Mike Castle.
17693
17694 * src/conflicts.c (print_reductions): Fix.
17695 * tests/regression.at (Web2c): New.
17696
17697 2001-12-18 Akim Demaille <akim@epita.fr>
17698
17699 Some host fail on `assert (!"foo")', which expands to
17700 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17701 Reported by Nelson Beebee.
17702
17703 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17704 `#define it_succeeded 0' and `assert (it_succeeded)'.
17705
17706 2001-12-17 Marc Autret <autret_m@epita.fr>
17707
17708 * src/bison.simple: Don't hard code the skeleton line and filename.
17709 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17710 New line counter 'skeleton_line' (skeleton-line muscle).
17711
17712 2001-12-17 Paul Eggert <eggert@twinsun.com>
17713
17714 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17715 YYDEBUG must be defined to a nonzero value.
17716
17717 * src/bison.simple (yytname): Do not assume that the user defines
17718 YYDEBUG to a properly parenthesized expression.
17719
17720 2001-12-17 Akim Demaille <akim@epita.fr>
17721
17722 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17723 nlookaheads is a new member.
17724 Adjust all users.
17725 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17726 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17727 state.
17728
17729 2001-12-17 Akim Demaille <akim@epita.fr>
17730
17731 * src/files.h, src/files.c (open_files, close_files): Remove.
17732 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17733 let...
17734 * src/reader.c (reader): Do it.
17735
17736 2001-12-17 Akim Demaille <akim@epita.fr>
17737
17738 * src/conflicts.c (print_reductions): Formatting changes.
17739
17740 2001-12-17 Akim Demaille <akim@epita.fr>
17741
17742 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17743 (flush_reduce): New.
17744 (resolve_sr_conflict): Adjust.
17745
17746 2001-12-17 Akim Demaille <akim@epita.fr>
17747
17748 * src/output.c (output_obstack): Be static and rename as...
17749 (format_obstack): this, to avoid any confusion with files.c's
17750 output_obstack.
17751 * src/reader.h (muscle_obstack): Move to...
17752 * src/output.h: here, since it's defined in output.c.
17753
17754 2001-12-17 Akim Demaille <akim@epita.fr>
17755
17756 * src/output.c (action_row, save_column, default_goto)
17757 (sort_actions, matching_state, pack_vector): Better variable
17758 locality.
17759
17760 2001-12-17 Akim Demaille <akim@epita.fr>
17761
17762 * src/output.c: Various formatting changes.
17763
17764 2001-12-17 Akim Demaille <akim@epita.fr>
17765
17766 * src/files.c (output_files): Free the output_obstack.
17767 * src/main.c (main): Call print and print_graph conditionally.
17768 * src/print.c (print): Work unconditionally.
17769 * src/print_graph.c (print_graph): Work unconditionally.
17770 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17771
17772 2001-12-16 Marc Autret <autret_m@epita.fr>
17773
17774 * src/output.c (actions_output): Fix. When we use %no-lines,
17775 there is one less line per action.
17776
17777 2001-12-16 Marc Autret <autret_m@epita.fr>
17778
17779 * src/bison.simple: Remove a useless #line directive.
17780 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17781 * src/output.c (get_lines_number): New.
17782 (output_parser): Adjust, now takes care about the lines of a
17783 output muscles.
17784 Fix line numbering.
17785 (actions_output): Computes the number of lines taken by actions.
17786 (output_master_parser): Insert new skeleton which is the name of
17787 the output parser file name.
17788
17789 2001-12-15 Marc Autret <autret_m@epita.fr>
17790
17791 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17792
17793 2001-12-15 Marc Autret <autret_m@epita.fr>
17794
17795 * src/output.c (output_gram): Keep track of the hairy one.
17796
17797 2001-12-15 Akim Demaille <akim@epita.fr>
17798
17799 Make `make distcheck' work.
17800
17801 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17802 system.h which uses libgettext.h.
17803
17804 2001-12-15 Akim Demaille <akim@epita.fr>
17805
17806 * src/nullable.c (set_nullable): Useless rules must be skipped,
17807 otherwise, since we range over their symbols, we might look at a
17808 nonterminal which no longer ``exists'', i.e., it is not counted in
17809 `nvars', hence we overflow our arrays.
17810
17811 2001-12-15 Akim Demaille <akim@epita.fr>
17812
17813 The header can also be produced directly, without any obstack!
17814 Yahoo!
17815
17816 * src/files.c, src/files.h (defines_obstack): Remove.
17817 (compute_header_macro): Global.
17818 (defines_obstack_save): Remove.
17819 * src/reader.c (parse_union_decl): No longer output to
17820 defines_obstack: its content can be found in the `stype' muscle
17821 anyway.
17822 (output_token_translations): Merge into...
17823 (symbols_output): this.
17824 Rename as...
17825 (symbols_save): this.
17826 (reader): Adjust.
17827 * src/output.c (header_output): New.
17828 (output): Call it.
17829
17830 2001-12-15 Akim Demaille <akim@epita.fr>
17831
17832 * src/reader.c (parse_union_decl): Instead of handling two obstack
17833 simultaneously, use one to define the `stype' muscle, and use the
17834 value of the latter to fill defines_obstack.
17835 (copy_comment): Remove.
17836 (copy_comment2): Work for a single obstack.
17837 Rename as...
17838 (copy_comment): this.
17839
17840 2001-12-15 Akim Demaille <akim@epita.fr>
17841
17842 * src/lex.c, src/lex.h (xgetc): No longer static.
17843 * src/reader.c (parse_union_decl): Revamp.
17844
17845 2001-12-15 Akim Demaille <akim@epita.fr>
17846
17847 Still making progress in separating Bison into (i) input, (ii)
17848 process, (iii) output: now we can directly output the parser file
17849 without using table_obstack at all.
17850
17851 * src/files.c, src/files.h (table_obstack): Bye bye.
17852 (parser_file_name): New.
17853 * src/files.c (compute_output_file_names): Compute it.
17854 * src/output.c (actions_output, output_parser)
17855 (output_master_parser): To a file instead of an obstack.
17856
17857 2001-12-15 Akim Demaille <akim@epita.fr>
17858
17859 Attach actions to rules, instead of pre-outputting them to
17860 actions_obstack.
17861
17862 * src/gram.h (rule_t): action and action_line are new members.
17863 * src/reader.c (symbol_list): Likewise.
17864 (copy_action): Save the actions within the rule.
17865 (packgram): Save them in rule_table.
17866 * src/output.c (actions_output): New.
17867 (output_parser): Use it on `%%actions'.
17868 (output_rule_data): Don't free rule_table.
17869 (output): Do it.
17870 (prepare): Don't save the `action' muscle.
17871 * src/bison.simple: s/%%action/%%actions/.
17872
17873 2001-12-15 Akim Demaille <akim@epita.fr>
17874
17875 * src/reader.c (copy_action): When --yacc, don't append a `;'
17876 to the user action: let it fail if lacking.
17877 Suggested by Arnold Robbins and Tom Tromey.
17878
17879 2001-12-14 Akim Demaille <akim@epita.fr>
17880
17881 * src/lex.c (literalchar): Simply return the char you decoded, non
17882 longer mess around with obstacks and int pointers.
17883 Adjust all callers.
17884
17885 2001-12-14 Akim Demaille <akim@epita.fr>
17886
17887 * src/lex.c (literalchar): Don't escape the special characters,
17888 just decode them, and keep them as char (before, eol was output as
17889 the 2 char string `\n' etc.).
17890 * src/output.c (output_rule_data): Use quotearg to output the
17891 token strings.
17892
17893 2001-12-13 Paul Eggert <eggert@twinsun.com>
17894
17895 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17896 Do not infringe on the global user namespace when using C++.
17897 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17898 All uses of `fprintf' and `stderr' changed.
17899
17900 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17901
17902 2001-12-13 Akim Demaille <akim@epita.fr>
17903
17904 The computation of nullable is broken: it doesn't handle empty
17905 RHS's properly.
17906
17907 * tests/torture.at (GNU AWK Grammar): New.
17908 * tests/sets.at (Nullable): New.
17909 * src/nullable.c (set_nullable): Instead of blindly looping over
17910 `ritems', loop over the rules, and then over their rhs's.
17911
17912 Work around Autotest bugs.
17913
17914 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17915 frame, because Autotest understand lines starting with a `+' as
17916 traces from the shell. Then, they are not processed properly.
17917 Admittedly an Autotest bug, but we don't have time to wait for
17918 Autotest to catch up.
17919 * tests/regression.at (Broken Closure): Adjust to the new table
17920 frames.
17921 Move to...
17922 * tests/sets.at: here.
17923
17924 2001-12-13 Akim Demaille <akim@epita.fr>
17925
17926 * src/closure.c (closure): Use nrules instead of playing tricks
17927 with BITS_PER_WORD.
17928
17929 2001-12-13 Akim Demaille <akim@epita.fr>
17930
17931 * src/print.c (print_actions): Output the handling of `$' as the
17932 traces do: shifting the token EOF. Before EOF was treated as a
17933 nonterminal.
17934 * tests/regression.at: Adjust some tests.
17935 * src/print_graph.c (print_core): Complete the set of items via
17936 closure. The next-to-final and final states are still unsatisfying,
17937 but that's to be addressed elsewhere.
17938 No longer output the rule numbers, but do output the state number.
17939 A single loop for the shifts + gotos is enough, but picked a
17940 distinct color for each.
17941 (print_graph): Initialize and finalize closure.
17942
17943 2001-12-13 Akim Demaille <akim@epita.fr>
17944
17945 * src/reader.c (readgram): Remove dead code, an strip useless
17946 braces.
17947 (get_type): Remove, unused.
17948
17949 2001-12-12 Akim Demaille <akim@epita.fr>
17950
17951 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17952 on that of lib/error.c.
17953
17954 2001-12-12 Akim Demaille <akim@epita.fr>
17955
17956 Some hosts don't like `/' in includes.
17957
17958 * src/system.h: Include libgettext.h without qualifying the path.
17959 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17960 $(top_srcdir).
17961
17962 2001-12-11 Marc Autret <autret_m@epita.fr>
17963
17964 * src/output.c (output_parser): Remove useless muscle.
17965
17966 2001-12-11 Marc Autret <autret_m@epita.fr>
17967
17968 * src/bison.simple: Remove #line just before %%epilogue. It
17969 is now handled in ...
17970 * src/reader.c (read_additionnal_code): Add the output of a
17971 #line for the epilogue.
17972
17973 2001-12-10 Marc Autret <autret_m@epita.fr>
17974
17975 * src/reader.c (copy_definition): Re-use CPP-outed code which
17976 replace precedent remove.
17977 * src/bison.simple: Remove #line before %%prologue because
17978 %%input-line is wrong at this time.
17979
17980 2001-12-10 Marc Autret <autret_m@epita.fr>
17981
17982 * src/reader.c (symbols_output): Clean up.
17983 * src/output.c (output_gram, output): Clean up.
17984
17985 2001-12-10 Akim Demaille <akim@epita.fr>
17986
17987 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17988 * src/LR0.c (set_state_table): here.
17989 * src/lalr.c (lalr): Call it.
17990
17991 2001-12-10 Akim Demaille <akim@epita.fr>
17992
17993 * src/state.h (shifts): Remove the `number' member: shifts are
17994 attached to state, hence no longer need to be labelled with a
17995 state number.
17996
17997 2001-12-10 Akim Demaille <akim@epita.fr>
17998
17999 Now that states have a complete set of members, the linked list of
18000 shifts is useless: just fill directly the state's shifts member.
18001
18002 * src/state.h (shifts): Remove the `next' member.
18003 * src/LR0.c (first_state, last_state): Remove.
18004 Adjust the callers.
18005 (augment_automaton): Don't look for the shifts that must be added
18006 a shift on EOF: it is those of the state we looked for! But now,
18007 since shifts are attached, it is no longer needed to looking
18008 merely by its id: its number.
18009
18010 2001-12-10 Akim Demaille <akim@epita.fr>
18011
18012 * src/LR0.c (augment_automaton): Better variable locality.
18013 Remove an impossible branch: if there is a state corresponding to
18014 the start symbol being shifted, then there is shift for the start
18015 symbol from the initial state.
18016
18017 2001-12-10 Akim Demaille <akim@epita.fr>
18018
18019 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
18020 only when appropriate: when insert_start_shifting_state' is not
18021 invoked.
18022 * tests/regression.at (Rule Line Numbers): Adjust.
18023
18024 2001-12-10 Akim Demaille <akim@epita.fr>
18025
18026 * src/LR0.c (augment_automaton): Now that all states have shifts,
18027 merge the two cases addition shifts to the initial state.
18028
18029 2001-12-10 Akim Demaille <akim@epita.fr>
18030
18031 * src/lalr.c (set_state_table): Move to...
18032 * src/LR0.c: here.
18033 * src/lalr.c (lalr): Don't call it...
18034 * src/LR0.c (generate_states): do it.
18035 * src/LR0.h (first_state): Remove, only the table is used.
18036
18037 2001-12-10 Akim Demaille <akim@epita.fr>
18038
18039 * src/LR0.h (first_shift, first_reduction): Remove.
18040 * src/lalr.c: Don't use first_shift: find shifts through the
18041 states.
18042
18043 2001-12-10 Akim Demaille <akim@epita.fr>
18044
18045 * src/LR0.c: Attach shifts to states as soon as they are
18046 computed.
18047 * src/lalr.c (set_state_table): Instead of assigning shifts to
18048 state, just assert that the mapping was properly done.
18049
18050 2001-12-10 Akim Demaille <akim@epita.fr>
18051
18052 * src/LR0.c (insert_start_shift): Rename as...
18053 (insert_start_shifting_state): this.
18054 (insert_eof_shifting_state, insert_accepting_state): New.
18055 (augment_automaton): Adjust.
18056 Better locality of the variables.
18057 When looking if the start_symbol is shifted from the initial
18058 state, using `while (... symbol != start_symbol ...)' sounds
18059 better than `while (... symbol < start_symbol ...)': If fail
18060 to see how the order between symbols could be relevant!
18061
18062 2001-12-10 Akim Demaille <akim@epita.fr>
18063
18064 * src/getargs.h: Don't declare `spec_name_prefix' and
18065 `spec_file_prefix', declared by src/files.h.
18066 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
18067 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
18068 * src/output.c (prepare): Adjust.
18069 * src/reader.c (symbols_output): Likewise.
18070 * src/vmsgetargs.c: Vaguely adjust, but who cares?
18071
18072 2001-12-10 Akim Demaille <akim@epita.fr>
18073
18074 * src/muscle_tab.c (muscle_init): NULL is a better default than
18075 `"0"'.
18076
18077 2001-12-10 Akim Demaille <akim@epita.fr>
18078
18079 * src/reader.c (reader): Calling symbols_output once is enough.
18080
18081 2001-12-10 Akim Demaille <akim@epita.fr>
18082
18083 Now that states have a complete set of members, the linked list of
18084 reductions is useless: just fill directly the state's reductions
18085 member.
18086
18087 * src/state.h (struct reductions): Remove member `number' and
18088 `next'.
18089 * src/LR0.c (first_reduction, last_reduction): Remove.
18090 (save_reductions): Don't link the new reductions, store them in
18091 this_state.
18092 * src/lalr.c (set_state_table): No need to attach reductions to
18093 states, it's already done.
18094 * src/output.c (output_actions): No longer free the shifts, then
18095 the reductions, then the states: free all the states and their
18096 members.
18097
18098 2001-12-10 Akim Demaille <akim@epita.fr>
18099
18100 * src/options.c (OPTN, DRTV, BOTH): New.
18101 (option_table): Use them.
18102
18103 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
18104 the job of system.h.
18105 * src/options.c: Don't include stdio.h and xalloc.h for the same
18106 reasons.
18107
18108 2001-12-10 Akim Demaille <akim@epita.fr>
18109
18110 * src/output.c (output, prepare): Make sure the values of the
18111 muscles `action' and `prologue' are 0-terminated.
18112
18113 2001-12-10 Akim Demaille <akim@epita.fr>
18114
18115 Clean up GCC warnings.
18116
18117 * src/reader.c (copy_action): `buf' is not used.
18118 (parse_skel_decl): Be static.
18119 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
18120 * src/options.h (create_long_option_table): Have a real prototype.
18121 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
18122 (hash_delete_at): Return const void *.
18123 Adjust casts to preserve the const.
18124
18125 2001-12-10 Akim Demaille <akim@epita.fr>
18126
18127 * configure.in: Require 2.52g.
18128 M4 is not needed, but AUTOM4TE is.
18129 * m4/m4.m4: Remove.
18130 * tests/Makefile.am: Adjust.
18131
18132 2001-12-10 Akim Demaille <akim@epita.fr>
18133
18134 One structure for states is enough, even though theoretically
18135 there are LR(0) states and LALR(1) states.
18136
18137 * src/lalr.h (state_t): Remove.
18138 (state_table): Be state_t **, not state_t *.
18139 * src/state.h (core, CORE_ALLOC): Rename as...
18140 (state_t, STATE_ALLOC): this.
18141 Add the LALR(1) members: shifts, reductions, errs.
18142 * src/LR0.c (state_table): Rename as...
18143 (state_hash): this, to avoid name clashes with the global
18144 `state_table'.
18145 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
18146 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
18147
18148 2001-12-10 Akim Demaille <akim@epita.fr>
18149
18150 Bison dumps core on bash.y.
18151 Reported by Pascal Bart.
18152
18153 * src/warshall.c (bitmatrix_print): New.
18154 (TC): Use it.
18155 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
18156 j must be the outer loop.
18157 * tests/regression.at (Broken Closure): New.
18158
18159 2001-12-05 Akim Demaille <akim@epita.fr>
18160
18161 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
18162 its argument.
18163 Reported by Peter Hamorsky.
18164
18165 2001-12-05 Akim Demaille <akim@epita.fr>
18166
18167 * src/conflicts.c (err_table): Remove.
18168 (resolve_sr_conflict): Adjust.
18169 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
18170 Rename as...
18171 (state_t.reductions, state_t.shifts): this.
18172
18173 2001-12-05 Akim Demaille <akim@epita.fr>
18174
18175 * src/reduce.c (reduce_grammar_tables): No longer disable the
18176 removal of useless rules via CPP but via `if (0)', so that the
18177 compiler still check the code is valid.
18178 For instance, it should have noticed `rline' no longer exists: use
18179 the `line' member of rule_t.
18180 * src/gram.c (dummy, rline): Remove, unused.
18181
18182 2001-12-05 Akim Demaille <akim@epita.fr>
18183
18184 * src/output.c (pack_vector): Use assert, not berror.
18185 * src/main.c (berror): Remove, unused.
18186
18187 2001-12-05 Akim Demaille <akim@epita.fr>
18188
18189 New experimental feature: if --verbose --trace output all the
18190 items of a state, not only its kernel.
18191
18192 * src/print.c (print_core): If `trace_flag', then invoke closure
18193 before outputting the items of the state (print_core is no longer
18194 a correct name them).
18195 (print_results): Invoke new_closure/free_closure if needed.
18196
18197 2001-12-05 Akim Demaille <akim@epita.fr>
18198
18199 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
18200 * src/closure.c, src/closure.h (itemsetsize): Rename as...
18201 (nitemset): for consistency with the rest of the project.
18202
18203 2001-12-05 Akim Demaille <akim@epita.fr>
18204
18205 * src/closure.c (print_closure): Improve.
18206 (closure): Use it for printing input and output.
18207
18208 2001-12-05 Akim Demaille <akim@epita.fr>
18209
18210 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
18211 indexed by nonterminals.
18212
18213 2001-12-05 Akim Demaille <akim@epita.fr>
18214
18215 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
18216 what it was!).
18217 * src/warshall.h: Remove accidental duplication of the content.
18218
18219 2001-12-05 Akim Demaille <akim@epita.fr>
18220
18221 * src/closure.c (set_fderives): De-obfuscate.
18222
18223 2001-12-05 Akim Demaille <akim@epita.fr>
18224
18225 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18226
18227 2001-12-05 Akim Demaille <akim@epita.fr>
18228
18229 * src/closure.c (set_firsts): De-obfuscate.
18230
18231 2001-12-05 Akim Demaille <akim@epita.fr>
18232
18233 * src/output.c (action_row): De-obfuscate
18234 using the good o' techniques: arrays not pointers, variable
18235 locality, BITISSET, RESETBIT etc.
18236
18237 2001-12-05 Akim Demaille <akim@epita.fr>
18238
18239 Pessimize the code to simplify it: from now on, all the states
18240 have a valid SHIFTS, which NSHIFTS is possibly 0.
18241
18242 * src/LR0.c (shifts_new): Be global and move to..
18243 * src/state.c, src/state.h: here.
18244 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18245 * src/print_graph: Adjust.
18246
18247 2001-12-05 Akim Demaille <akim@epita.fr>
18248
18249 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18250 * src/conflicts.c: Use it.
18251 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18252 incorrectly ``simplified''.
18253
18254 2001-12-05 Akim Demaille <akim@epita.fr>
18255
18256 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18257 using the good o' techniques: arrays not pointers, variable
18258 locality, BITISSET, RESETBIT etc.
18259
18260 2001-12-05 Akim Demaille <akim@epita.fr>
18261
18262 * src/state.h (SHIFT_SYMBOL): New.
18263 * src/conflicts.c: Use it to deobfuscate.
18264
18265 2001-12-05 Akim Demaille <akim@epita.fr>
18266
18267 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18268 (print_reductions): De-obfuscate using the good o' techniques:
18269 arrays not pointers, variable locality, BITISSET.
18270
18271 2001-12-05 Akim Demaille <akim@epita.fr>
18272
18273 * src/conflicts.c (print_reductions): Arrays, not pointers.
18274 Use BITISSET.
18275
18276 2001-12-05 Akim Demaille <akim@epita.fr>
18277
18278 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18279
18280 2001-12-05 Akim Demaille <akim@epita.fr>
18281
18282 * src/conflicts.c (print_reductions): Improve variable locality.
18283
18284 2001-12-05 Akim Demaille <akim@epita.fr>
18285
18286 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18287
18288 2001-12-05 Akim Demaille <akim@epita.fr>
18289
18290 * src/conflicts.c (print_reductions): Improve variable locality.
18291
18292 2001-12-05 Akim Demaille <akim@epita.fr>
18293
18294 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18295 * src/lalr.c: Use them.
18296
18297 2001-12-05 Akim Demaille <akim@epita.fr>
18298
18299 * src/LR0.c (augment_automaton): Formatting changes.
18300 Better variable locality.
18301
18302 2001-12-05 Akim Demaille <akim@epita.fr>
18303
18304 * src/lalr.c (matrix_print): New.
18305 (transpose): Use it.
18306 Use arrays instead of pointers.
18307
18308 2001-12-05 Akim Demaille <akim@epita.fr>
18309
18310 * src/lalr.c (maxrhs): Move to...
18311 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18312 * src/lalr.c (build_relations): Adjust.
18313
18314 2001-12-05 Akim Demaille <akim@epita.fr>
18315
18316 * src/lalr.c (transpose): Free the memory allocated to the
18317 argument, as it is replaced by the results by the unique caller.
18318 (build_relations): Merely invoke transpose: it handles the memory
18319 deallocation.
18320 Improve variable locality.
18321 Avoid variables used as mere abbreviations.
18322 (compute_lookaheads): Use arrays instead of pointers.
18323
18324 2001-12-05 Akim Demaille <akim@epita.fr>
18325
18326 * src/lalr.c (initialize_F): Improve variable locality.
18327 Avoid variables used as mere abbreviations.
18328
18329 2001-12-05 Akim Demaille <akim@epita.fr>
18330
18331 * src/derives.c (print_derives): Display the ruleno.
18332 * src/lalr.c (initialize_F, transpose): Better variable locality
18333 to improve readability.
18334 Avoid variables used as mere abbreviations.
18335
18336 2001-12-05 Akim Demaille <akim@epita.fr>
18337
18338 * src/lalr.c (traverse): Use arrays instead of pointers.
18339
18340 2001-12-05 Akim Demaille <akim@epita.fr>
18341
18342 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18343 the handling of squeue.
18344 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18345
18346 2001-12-05 Akim Demaille <akim@epita.fr>
18347
18348 Because useless nonterminals are now kept alive (instead of being
18349 `destroyed'), we now sometimes examine them, and store information
18350 related to them. Hence we need to know their number, and adjust
18351 memory allocations.
18352
18353 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18354 static.
18355 * src/LR0.c (allocate_itemsets): The memory allocated to
18356 `symbol_count' was used for two different purpose: once to count
18357 the number of occurrences of each symbol, and later reassigned to
18358 `shift_symbol', containing the symbol that can be shifted from a
18359 given state.
18360 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18361 only, and...
18362 (new_itemsets): Allocate `shift_symbol' here.
18363 (allocate_itemsets): symbol_count includes useless nonterminals.
18364 Make room for them.
18365 (free_storage): Use `free', not `XFREE', for pointers that cannot
18366 be null.
18367
18368 2001-12-05 Akim Demaille <akim@epita.fr>
18369
18370 * src/nullable.c (set_nullable): Deobfuscate the handling of
18371 ritem.
18372 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18373
18374 2001-12-05 Akim Demaille <akim@epita.fr>
18375
18376 * src/gram.c, src/gram.h (ritem_print): New.
18377 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18378 (This useless function was defined only to work around VMS linkers
18379 that can't handle compilation units with variables only).
18380 * src/reduce.c (dump_grammar): Use it to trace the construction of
18381 ritem.
18382
18383 2001-12-04 Paul Eggert <eggert@twinsun.com>
18384
18385 * src/bison.simple (union yyalloc): Change member names
18386 to be the same as the stack names.
18387 (yyparse): yyptr is now union yyalloc *, not char *.
18388 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18389 and may generate better code on some machines.
18390 (yystpcpy): Use prototype if __STDC__ is defined, not just
18391 if __cplusplus is defined.
18392
18393 2001-11-30 Akim Demaille <akim@epita.fr>
18394
18395 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18396 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18397 Gettext doesn't compile cleanly, and dies with -Werror.
18398 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18399 Include WARNING_CFLAGS here.
18400 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18401 before being defined.
18402
18403 2001-11-27 Paul Eggert <eggert@twinsun.com>
18404
18405 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18406 First arg is int, not unsigned.
18407 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18408 (SIZE_MAX, UINT_MAX): New macros.
18409 (quotearg_n_options): Abort if N is negative.
18410 Avoid overflow check on hosts where size_t is 64 bits and int
18411 is 32 bits, as overflow is impossible there.
18412 Fix off-by-one typo that caused unnecessary reallocation.
18413
18414 2001-11-29 Paul Eggert <eggert@twinsun.com>
18415
18416 Name space cleanup in generated parser.
18417
18418 * doc/bison.texinfo (Bison Parser): Discuss system headers
18419 and their effect on the user name space.
18420
18421 * src/bison.simple:
18422 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18423 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18424 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18425
18426 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18427 on user names when possible.
18428
18429 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18430 Simplify test for whather <alloca.h> exists.
18431
18432 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18433
18434 (<stdio.h>): Include if YYDEBUG.
18435
18436 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18437 ! defined (yyoverflow) && ! defined (yymemcpy).
18438
18439 (yymemcpy, yyparse): Rename local variables as needed so that
18440 they all begin with 'yy'.
18441
18442 (yystrlen, yystpcpy): New functions.
18443
18444 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18445 All uses changed.
18446
18447 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18448 instead of relying on string.h functions. Use YYSTACK_ALLOC
18449 and YYSTACK_FREE instead of malloc and free.
18450
18451 2001-11-30 Akim Demaille <akim@epita.fr>
18452
18453 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18454 before their first uses.
18455 (YYBISON, YYPURE): Move to the top of the output.
18456
18457 2001-11-30 Akim Demaille <akim@epita.fr>
18458
18459 * tests/reduce.at (Useless Nonterminals): Fix.
18460
18461 2001-11-30 Akim Demaille <akim@epita.fr>
18462
18463 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18464 if body instead of `;' to pacify GCC's warnings.
18465
18466 2001-11-30 Akim Demaille <akim@epita.fr>
18467
18468 Instead of mapping the LHS of unused rules to -1, keep the LHS
18469 valid, but flag the rules as invalid.
18470
18471 * src/gram.h (rule_t): `useful' is a new member.
18472 * src/print.c (print_grammar): Adjust.
18473 * src/derives.c (set_derives): Likewise.
18474 * src/reader.c (packgram, reduce_output): Likewise.
18475 * src/reduce.c (reduce_grammar_tables): Likewise.
18476 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18477
18478 2001-11-30 Akim Demaille <akim@epita.fr>
18479
18480 * src/reduce.c (reduce_output): Formatting changes.
18481 * src/print.c (print_results, print_grammar): Likewise.
18482 * tests/regression.at (Rule Line Numbers)
18483 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18484
18485 2001-11-30 Akim Demaille <akim@epita.fr>
18486
18487 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18488 useless nonterminals, move them at the end of the symbol arrays.
18489 (reduce_output): Adjust.
18490 * tests/reduce.at (Useless Nonterminals): Adjust.
18491
18492 2001-11-30 Akim Demaille <akim@epita.fr>
18493
18494 * src/reduce.c: Various comment/formatting changes.
18495 (nonterminals_reduce): New, extracted from...
18496 (reduce_grammar_tables): here.
18497 (reduce_grammar): Call nonterminals_reduce.
18498
18499 2001-11-29 Paul Eggert <eggert@twinsun.com>
18500
18501 * src/bison.simple (YYSTACK_REALLOC): Remove.
18502 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18503 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18504 New macros.
18505 (union yyalloc): New type.
18506 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18507 an arbitrary restriction on hosts where size_t is wider than int.
18508
18509 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18510 a parser stack overflow. Allocate just one block of memory for all
18511 three stacks, instead of allocating three blocks; this typically is
18512 faster and reduces fragmentation.
18513
18514 Do not limit the number of items in the stack to a value that fits
18515 in 'int', as this is an arbitrary limit on hosts with 64-bit
18516 size_t and 32-bit int.
18517
18518 2001-11-29 Marc Autret <autret_m@epita.fr>
18519
18520 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18521 of defining YYERROR_VERBOSE.
18522 [AT_DATA]: $4 is now out of C declarations in the prologue.
18523
18524 2001-11-28 Marc Autret <autret_m@epita.fr>
18525
18526 * src/reader.c (parse_dquoted_param): New.
18527 (parse_skel_decl): Use it.
18528 * src/lex.h: Add its prototype.
18529 * src/lex.c (literalchar): Become not static.
18530
18531 2001-11-28 Marc Autret <autret_m@epita.fr>
18532
18533 * src/output.h: And put its extern declaration here.
18534 * src/output.c (error_verbose): Define here.
18535 (prepare): Echo name modification.
18536 * src/getargs.h: Clean its extern declaration.
18537 * src/getargs.c (error_verbose_flag): Remove.
18538 (getargs): Remove case 'e'.
18539 * src/options.c (option_table): 'error-verbose' is now seen as simple
18540 percent option.
18541 Include output.h.
18542
18543 * src/reader.c (read_declarations): Remove case tok_include.
18544 (parse_include_decl): Remove.
18545 * src/lex.h (token_t): Remove tok_include.
18546 * src/options.c (option_table): 'include' is now a simple command line
18547 option.
18548
18549 2001-11-28 Marc Autret <autret_m@epita.fr>
18550
18551 * src/bison.simple: Adjust muscle names.
18552 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18553 * src/output.c (prepare): s/_/-/ for the muscles names.
18554 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18555
18556 2001-11-28 Marc Autret <autret_m@epita.fr>
18557
18558 * src/bison.simple: Fix debug.
18559 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18560
18561 2001-11-28 Akim Demaille <akim@epita.fr>
18562
18563 * src/LR0.c (shifts_new): New.
18564 (save_shifts, insert_start_shift, augment_automaton): Use it.
18565
18566 2001-11-28 Akim Demaille <akim@epita.fr>
18567
18568 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18569 keep ruleno only.
18570
18571 2001-11-28 Akim Demaille <akim@epita.fr>
18572
18573 * src/closure.c (closure): Instead of looping over word in array
18574 then bits in words, loop over bits in array.
18575
18576 2001-11-28 Akim Demaille <akim@epita.fr>
18577
18578 * src/closure.c (closure): No longer optimize the special case
18579 where all the bits of `ruleset[r]' are set to 0, to make the code
18580 clearer.
18581
18582 2001-11-28 Akim Demaille <akim@epita.fr>
18583
18584 * src/closure.c (closure): `r' and `c' are new variables, used to
18585 de-obfuscate accesses to RULESET and CORE.
18586
18587 2001-11-28 Akim Demaille <akim@epita.fr>
18588
18589 * src/reduce.c (reduce_print): Use ngettext.
18590 (dump_grammar): Improve the trace accuracy.
18591
18592 2001-11-28 Akim Demaille <akim@epita.fr>
18593
18594 * src/reduce.c (dump_grammar): Don't translate trace messages.
18595
18596 2001-11-28 Akim Demaille <akim@epita.fr>
18597
18598 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18599 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18600 as all tags are free'ed afterwards.
18601 From Enrico Scholz.
18602
18603 2001-11-27 Paul Eggert <eggert@twinsun.com>
18604
18605 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18606 use alloca when we didn't want to, and vice versa.
18607
18608 2001-11-27 Marc Autret <autret_m@epita.fr>
18609
18610 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18611 initialization.
18612 * src/output.c (prepare): Remove its update.
18613
18614 2001-11-27 Marc Autret <autret_m@epita.fr>
18615
18616 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18617 Use %error-verbose.
18618
18619 2001-11-27 Marc Autret <autret_m@epita.fr>
18620
18621 * src/bison.simple: Remove YYERROR_VERBOSE using.
18622 Use %%error_verbose.
18623 (yyparse): Likewise.
18624 * src/output.c (prepare): Give its final value.
18625 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18626 * src/getargs.h: Add its extern declaration.
18627 * src/getargs.c (error_verbose_flag): New int.
18628 (getargs): Update to catch new case.
18629 * src/options.c (option_table): 'error-verbose' is a new option.
18630 (shortopts): Update.
18631
18632 2001-11-27 Akim Demaille <akim@epita.fr>
18633
18634 * src/system.h: Use intl/libgettext.h.
18635 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18636
18637 2001-11-27 Akim Demaille <akim@epita.fr>
18638
18639 * tests/torture.at (Exploding the Stack Size with Malloc):
18640 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18641
18642 2001-11-27 Akim Demaille <akim@epita.fr>
18643
18644 * src/files.c: Include error.h.
18645 Reported by Hans Aberg.
18646
18647 2001-11-26 Marc Autret <autret_m@epita.fr>
18648
18649 * src/reader.c (parse_include_decl): New, not yet implemented.
18650 (read_declarations): Add case tok_include.
18651 * src/getargs.h (include): Add its extern definition.
18652 * src/getargs.c (include): New const char *.
18653 (getargs): Add case '-I'.
18654 * src/options.c (option_table): Add include as command line and
18655 percent option.
18656 * src/lex.h (token_t): Add tok_include.
18657
18658 2001-11-26 Akim Demaille <akim@epita.fr>
18659
18660 * src/reader.c (readgram): Make sure rules for mid-rule actions
18661 have a lineno equal to that of their host rule.
18662 Reported by Hans Aberg.
18663 * tests/regression.at (Rule Line Numbers): New.
18664
18665 2001-11-26 Akim Demaille <akim@epita.fr>
18666
18667 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18668 size_ts.
18669
18670 2001-11-26 Akim Demaille <akim@epita.fr>
18671
18672 * src/complain.c, src/complain.h (error): Remove, provided by
18673 lib/error.[ch].
18674
18675 2001-11-26 Akim Demaille <akim@epita.fr>
18676
18677 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18678 issue an error message.
18679 * tests/regression.at (Invalid %directive): New.
18680 Reported by Hans Aberg.
18681
18682 2001-11-26 Akim Demaille <akim@epita.fr>
18683
18684 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18685 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18686
18687 2001-11-26 Akim Demaille <akim@epita.fr>
18688
18689 * src/conflicts.c (conflicts_print): Don't complain at all when
18690 there are no reduce/reduce conflicts, and as many shift/reduce
18691 conflicts as expected.
18692 * tests/regression.at (%expect right): Adjust.
18693
18694 2001-11-23 Akim Demaille <akim@epita.fr>
18695
18696 * lib/alloca.c: Update, from fileutils.
18697
18698 2001-11-23 Akim Demaille <akim@epita.fr>
18699
18700 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18701
18702 2001-11-23 Akim Demaille <akim@epita.fr>
18703
18704 * src/system.h: Include alloca.h.
18705 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18706
18707 2001-11-23 Akim Demaille <akim@epita.fr>
18708
18709 * src/print_graph.c (print_actions): Remove `rule', unused.
18710 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18711 pacify GCC's signed < unsigned warnings.
18712 * src/closure.c (itemsetsize): Likewise.
18713 * src/reader.c (symbol_list_new): Static.
18714
18715 2001-11-23 Akim Demaille <akim@epita.fr>
18716
18717 Attaching lineno to buckets is stupid, since only one copy of each
18718 symbol is kept, only the line of the first occurrence is kept too.
18719
18720 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18721 * src/reader.c (rline_allocated): Remove, unused.
18722 (symbol_list): Have a `line' member.
18723 (symbol_list_new): New.
18724 (readgram): Use it.
18725 * src/print.c (print_grammar): Output the rule line numbers.
18726 * tests/regression.at (Solved SR Conflicts)
18727 (Unresolved SR Conflicts): Adjust.
18728 Reported by Hans Aberg.
18729
18730 2001-11-22 Marc Autret <autret_m@epita.fr>
18731
18732 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18733
18734 2001-11-22 Marc Autret <autret_m@epita.fr>
18735
18736 * src/muscle_tab.c (muscle_init): Remove initialization of
18737 skeleton muscle.
18738 * src/output.c (output_master_parser): Do it here.
18739
18740 2001-11-20 Akim Demaille <akim@epita.fr>
18741
18742 * po/sv.po: New.
18743 * configure.in (ALL_LINGUAS): Adjust.
18744 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18745 longer contains strings to translate.
18746
18747 2001-11-19 Akim Demaille <akim@epita.fr>
18748
18749 * src/conflicts.c (conflicts_print): Add a missing \n.
18750
18751 2001-11-19 Akim Demaille <akim@epita.fr>
18752
18753 * src/nullable.c (nullable_print): New.
18754 (set_nullable): Call it when tracing.
18755 Better locality of variables.
18756
18757 2001-11-19 Akim Demaille <akim@epita.fr>
18758
18759 * src/print.c (print_actions): Better locality of variables.
18760
18761 2001-11-19 Akim Demaille <akim@epita.fr>
18762
18763 * src/derives.c (print_derives): Fix and enrich.
18764 * src/closure.c (print_fderives): Likewise.
18765
18766 2001-11-19 Akim Demaille <akim@epita.fr>
18767
18768 * src/closure.c (itemsetend): Remove, replaced with...
18769 (itemsetsize): new.
18770
18771 2001-11-19 Akim Demaille <akim@epita.fr>
18772
18773 * src/LR0.c (kernel_end): Remove, replaced with...
18774 (kernel_size): new.
18775
18776 2001-11-19 Akim Demaille <akim@epita.fr>
18777
18778 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18779 to clarify.
18780
18781 2001-11-19 Akim Demaille <akim@epita.fr>
18782
18783 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18784
18785 2001-11-19 Akim Demaille <akim@epita.fr>
18786
18787 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18788 trace messages.
18789 * src/LR0.c: Likewise.
18790 (allocate_itemsets): Use arrays instead of pointers to clarify.
18791
18792 2001-11-19 Akim Demaille <akim@epita.fr>
18793
18794 * src/getargs.c (statistics_flag): Replace with...
18795 (trace_flag): New.
18796 (longopts): Accept --trace instead of --statistics.
18797 * src/getargs.h, src/options.c: Adjust.
18798 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18799 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18800
18801 2001-11-19 Akim Demaille <akim@epita.fr>
18802
18803 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18804 pointers to clarify the code.
18805 (save_reductions, save_shifts): Factor common parts of alternatives.
18806
18807 2001-11-19 Akim Demaille <akim@epita.fr>
18808
18809 * src/LR0.c (new_state, get_state): Complete TRACE code.
18810 * src/closure.c: Include `reader.h' to get `tags', needed by the
18811 trace code.
18812 Rename the conditional DEBUG as TRACE.
18813 Output consistently TRACEs to stderr, not stdout.
18814 * src/derives.c: Likewise.
18815 * src/reduce.c: (inaccessable_symbols): Using if is better style
18816 than goto.
18817 Use `#if TRACE' instead of `#if 0' for tracing code.
18818
18819 2001-11-19 Akim Demaille <akim@epita.fr>
18820
18821 * src/system.h (LIST_FREE, shortcpy): New.
18822 * src/LR0.c: Use them.
18823 * src/output.c (free_itemsets, free_reductions, free_shifts):
18824 Remove, replaced by LIST_FREE.
18825
18826 2001-11-19 Akim Demaille <akim@epita.fr>
18827
18828 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18829 (REDUCTIONS_ALLOC): New.
18830 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18831 allocation.
18832
18833 2001-11-19 Akim Demaille <akim@epita.fr>
18834
18835 * src/LR0.c (new_state): Complete trace code.
18836 * src/nullable.c (set_nullable): Don't translate traces.
18837
18838 2001-11-19 Akim Demaille <akim@epita.fr>
18839
18840 * src/print_graph.c (print_core): Better locality of variables.
18841 * src/print.c (print_core): Likewise.
18842
18843 2001-11-19 Akim Demaille <akim@epita.fr>
18844
18845 * src/vcg.c: You do the output, so you are responsible of the
18846 handling of VCG syntax, in particular: use quotearg.
18847 * src/print_graph.c: Don't.
18848 (print_actions): Don't output the actions as part of the nodes,
18849 since that's the job of the edges.
18850 (print_state): Don't output by hand: fill the node description,
18851 and ask for its output.
18852
18853 2001-11-19 Akim Demaille <akim@epita.fr>
18854
18855 * src/bison.simple (yyparse): When verbosely reporting an error,
18856 no longer put additional quotes around token names.
18857 * tests/calc.at: Adjust.
18858
18859 2001-11-19 Akim Demaille <akim@epita.fr>
18860
18861 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18862 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18863 * src/output.c: Adjust.
18864
18865 2001-11-19 Akim Demaille <akim@epita.fr>
18866
18867 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18868 (rule_t): this.
18869 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18870
18871 2001-11-19 Akim Demaille <akim@epita.fr>
18872
18873 * src/gram.h (rule_t): New.
18874 (rule_table): New.
18875 (rrhs, rlhs): Remove, part of state_t.
18876 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18877 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18878 * src/reader.c, src/reduce.c: Adjust.
18879
18880 2001-11-19 Akim Demaille <akim@epita.fr>
18881
18882 * src/reader.c (symbols_output): New, extracted from...
18883 (packsymbols): Here.
18884 (reader): Call it.
18885
18886 2001-11-19 Akim Demaille <akim@epita.fr>
18887
18888 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18889 (maxrhs): this new function.
18890
18891 2001-11-19 Akim Demaille <akim@epita.fr>
18892
18893 * src/lalr.c (F): New macro to access the variable F.
18894 Adjust.
18895
18896 2001-11-19 Akim Demaille <akim@epita.fr>
18897
18898 * src/lalr.h (LA): New macro to access the variable LA.
18899 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18900 * src/lalr.c: Adjust.
18901
18902 2001-11-19 Akim Demaille <akim@epita.fr>
18903
18904 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18905 (set_state_table): handle the `lookaheads' members.
18906
18907 2001-11-19 Akim Demaille <akim@epita.fr>
18908
18909 * src/lalr.h (lookaheads): Removed array, whose contents is now
18910 a member of...
18911 (state_t): this structure.
18912 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18913 Adjust.
18914
18915 2001-11-19 Akim Demaille <akim@epita.fr>
18916
18917 * src/lalr.h (consistent): Removed array, whose contents is now
18918 a member of...
18919 (state_t): this structure.
18920 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18921 Adjust.
18922
18923 2001-11-19 Akim Demaille <akim@epita.fr>
18924
18925 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18926 contents are now members of...
18927 (state_t): this structure.
18928 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18929 Adjust.
18930
18931 2001-11-19 Akim Demaille <akim@epita.fr>
18932
18933 * src/lalr.h (state_t): New.
18934 (state_table): Be a state_t * instead of a core **.
18935 (accessing_symbol): Remove, part of state_t.
18936 * src/lalr.c: Adjust.
18937 (set_accessing_symbol): Merge into...
18938 (set_state_table): this.
18939 * src/print_graph.c, src/conflicts.c: Adjust.
18940
18941 2001-11-14 Akim Demaille <akim@epita.fr>
18942
18943 * tests/calc.at, tests/output.at, tests/regression.at,
18944 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18945 now the tests are run in private dirs, therefore AC_CLEANUP and
18946 family can be simplified to 0-ary.
18947 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18948 use abs. path to find config.h.
18949 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18950 stderr, there can be way too much random noise.
18951 Instead pass -Werror to GCC and rely on the exit status.
18952 Reported by Wolfram Wagner.
18953
18954 2001-11-14 Akim Demaille <akim@epita.fr>
18955
18956 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18957 defined only if yyoverflow is defined, to avoid `warning: unused
18958 variable `yyvs1''.
18959 Reported by The Test Suite.
18960
18961 2001-11-14 Akim Demaille <akim@epita.fr>
18962
18963 * src/print.c: Include reduce.h.
18964 Reported by Hans Aberg.
18965
18966 2001-11-14 Akim Demaille <akim@epita.fr>
18967
18968 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18969 Revert a previous patch: these are really const.
18970 * src/conflicts.c (conflict_report): Additional useless pair of
18971 braces to pacify GCC's warnings for `if () if () {} else {}'.
18972 * src/lex.c (parse_percent_token): Replace equal_offset with
18973 arg_offset.
18974 arg is const.
18975 Be sure to strdup `arg' when used, since there is no reason for
18976 token_buffer not to change.
18977
18978 2001-11-14 Akim Demaille <akim@epita.fr>
18979
18980 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18981 definition.
18982 * src/main.c (main): Use them.
18983 Suggested by Hans Aberg.
18984
18985 2001-11-12 Akim Demaille <akim@epita.fr>
18986
18987 * src/system.h (ngettext): Now that we use ngettext, be sure to
18988 provide a default definition when NLS are not used.
18989
18990 2001-11-12 Akim Demaille <akim@epita.fr>
18991
18992 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18993 Use @kbd to denote user input.
18994 (Language and Grammar): ANSIfy the example.
18995 Adjust its layout for info/notinfo.
18996 (Location Tracking Calc): Output error messages to stderr.
18997 Output locations in a more GNUtically correct way.
18998 Fix a couple of Englishos.
18999 Adjust @group/@end group pairs.
19000
19001 2001-11-12 Akim Demaille <akim@epita.fr>
19002
19003 %expect was not functioning at all.
19004
19005 * src/conflicts.c (expected_conflicts): Set to -1.
19006 (conflict_report): Use ngettext.
19007 (conflicts_print): Check %expect and make its violation an error.
19008 * doc/bison.texinfo (Expect Decl): Adjust.
19009 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
19010 * tests/regression.at (%expect not enough, %expect right)
19011 (%expect too much): New.
19012
19013 2001-11-12 Akim Demaille <akim@epita.fr>
19014
19015 * tests/regression.at (Conflicts): Rename as...
19016 (Unresolved SR Conflicts): this.
19017 (Solved SR Conflicts): New.
19018
19019 2001-11-12 Akim Demaille <akim@epita.fr>
19020
19021 * src/reduce.c (print_results): Rename as...
19022 (reduce_output): This.
19023 Output to OUT, passed as argument, instead of output_obstack.
19024 (dump_grammar): Likewise.
19025 (reduce_free): New.
19026 Also free V1.
19027 (reduce_grammar): No longer call reduce_output, since...
19028 * src/print.c (print_results): do it.
19029 * src/main.c (main): Call reduce_free;
19030
19031 2001-11-12 Akim Demaille <akim@epita.fr>
19032
19033 * src/conflicts.c (print_reductions): Accept OUT as argument.
19034 Output to it, not to output_obstack.
19035 * src/print.c (print_actions): Adjust.
19036
19037 2001-11-12 Akim Demaille <akim@epita.fr>
19038
19039 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
19040 the result instead of using...
19041 (src_total, rrc_total, src_count, rrc_count): Remove.
19042 (any_conflicts): Remove.
19043 (print_conflicts): Split into...
19044 (conflicts_print, conflicts_output): New.
19045 * src/conflicts.h: Adjust.
19046 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
19047 * src/print.c (print_grammar): Issue `\n' between two rules.
19048 * tests/regression.at (Conflicts): New.
19049 Reported by Tom Lane.
19050
19051 2001-11-12 Akim Demaille <akim@epita.fr>
19052
19053 * tests/regression.at (Invalid input): Remove, duplicate with
19054 ``Invalid input: 1''.
19055
19056 2001-11-12 Akim Demaille <akim@epita.fr>
19057
19058 * tests/torture.at (AT_DATA_STACK_TORTURE)
19059 (Exploding the Stack Size with Alloca)
19060 (Exploding the Stack Size with Malloc): New.
19061
19062 2001-11-12 Akim Demaille <akim@epita.fr>
19063
19064 * src/bison.simple (YYSTACK_REALLOC): New.
19065 (yyparse) [!yyoverflow]: Use it and free the old stack.
19066 Reported by Per Allansson.
19067
19068 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
19069
19070 * src/bison.simple: Define type yystype instead of YYSTYPE, and
19071 define CPP macro, which substitute YYSTYPE by yystype.
19072 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
19073 with yyltype/YYLTYPE. This allows inclusion of the generated
19074 header within the parser if the compiler, such as GGC, accepts
19075 multiple equivalent #defines.
19076 From Akim.
19077
19078 2001-11-05 Akim Demaille <akim@epita.fr>
19079
19080 * src/reader.c (symbols_output): New, extracted from...
19081 (packsymbols): here.
19082 (reader): Adjust.
19083
19084 2001-11-05 Akim Demaille <akim@epita.fr>
19085
19086 * src/lex.c (parse_percent_token): s/quotearg/quote/.
19087
19088 2001-11-05 Akim Demaille <akim@epita.fr>
19089
19090 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
19091 pattern.
19092
19093 2001-11-05 Akim Demaille <akim@epita.fr>
19094
19095 * src/options.h (struct option_table_struct): set_flags is void*.
19096 * src/options.c (longopts): Support `--output' and `%output'.
19097 (usage): Adjust.
19098 * src/lex.h (tok_setopt): Remove, replaced with...
19099 (tok_intopt, tok_stropt): these new guys.
19100 * src/lex.c (getopt.h): Not needed.
19101 (token_buffer, unlexed_token_buffer): Not const.
19102 (percent_table): Promote `-' over `_' in directive names.
19103 Active `%name-prefix', `file-prefix', and `output'.
19104 (parse_percent_token): Accept possible arguments to directives.
19105 Promote `-' over `_' in directive names.
19106
19107 2001-11-04 Akim Demaille <akim@epita.fr>
19108
19109 * doc/bison.texinfo (Decl Summary): Split the list into
19110 `directives for grammars' and `directives for bison'.
19111 Sort'em.
19112 Add description of `%name-prefix', `file-prefix', and `output'.
19113 Promote `-' over `_' in directive names.
19114 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
19115 Simplify the description of `--name-prefix'.
19116 Promote `-' over `_' in directive names.
19117 Promote `--output' over `--output-file'.
19118 Fix the description of `--defines'.
19119 * tests/output.at: Exercise %file-prefix and %output.
19120
19121 2001-11-02 Akim Demaille <akim@epita.fr>
19122
19123 * doc/refcard.tex: Update.
19124
19125 2001-11-02 Akim Demaille <akim@epita.fr>
19126
19127 * src/symtab.h (SUNDEF): New.
19128 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
19129 stand for `uninitialized', instead of 0.
19130 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
19131 * src/lex.c (lex): Adjust.
19132
19133 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
19134 Number it 0.
19135 Let yylex return it instead of a plain 0.
19136 Reported by Dick Streefland.
19137
19138 2001-11-02 Akim Demaille <akim@epita.fr>
19139
19140 * tests/regression.at (Mixing %token styles): New test.
19141
19142 2001-11-02 Akim Demaille <akim@epita.fr>
19143
19144 * src/reader.c (parse_thong_decl): Formatting changes.
19145 (token_translations_init): New, extracted from...
19146 (packsymbols): Here.
19147 Adjust.
19148
19149 2001-11-01 Akim Demaille <akim@epita.fr>
19150
19151 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
19152 Check that `9foo.y' produces correct cpp guards.
19153 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
19154 guards.
19155 Reported by Wwp.
19156
19157 2001-11-01 Akim Demaille <akim@epita.fr>
19158
19159 * tests/regression.at (Invalid input: 2): New.
19160 * src/lex.c (unlexed_token_buffer): New.
19161 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
19162 too.
19163 Reported by Wwp.
19164
19165 2001-11-01 Akim Demaille <akim@epita.fr>
19166
19167 * tests/calc.at: Catch up with 1.30.
19168 * configure.in: Bump to 1.49a.
19169 Adjust to newer Autotest.
19170
19171 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
19172
19173 * src/conflicts.c: Move global variables rrc_total and src_total ...
19174 (print_conflicts): here.
19175 * src/output.c (output): Free global variable user_toknums.
19176 * src/lex.c (token_obstack): Become static.
19177
19178 2001-10-18 Akim Demaille <akim@epita.fr>
19179
19180 * tests/atlocal.in (GCC): Add.
19181 * tests/calc.at: s/m4_match/m4_bmatch/.
19182 s/m4_patsubst/m4_bpatsubst/.
19183 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
19184 * configure.in: AC_SUBST(GCC).
19185
19186 2001-10-14 Marc Autret <autret_m@epita.fr>
19187
19188 * src/options.c (create_long_option_table): Fix.
19189
19190 2001-10-10 Akim Demaille <akim@epita.fr>
19191
19192 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
19193
19194 2001-10-04 Akim Demaille <akim@epita.fr>
19195
19196 * src/reader.c (parse_union_decl): Push the caracters in
19197 union_obstack, not attrs_obstack.
19198
19199 2001-10-04 Akim Demaille <akim@epita.fr>
19200
19201 Merge in the branch 1.29.
19202
19203 * src/reader.c (packsymbols): Use a temporary obstack for
19204 `%%tokendef', since output_stack is already used elsewhere.
19205
19206 2001-10-02 Akim Demaille <akim@epita.fr>
19207
19208 Bump 1.29d.
19209
19210 2001-10-02 Akim Demaille <akim@epita.fr>
19211
19212 Version 1.29c.
19213
19214 2001-10-02 Akim Demaille <akim@epita.fr>
19215
19216 * tests/regression.at (Invalid CPP headers): New.
19217 From Alexander Belopolsky.
19218 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
19219
19220 2001-10-02 Akim Demaille <akim@epita.fr>
19221
19222 * tests/regression.at (Invalid input): New.
19223 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19224 Reported by Shura.
19225
19226 2001-10-02 Akim Demaille <akim@epita.fr>
19227
19228 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19229
19230 2001-10-02 Akim Demaille <akim@epita.fr>
19231
19232 * src/output.c (output_parser): Assert `skeleton'.
19233 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19234 systems.
19235 From Shura.
19236
19237 2001-10-01 Marc Autret <autret_m@epita.fr>
19238
19239 * src/lex.h: Echo modifications.
19240 * src/lex.c (unlex): Parameter is now token_t.
19241 From Hans Aberg.
19242
19243 2001-10-01 Marc Autret <autret_m@epita.fr>
19244
19245 * src/main.c: Include lex.h.
19246 From Hans Aberg.
19247
19248 2001-09-29 Akim Demaille <akim@epita.fr>
19249
19250 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19251
19252 2001-09-28 Akim Demaille <akim@epita.fr>
19253
19254 * tests/testsuite.at: Update to newer Autotest.
19255 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19256
19257 2001-09-27 Akim Demaille <akim@epita.fr>
19258
19259 Position independent wrapper.
19260
19261 * tests/bison: Remove.
19262 * tests/bison.in: New.
19263 * configure.in: Adjust.
19264
19265 2001-09-27 Paul Eggert <eggert@twinsun.com>
19266
19267 Port quotearg fixes from tar 1.13.24.
19268
19269 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19270 tm to be declared.
19271 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19272 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19273
19274 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19275 * m4/mbrtowc.m4: New file.
19276 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19277 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19278
19279 2001-09-27 Akim Demaille <akim@epita.fr>
19280
19281 Bump to 1.29c.
19282
19283 2001-09-27 Akim Demaille <akim@epita.fr>
19284
19285 Version 1.29b.
19286
19287 2001-09-25 Akim Demaille <akim@epita.fr>
19288
19289 * src/system.h: Include `xalloc.h'.
19290 Remove it from the C files.
19291 * src/files.c (output_files): Free the obstacks.
19292 * src/lex.c (init_lex): Rename as...
19293 (lex_init): this.
19294 (lex_free): New.
19295 * src/main.c (main): Use it.
19296
19297 2001-09-24 Marc Autret <autret_m@epita.fr>
19298
19299 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19300 to output informations in fout (FILE*).
19301 (open_graph, close_graph): Likewise.
19302 (output_graph, output_edge, output_node): Likewise.
19303 * src/vcg.h: Update function prototypes.
19304 * src/print_graph.c (print_graph): Open output graph file.
19305 (print_actions): Adjust.
19306 * src/files.h: Remove extern declaration.
19307 * src/files.c: Remove graph_obstack declaration.
19308 (open_files): Remove graph_obstack initialization.
19309 (output_files): Remove graph_obstack saving.
19310
19311 2001-09-24 Marc Autret <autret_m@epita.fr>
19312
19313 * src/files.c (compute_output_file_names): Fix.
19314
19315 2001-09-24 Marc Autret <autret_m@epita.fr>,
19316 Akim Demaille <akim@epita.fr>
19317
19318 * src/reader.c (reader): Remove call to free_symtab ().
19319 * src/main.c (main): Call it here.
19320 Include symtab.h.
19321 * src/conflicts.c (initialize_conflicts): Rename as...
19322 (solve_conflicts): this.
19323 * src/print.c (print_core, print_actions, print_state)
19324 (print_grammar): Dump to a file instead a `output_obstack'.
19325 (print_results): Dump `output_obstack', and then proceed with the
19326 FILE *.
19327 * src/files.c (compute_output_file_names, close_files): New.
19328 (output_files): Adjust.
19329 * src/main.c (main): Adjust.
19330
19331 2001-09-23 Marc Autret <autret_m@epita.fr>
19332
19333 * src/files.c (compute_header_macro): Computes header macro name
19334 from spec_defines_file when given.
19335
19336 2001-09-23 Marc Autret <autret_m@epita.fr>
19337
19338 * src/files.c (output_files): Add default extensions.
19339
19340 2001-09-22 Akim Demaille <akim@epita.fr>
19341
19342 * src/conflicts.c (finalize_conflicts): Rename as...
19343 (free_conflicts): this.
19344
19345 2001-09-22 Akim Demaille <akim@epita.fr>
19346
19347 * src/gram.c (gram_free): Rename back as...
19348 (dummy): this.
19349 (output_token_translations): Free `token_translations'.
19350 * src/symtab.c (free_symtab): Free the tag field.
19351
19352 2001-09-22 Akim Demaille <akim@epita.fr>
19353
19354 Remove `translations' as it is always set to true.
19355
19356 * src/gram.h: Adjust.
19357 * src/reader.c (packsymbols, parse_token_decl): Adjust
19358 * src/print.c (print_grammar): Adjust.
19359 * src/output.c (output_token_translations): Adjust.
19360 * src/lex.c (lex): Adjust.
19361 * src/gram.c: Be sure the set pointers to NULL.
19362 (dummy): Rename as...
19363 (gram_free): this.
19364
19365 2001-09-22 Akim Demaille <akim@epita.fr>
19366
19367 * configure.in: Invoke AM_LIB_DMALLOC.
19368 * src/system.h: Use dmalloc.
19369 * src/LR0.c: Be sure to have pointers initialized to NULL.
19370 (allocate_itemsets): Allocate kernel_items only if needed.
19371
19372 2001-09-22 Akim Demaille <akim@epita.fr>
19373
19374 * configure.in: Bump to 1.29b.
19375 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19376 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19377 need xmalloc.c in calc.y.
19378 From Pascal Bart.
19379
19380 2001-09-21 Akim Demaille <akim@epita.fr>
19381
19382 Version 1.29a.
19383 * Makefile.maint, config/config.guess, config/config.sub,
19384 * config/missing: Update from masters.
19385 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19386 upon package.m4.
19387 * configure.in (ALL_LINGUAS): Add `tr'.
19388
19389 2001-09-21 Akim Demaille <akim@epita.fr>
19390
19391 * tests/Makefile.am (package.m4): Move to...
19392 ($(srcdir)/$(TESTSUITE)): here.
19393
19394 2001-09-20 Akim Demaille <akim@epita.fr>
19395
19396 * src/complain.c: No longer try to be standalone: use system.h.
19397 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19398 * src/complain.h: Likewise.
19399 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19400 Remove the unused variable `n'.
19401 From Albert Chin-A-Young.
19402
19403 2001-09-18 Marc Autret <autret_m@epita.fr>
19404
19405 * doc/bison.1: Update.
19406 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19407 descriptions.
19408 (Option Cross Key): Update.
19409 Add --graph.
19410
19411 2001-09-18 Marc Autret <autret_m@epita.fr>
19412
19413 * tests/regression.at: New test (comment in %union).
19414
19415 2001-09-18 Marc Autret <autret_m@epita.fr>
19416
19417 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19418 do that.
19419 Reported by Keith Browne.
19420
19421 2001-09-18 Marc Autret <autret_m@epita.fr>
19422
19423 * tests/output.at: Add tests for --defines and --graph.
19424
19425 2001-09-18 Marc Autret <autret_m@epita.fr>
19426
19427 * tests/output.at: Removes tests of %{header,src}_extension features.
19428
19429 2001-09-18 Akim Demaille <akim@epita.fr>
19430
19431 * tests/Makefile.am (package.m4): New.
19432 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19433 (_AT_CHECK_CALC_ERROR): Likewise.
19434 Factor the `, ' part of verbose error messages.
19435
19436 2001-09-18 Marc Autret <autret_m@epita.fr>
19437
19438 * src/getargs.c (longopts): Declare --defines and --graph as options
19439 with optional arguments.
19440 * src/files.h: Add extern declarations.
19441 * src/files.c (spec_graph_file, spec_defines_file): New.
19442 (output_files): Update.
19443 Remove CPP-outed code.
19444
19445 2001-09-18 Marc Autret <autret_m@epita.fr>
19446
19447 Turn off %{source,header}_extension feature.
19448
19449 * src/files.c (compute_exts_from_gf): Update.
19450 (compute_exts_from_src): Update.
19451 (output_files): CPP-out useless code.
19452 * src/files.h: Remove {header,source}_extension extern declarations.
19453 * src/reader.c (parse_dquoted_param): CPP-out.
19454 (parse_header_extension_decl): Remove.
19455 (parse_source_extension_decl): Remove.
19456 (read_declarations): Remove cases tok_{hdrext,srcext}.
19457 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19458 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19459
19460 2001-09-10 Akim Demaille <akim@epita.fr>
19461
19462 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19463 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19464 (AT_CHECK_OUTPUT): this.
19465 Merely check ls' exit status, its output is useless.
19466
19467 2001-09-10 Akim Demaille <akim@epita.fr>
19468
19469 * tests/calc.at: Use m4_match.
19470 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19471
19472 2001-09-10 Marc Autret <autret_m@epita.fr>,
19473 Akim Demaille <akim@epita.fr>
19474
19475 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19476 enum color_e.
19477 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19478 to `normal'.
19479 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19480 * src/lex.h: Adjust prototype.
19481 (token_t): Add `tok_undef'.
19482 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19483 (parse_percent_token): Now returns token_t.
19484 Add default statement in switch.
19485 (lex): Separate `c' as an input variable, from the token_t result
19486 part.
19487 (unlexed): Is a token_t.
19488
19489 2001-09-10 Akim Demaille <akim@epita.fr>
19490
19491 * configure.in: Bump to 1.29a.
19492
19493 2001-09-07 Akim Demaille <akim@epita.fr>
19494
19495 Version 1.29.
19496
19497 2001-08-30 Akim Demaille <akim@epita.fr>
19498
19499 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19500 * m4/atconfig.m4: Remove.
19501 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19502 * tests/bison: New.
19503 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19504 m4_if, m4_patsubst, and m4_regexp.
19505 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19506 `input' file instead of echo.
19507
19508 2001-08-29 Akim Demaille <akim@epita.fr>
19509
19510 Bump to 1.28e.
19511
19512 2001-08-29 Akim Demaille <akim@epita.fr>
19513
19514 Version 1.28d.
19515
19516 2001-08-29 Paul Eggert <eggert@twinsun.com>
19517
19518 * src/bison.simple (yyparse): Don't take the address of an
19519 item before the start of an array, as that doesn't conform to
19520 the C Standard.
19521
19522 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19523
19524 * doc/bison.texinfo (Location Tracking Calc): New node.
19525
19526 2001-08-29 Paul Eggert <eggert@twinsun.com>
19527
19528 * src/output.c (output): Do not define const, as this now
19529 causes more problems than it cures.
19530
19531 2001-08-29 Akim Demaille <akim@epita.fr>
19532
19533 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19534 the nodes.
19535 Be sure to tag the `detailmenu'.
19536
19537 2001-08-29 Akim Demaille <akim@epita.fr>
19538
19539 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19540 download in a tmp dir.
19541
19542 2001-08-28 Marc Autret <autret_m@epita.fr>
19543
19544 * config/depcomp: New file.
19545
19546 2001-08-28 Marc Autret <autret_m@epita.fr>
19547
19548 * doc/bison.1 (mandoc): Adjust.
19549 From Juan Manuel Guerrero.
19550
19551 2001-08-28 Marc Autret <autret_m@epita.fr>
19552
19553 * src/print_graph.c (print_state): Fix.
19554
19555 2001-08-27 Marc Autret <autret_m@epita.fr>
19556
19557 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19558 char * members.
19559 Echo modifications to the functions prototypes.
19560 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19561
19562 2001-08-27 Marc Autret <autret_m@epita.fr>
19563
19564 * src/vcg.c: Include `xalloc.h'.
19565 (add_colorentry): New.
19566 (add_classname): New.
19567 (add_infoname): New.
19568 * src/vcg.h: Add new prototypes.
19569
19570 2001-08-27 Akim Demaille <akim@epita.fr>
19571
19572 * Makefile.maint: Sync. again with CVS Autoconf.
19573
19574 2001-08-27 Akim Demaille <akim@epita.fr>
19575
19576 * Makefile.maint: Formatting changes.
19577 (po-update, cvs-update, update): New targets.
19578 (AMTAR): Remove.
19579
19580 2001-08-27 Akim Demaille <akim@epita.fr>
19581
19582 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19583 * Makefile.maint: Sync. with CVS Autoconf.
19584
19585 2001-08-27 Marc Autret <autret_m@epita.fr>
19586
19587 * src/vcg.h (struct infoname_s): New.
19588 (struct colorentry_s): New.
19589 (graph_s): New fields {vertical,horizontal}_order in structure.
19590 Add `infoname' field.
19591 Add `colorentry' field;
19592 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19593 (G_HORIZONTAL_ORDER): New.
19594 (G_INFONAME): New.
19595 (G_COLORENTRY): New.
19596 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19597 Add output of `infoname'.
19598 Add output of `colorentry'.
19599
19600 2001-08-27 Marc Autret <autret_m@epita.fr>
19601
19602 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19603 This one shadowed a global parameter.
19604
19605 2001-08-24 Marc Autret <autret_m@epita.fr>
19606
19607 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19608 instead of `unsigned'.
19609 (print_state): Do not call obstack_object_size () in obstack_grow ()
19610 to avoid macro variables shadowing.
19611
19612 2001-08-23 Marc Autret <autret_m@epita.fr>
19613
19614 * src/lex.c (percent_table): Typo: s/naem/name/.
19615 Add graph option.
19616 Normalize new options declarations.
19617
19618 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19619
19620 * tests/suite.at: Exercise %header_extension and %source_extension.
19621
19622 2001-08-16 Marc Autret <autret_m@epita.fr>
19623
19624 * src/reader.c (parse_dquoted_param): New.
19625 (parse_header_extension_decl): Use it.
19626 (parse_source_extension_decl): Likewise.
19627
19628 2001-08-16 Marc Autret <autret_m@epita.fr>
19629
19630 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19631 (get_xxxx_str): Use assert () instead of complain ().
19632 Remove return invokations in default cases.
19633 (get_decision_str): Modify default behaviour. Remove second argument.
19634 Echo modifications on calls.
19635 (output_graph): Fix.
19636
19637 2001-08-16 Marc Autret <autret_m@epita.fr>
19638
19639 * src/getargs.c (usage): Update with ``-g, --graph''.
19640
19641 2001-08-16 Marc Autret <autret_m@epita.fr>
19642
19643 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19644 (Option Cross Key): Likewise.
19645 * doc/bison.1: Update.
19646
19647 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19648
19649 * src/output.c (output_master_parser): Don't finish action_obstack.
19650 (output_parser): Don't care about the muscle action, here.
19651 (prepare): Copy the action_obstack in the action muscle.
19652 (output): Free action_obstack.
19653
19654 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19655
19656 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19657 will contain `%union' declaration.
19658 (parse_union_decl): Delete #line directive output.
19659 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19660 informations about %union.
19661 (parse_union_decl): Copy the union_obstack in the muscle stype.
19662 * src/bison.simple: Add new #line directive.
19663 Add typdef %%stype YYSTYPE.
19664
19665 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19666
19667 * src/bison.simple: Add new `#line' directive.
19668
19669 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19670
19671 * src/bison.simple: New `#line' directive.
19672 * src/output.c (output_parser): Support new dynamic muscle input_line.
19673
19674 2001-09-22 Marc Autret <autret_m@epita.fr>
19675
19676 * src/output.c (output_master_parser): New.
19677 (output_parser): Be more re-entrant.
19678
19679 2001-09-21 Marc Autret <autret_m@epita.fr>
19680
19681 * src/reader.c (copy_definition, parse_union_decl): Update and use
19682 `linef' muscle.
19683 (copy_action): Likewise.
19684 Use obstack_1grow ().
19685 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19686
19687 2001-09-21 Marc Autret <autret_m@epita.fr>
19688
19689 * src/options.c (option_table): Adjust.
19690 * src/lex.c (parse_percent_token): Fix.
19691
19692 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19693
19694 * src/options.c (symtab.h): Include it, need by lex.h.
19695
19696 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19697
19698 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19699 is now an option_table_struct*.
19700 (option_strcmp): New function option_strcmp.
19701 (parse_percent_token): Call option_strcmp.
19702 * src/getargs.c (xalloc.h, options.h): Include it.
19703 (getargs): Call create_long_option_table.
19704 (getargs): Free longopts at the end of the function.
19705 (shortopts): Move in options.c.
19706 * src/options.c (create_long_option_table): New function. Convert
19707 information from option_table to option structure.
19708 * src/reader.c (options.h): Include it.
19709
19710 * src/Makefile.am: Adjust.
19711 * src/options.c (option_table): Create from longopts and percent_table.
19712 * src/getargs.c (longopts): Delete.
19713 * src/lex.c (struct percent_table_struct): Delete.
19714 (percent_table): Delete.
19715 (options.h): Include it.
19716 * src/options.c: Create.
19717 * src/options.h: Create.
19718 Declare enum opt_access_e.
19719 Define struct option_table_struct.
19720
19721 2001-09-20 Marc Autret <autret_m@epita.fr>
19722
19723 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19724 sections of Bison.
19725
19726 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19727
19728 * src/bison.simple: s/%%filename/%%skeleton.
19729 * src/muscle_tab.c (getargs.h): Include it.
19730 (muscle_init): Insert new muscle skeleton.
19731
19732 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19733
19734 * src/output.c (output_parser): Delete unused variable actions_dumped.
19735
19736 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19737
19738 * src/output.c (output): Delete call to reader_output_yylsp.
19739 * src/reader.c (reader): Likewise.
19740 * src/reader.h: Delete declaration of reader_output_yylsp.
19741
19742 2001-09-02 Marc Autret <autret_m@epita.fr>
19743
19744 * src/reader.c: Include muscle_tab.h.
19745 (parse_union_decl): Update.
19746 (parse_macro_decl): Rename parse_muscle_decl.
19747 Update to use renamed functions and variable.
19748 (read_declarations, copy_action, read_additionnal_code, : Updated
19749 with correct variables and functions names.
19750 (packsymbols, reader): Likewise.
19751
19752 * src/reader.h (muscle_obstack): Extern declaration update.
19753
19754 * src/output.c: Include muscle_tab.h
19755 In all functions using macro_insert, change by using muscle_insert ().
19756 (macro_obstack): Rename muscle_obstack.
19757 Echo modifications in the whole file.
19758 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19759 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19760 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19761
19762 * src/muscle_tab.h: Update double inclusion macros.
19763 (macro_entry_s): Rename muscle_entry_s.
19764 Update prototypes.
19765
19766 * src/muscle_tab.c: Include muscle_tab.h.
19767 Rename macro_tabble to muscle_table.
19768 (mhash1, mhash2, mcmp): Use muscle_entry.
19769 (macro_init): Rename muscle_init. Update.
19770 (macro_insert): Rename muscle_insert. Update.
19771 (macro_find): Rename muscle_find. Update.
19772
19773 * src/main.c: Include muscle_tab.h.
19774 (main): Call muscle_init ().
19775 * src/Makefile.am (bison_SOURCES): Echo modifications.
19776
19777 2001-09-02 Marc Autret <autret_m@epita.fr>
19778
19779 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19780
19781 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19782
19783 2001-09-02 Marc Autret <autret_m@epita.fr>
19784
19785 * src/macrotab.c, src/macrotab.h: Remove.
19786
19787 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19788
19789 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19790 filename.
19791
19792 2001-09-01 Marc Autret <autret_m@epita.fr>
19793
19794 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19795 to an explicit value to activate the feature. We do it here.
19796
19797 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19798
19799 * src/output.c (prepare): Delete the `filename' muscule insertion.
19800 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19801 (parse_union_decl): Likewise.
19802 * src/macrotab.c (macro_init): Initialize filename by infile.
19803
19804 2001-08-31 Marc Autret <autret_m@epita.fr>
19805
19806 * src/bison.simple (YYLSP_NEEDED): New definition.
19807 * src/output.c (prepare): Add macro insertion of `locations_flag'
19808
19809 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19810
19811 * src/output.c (prepare): Delete insertion of previous muscles,
19812 and insert the `prefix' muscles.
19813 * src/macrotab.c (macro_init): Likewise.
19814 (macro_init): Initialization prefix directive by `yy'.
19815 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19816 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19817 yylval, yydebug, yyerror, yynerrs and yyparse.
19818 New directive `#define' to substitute yydebug, ... with option
19819 name_prefix.
19820
19821 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19822
19823 * src/main.c (main): Standardize.
19824 * src/output.c (output_table_data, output_parser): Likewise.
19825 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19826
19827 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19828
19829 * src/reader.c (read_additionnal_code): Rename %%user_code to
19830 %%epilogue.
19831 * src/output.c (output): Rename %%declarations to %%prologue.
19832 * src/bison.simple: Echo modifications.
19833
19834 2001-08-31 Marc Autret <autret_m@epita.fr>
19835
19836 * src/reader.c (readgram): CleanUp.
19837 (output_token_defines): Likewise.
19838 (packsymbols): Likewise.
19839 (reader): Likewise.
19840 * src/output.c (output): CPP-out useless code.
19841
19842 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19843
19844 * src/reader.c (reader): Delete obsolete call to function
19845 output_trailers and output_headers.
19846 * src/output.h: Remove obsolete functions prototypes of output_headers
19847 and output_trailers.
19848
19849 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19850
19851 * src/main.c: Include macrotab.h.
19852 * src/macrotab.h (macro_entry_s): Constify fields.
19853 Adjust functions prototypes.
19854 * src/macrotab.c (macro_insert): Constify key and value.
19855 (macro_find): Constify key.
19856 (macro_insert): Include 'xalloc.h'
19857 (macro_insert): Use XMALLOC.
19858 (macro_find): Constify return value.
19859 * src/output.c (output_table_data): Rename table to table_data.
19860 (output_parser): Constify macro_key, macro_value.
19861
19862 2001-08-30 Marc Autret <autret_m@epita.fr>
19863
19864 * src/reader.c (parse_skel_decl): New.
19865 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19866 * src/lex.h (token_t): New token `tok_skel'.
19867 * src/lex.c (percent_table): Add skeleton option entry.
19868 Standardize.
19869
19870 2001-08-29 Marc Autret <autret_m@epita.fr>
19871
19872 * src/bison.simple: Add %%user_code directive at the end.
19873 * src/reader.c (read_additionnal_code): New.
19874 (reader): Use it.
19875 * src/output.c (output_program): Remove.
19876 (output): Update.
19877
19878 2001-08-28 Marc Autret <autret_m@epita.fr>
19879
19880 * src/output.c (output_actions): Clean up.
19881 (output_gram): CPP-out useless code.
19882 * src/reader.c (reader): Clean up, CPP-out useless code.
19883
19884 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19885
19886 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19887 directive.
19888 * src/bison.simple: Add `%%definitions'.
19889
19890 2001-08-28 Marc Autret <autret_m@epita.fr>
19891
19892 * config/depcomp: New file.
19893
19894 2001-08-27 Paul Eggert <eggert@twinsun.com>
19895
19896 * src/bison.simple (yyparse): Don't take the address of an
19897 item before the start of an array, as that doesn't conform to
19898 the C Standard.
19899
19900 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19901
19902 * src/output.c (output): Remove the initialization of the macro
19903 obstack. It was done too late here.
19904
19905 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19906 completely wrong.
19907 (reader): Initialize the macro obstack here, since we need it to grow
19908 '%define' directives.
19909
19910 * src/reader.h: Declare the macro obstack as extern.
19911
19912 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19913
19914 * src/output.c (output_parser): Fix. Store single '%' characters in
19915 the output obstack instead of throwing them away.
19916
19917 2001-08-27 Akim Demaille <akim@epita.fr>
19918
19919 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19920
19921 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19922
19923 * lib/Makefile.am: Adjust.
19924
19925 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19926
19927 * src/bison.simple: Update and add '%%' directives.
19928
19929 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19930
19931 * src/reader.c (reader): Remove calls to 'output_headers' and
19932 'output_trailers'. Remove some C output.
19933 (readgram): Disable a piece of code that was writing a default
19934 definition for 'YYSTYPE'.
19935 (reader_output_yylsp): Remove.
19936 (packsymbols): Output token defintions to a macro.
19937 (copy_definition): Disable C output.
19938
19939 * src/reader.c (parse_macro_decl): New function used to parse macro
19940 declarations.
19941 (copy_string2): Put the body of copy_string into this new function.
19942 Add a parameter to let the caller choose whether he wants to copy the
19943 string delimiters or not.
19944 (copy_string): Be a simple call to copy_string2 with the last argument
19945 bound to true.
19946 (read_declarations): Add case for macro definition.
19947 (copy_identifier): New.
19948 (parse_macro_decl): Read macro identifiers using copy_identifier
19949 rather than lex.
19950
19951 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19952
19953 * src/output.c (prepare): Add prefixed names.
19954 (output_parser): Output semantic actions.
19955 (output_parser): Fix bug on '%%line' directives.
19956
19957 * src/output.c (output_headers): Remove. The C code printed by this
19958 function should now be in the skeletons.
19959 (output_trailers): Remove.
19960 (output): Disable call to 'reader_output_yylsp'.
19961 (output_rule_data): Do not output tables to the table obstack.
19962
19963 * src/output.c: Remove some C dedicated output.
19964 Improve the use of macro and output obstacks.
19965 (output_defines): Remove.
19966
19967 * src/output.c (output_token_translations): Associate 'translate'
19968 table with a macro. No output to the table obstack.
19969 (output_gram): Same for 'rhs' and 'prhs'.
19970 (output_stos): Same for 'stos'.
19971 (output_rule_data): Same for 'r1' and 'r2'.
19972 (token_actions): Same for 'defact'.
19973 (goto_actions): Same for 'defgoto'.
19974 (output_base): Same for 'pact' and 'pgoto'.
19975 (output_table): Same for 'table'.
19976 (output_check): Same for 'check'.
19977
19978 * src/output.c (output_table_data): New function.
19979 (output_short_table): Remove.
19980 (output_short_or_char_table): Remove.
19981
19982 * src/output.c (output_parser): Replace most of the skeleton copy code
19983 with something new. Skeletons are now processed character by character
19984 rather than line by line, and Bison looks for '%%' macros. This is the
19985 first step in making Bison's output process (a lot) more flexible.
19986 (output_parser): Use the macro table.
19987
19988 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19989
19990 * src/main.c (main): Initialize the macro table.
19991
19992 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19993
19994 * src/lex.c (percent_table): Add tok_define.
19995 * src/lex.h: Add tok_define.
19996
19997 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19998
19999 * src/macrotab.c: New file.
20000 * src/macrotab.h: New file.
20001 * src/Makefile.am: Update.
20002
20003 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
20004
20005 * lib/hash.c: New file.
20006 * lib/hash.h: New file.
20007 * lib/Makefile.am: Update.
20008
20009 2001-08-15 Akim Demaille <akim@epita.fr>
20010
20011 Version 1.28c.
20012
20013 2001-08-15 Marc Autret <autret_m@epita.fr>
20014
20015 * src/reader.c (readgram): Indent output macro YYSTYPE.
20016 (packsymbols): Likewise.
20017 (output_token_defines): Likewise.
20018 * src/files.c: Standardize.
20019 (compute_header_macro): New.
20020 (defines_obstack_save): New. Use compute_header_macro.
20021 (output_files): Update. Use defines_obstack_save.
20022
20023 2001-08-15 Akim Demaille <akim@epita.fr>
20024
20025 * doc/bison.texinfo (Table of Symbols): Document
20026 YYSTACK_USE_ALLOCA.
20027
20028 2001-08-15 Akim Demaille <akim@epita.fr>
20029
20030 * missing: Update from CVS Automake.
20031 * config/config.guess, config/config.sub, config/texinfo.tex:
20032 Update from gnu.org.
20033
20034 2001-08-15 Akim Demaille <akim@epita.fr>
20035
20036 * Makefile.maint: Sync with CVS Autoconf.
20037
20038 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
20039
20040 * doc/bison.texinfo: Include GNU Free Documentation License from
20041 `fdl.texi'.
20042 * doc/fdl.texi: Add to package.
20043
20044 2001-08-14 Marc Autret <autret_m@epita.fr>
20045
20046 Turn on %{source,header}_extension features.
20047
20048 * src/lex.c (percent_table): Un-CPP out header_extension and
20049 source_extension.
20050 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
20051 (compute_exts_from_src): Remove conditions. It restores priorities
20052 between options.
20053
20054 2001-08-14 Marc Autret <autret_m@epita.fr>
20055
20056 * src/files.c (compute_base_names): Add extensions computing when
20057 `--file-prefix' used.
20058 Standardize function calls.
20059
20060 2001-08-13 Marc Autret <autret_m@epita.fr>
20061
20062 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
20063 defining it (defined but null disables alloca).
20064
20065 2001-08-13 Marc Autret <autret_m@epita.fr>
20066
20067 * src/bison.simple (_yy_memcpy): CPP reformat.
20068
20069 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
20070
20071 * tests/atconfig.in (CPPFLAGS): Fix.
20072
20073 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
20074
20075 * doc/bison.texinfo: Include GNU General Public License from
20076 `gpl.texi'.
20077 * doc/gpl.texi: Add to package.
20078
20079 2001-08-10 Marc Autret <autret_m@epita.fr>
20080
20081 * src/print_graph.h: Fix.
20082 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
20083
20084 2001-08-10 Akim Demaille <akim@epita.fr>
20085
20086 * src/system.h: Provide default declarations for stpcpy, strndup,
20087 and strnlen.
20088
20089 2001-08-10 Robert Anisko <anisko_r@epita.fr>
20090
20091 * doc/bison.texinfo (Locations): Update @$ stuff.
20092
20093 2001-08-09 Robert Anisko <anisko_r@epita.fr>
20094
20095 * src/bison.simple (YYLLOC_DEFAULT): Update.
20096 (yyparse): Adjust.
20097
20098 2001-08-08 Marc Autret <autret_m@epita.fr>
20099
20100 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
20101 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
20102 Reported by Fabrice Bauzac.
20103
20104 2001-08-08 Marc Autret <autret_m@epita.fr>
20105
20106 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
20107 * src/vcg.c (output_node): Fix.
20108 * src/vcg.h: Cleanup.
20109 * src/print_graph.c: Add comments.
20110 (node_output_size): New global variable. Simplify the formatting of
20111 the VCG graph output.
20112 (print_actions): Unused code is now used. It notifies the final state
20113 and no action states in the VCG graph. It also give the reduce actions.
20114 The `shift and goto' edges are red and the `go to state' edges are
20115 blue.
20116 Get the current node name and node_obstack by argument.
20117 (node_obstack): New variable.
20118 (print_state): Manage node_obstack.
20119 (print_core): Use node_obstack given by argument.
20120 A node is not only computed here but in print_actions also.
20121 (print_graph): CPP out useless code instead of commenting it.
20122
20123 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
20124
20125 * tests/atconfig.in (CPPFLAGS): Fix.
20126
20127 2001-08-07 Akim Demaille <akim@epita.fr>
20128
20129 * src/print_graph.c (quote): New.
20130 (print_core): Use it.
20131
20132 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
20133
20134 * src/vcg.c (complain.h): Include it.
20135 Unepitaize `return' invocations.
20136 [NDEBUG] (main): Remove.
20137 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
20138 * src/files.c (open_files): Initialize graph_obstack.
20139 * src/print_graph.c (print_actions): CPP out useless code.
20140 (print_core): Don't output the last `\n' in labels.
20141 Use `quote'.
20142 * src/files.c (output_files): Output the VCG file.
20143 * src/main.c (main): Invoke print_graph ();
20144
20145 2001-08-06 Marc Autret <autret_m@epita.fr>
20146
20147 Automaton VCG graph output.
20148 Using option ``-g'' or long option ``--graph'', you can generate
20149 a gram_filename.vcg file containing a VCG description of the LALR (1)
20150 automaton of your grammar.
20151
20152 * src/main.c: Call to print_graph() function.
20153 * src/getargs.h: Update.
20154 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
20155 (graph_flag): New flag.
20156 (longopts): Update.
20157 (getargs): Add case `g'.
20158 * src/files.c (graph_obstack): New obstack struct.
20159 (open_files): Initialize new obstack.
20160 (output_files): Saves graph_obstack if required.
20161 * src/files.h (graph_obstack): New extern declaration.
20162 * src/Makefile.am: Add new source files.
20163
20164 2001-08-06 Marc Autret <autret_m@epita.fr>
20165
20166 * src/print_graph.c, src/print_graph.h (graph): New.
20167 * src/vcg.h: New file.
20168 * src/vcg.c: New file, VCG graph handling.
20169
20170 2001-08-06 Marc Autret <autret_m@epita.fr>
20171
20172 Add of %source_extension and %header_extension which specify
20173 the source or/and the header output file extension.
20174
20175 * src/files.c (compute_base_names): Remove initialisation of
20176 src_extension and header_extension.
20177 (compute_exts_from_gf): Update.
20178 (compute_exts_from_src): Update.
20179 (output_files): Update.
20180 * src/reader.c (parse_header_extension_decl): New.
20181 (parse_source_extension_decl): New.
20182 (read_declarations): New case statements for the new tokens.
20183 * src/lex.c (percent_table): Add entries for %source_extension
20184 and %header_extension.
20185 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
20186
20187 2001-08-06 Marc Autret <autret_m@epita.fr>
20188
20189 * configure.in: Bump to 1.28c.
20190 * doc/bison.texinfo: Texinfo thingies.
20191
20192 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
20193
20194 * tests/atconfig.in (CPPFLAGS): Add.
20195 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
20196
20197 2001-08-03 Akim Demaille <akim@epita.fr>
20198
20199 Version 1.28b.
20200
20201 2001-08-03 Akim Demaille <akim@epita.fr>
20202
20203 * tests/Makefile.am (check-local): Ship testsuite.
20204 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
20205 Include `string.h'.
20206
20207 2001-08-03 Akim Demaille <akim@epita.fr>
20208
20209 * configure.in: Try using -Wformat when compiling.
20210
20211 2001-08-03 Akim Demaille <akim@epita.fr>
20212
20213 * configure.in: Bump to 1.28b.
20214
20215 2001-08-03 Akim Demaille <akim@epita.fr>
20216
20217 * src/complain.c: Adjust strerror_r portability issues.
20218
20219 2001-08-03 Akim Demaille <akim@epita.fr>
20220
20221 Version 1.28a.
20222
20223 2001-08-03 Akim Demaille <akim@epita.fr>
20224
20225 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20226 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20227 * src/getargs.c: Include complain.h.
20228 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20229 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20230
20231 2001-08-03 Akim Demaille <akim@epita.fr>
20232
20233 * src/reader.c (readgram): Display hidden chars in error messages.
20234
20235 2001-08-03 Akim Demaille <akim@epita.fr>
20236
20237 Update to gettext 0.10.39.
20238
20239 2001-08-03 Akim Demaille <akim@epita.fr>
20240
20241 * lib/strspn.c: New.
20242
20243 2001-08-01 Marc Autret <autret_m@epita.fr>
20244
20245 * doc/bison.texinfo: Update.
20246 * doc/bison.1 (mandoc): Update.
20247 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20248 * src/files.c: Support output files extensions computing.
20249 (src_extension): New static variable.
20250 (header_extension): New static variable.
20251 (tr): New function.
20252 (get_extension_index): New function, gets the index of an extension
20253 filename in a string.
20254 (compute_exts_from_gf): New function, computes extensions from the
20255 grammar file extension.
20256 (compute_exts_from_src): New functions, computes extensions from the
20257 C source file extension, file given by ``-o'' option.
20258 (compute_base_names): Update.
20259 (output_files): Update.
20260
20261 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20262
20263 * doc/bison.texi: Document @$.
20264 (Locations): New section.
20265
20266 2001-07-18 Akim Demaille <akim@epita.fr>
20267
20268 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20269 * config/prev-version.txt, config/move-if-change: New.
20270 * Makefile.am: Adjust.
20271
20272 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20273
20274 * src/bison.simple (yyparse): Suppress warning `comparaison
20275 between signed and unsigned'.
20276
20277 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20278
20279 * src/getargs.h (raw_flag): Remove.
20280 * src/getargs.c: Die on `-r'/`--raw'.
20281 * src/lex.c (parse_percent_token): Die on `%raw'.
20282 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20283 * tests/calc.at: Suppress test with option `--raw'.
20284
20285 2001-07-14 Akim Demaille <akim@epita.fr>
20286
20287 * config/: New.
20288 * configure.in: Require Autoconf 2.50.
20289 Update to gettext 0.10.38.
20290
20291 2001-03-16 Akim Demaille <akim@epita.fr>
20292
20293 * doc/bison.texinfo: ANSIfy the examples.
20294
20295 2001-03-16 Akim Demaille <akim@epita.fr>
20296
20297 * getargs.c (skeleton): New variable.
20298 (longopts): --skeleton is a new option.
20299 (shortopts, getargs): -S is a new option.
20300 * getargs.h: Declare skeleton.
20301 * output.c (output_parser): Use it.
20302
20303 2001-03-16 Akim Demaille <akim@epita.fr>
20304
20305 * m4/strerror_r.m4: New.
20306 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20307 * lib/error.h, lib/error.c: Update.
20308
20309 2001-03-16 Akim Demaille <akim@epita.fr>
20310
20311 * src/getargs.c (longopts): Clean up.
20312
20313 2001-02-21 Akim Demaille <akim@epita.fr>
20314
20315 * src/reader.c (gensym): `gensym_count' is your own.
20316 Use a static buf to create the symbol name, as token_buffer is no
20317 longer a buffer.
20318
20319 2001-02-08 Akim Demaille <akim@epita.fr>
20320
20321 * src/conflicts.c (conflict_report): Be sure not to append to res
20322 between two calls, which could happen if both first sprintf were
20323 skipped, but not the first cp += strlen.
20324
20325 2001-02-08 Akim Demaille <akim@epita.fr>
20326
20327 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20328 New, from fileutils 4.0.37.
20329 * configure.in: Require Autoconf 2.49c. I took some time before
20330 making this decision. This is the only way out for portability
20331 issues in Bison, it would mean way too much duplicate effort to
20332 import in Bison features implemented in 2.49c since 2.13.
20333 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20334
20335 2001-02-02 Akim Demaille <akim@epita.fr>
20336
20337 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20338 * lib/xalloc.h, lib/xmalloc.c: Update.
20339
20340 2001-01-19 Akim Demaille <akim@epita.fr>
20341
20342 Get rid of the ad hoc handling of token_buffer in the scanner: use
20343 the obstacks.
20344
20345 * src/lex.c (token_obstack): New.
20346 (init_lex): Initialize it. No longer call...
20347 (grow_token_buffer): this. Remove it.
20348 Adjust all the places which used it to use the obstack.
20349
20350 2001-01-19 Akim Demaille <akim@epita.fr>
20351
20352 * src/lex.h: Rename all the tokens:
20353 s/\bENDFILE\b/tok_eof/g;
20354 s/\bIDENTIFIER\b/tok_identifier/g;
20355 etc.
20356 Let them be enums, not #define, to ease debugging.
20357 Adjust all the code.
20358
20359 2001-01-18 Akim Demaille <akim@epita.fr>
20360
20361 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20362 * src/lex.c (maxtoken, grow_token_buffer): Static.
20363
20364 2001-01-18 Akim Demaille <akim@epita.fr>
20365
20366 Since we now use obstacks, more % directives can be enabled.
20367
20368 * src/lex.c (percent_table): Also accept `%yacc',
20369 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20370 `%debug'.
20371 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20372 instead of returning a token.
20373 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20374 * src/reader.c (read_declarations): Adjust.
20375 * src/files.c (open_files): Don't call `compute_base_names', don't
20376 compute `attrsfile' since they depend upon data which might be
20377 *in* the input file now.
20378 (output_files): Do it here.
20379 * src/output.c (output_headers): Document the fact that this patch
20380 introduces a guaranteed SEGV for semantic parsers.
20381 * doc/bison.texinfo: Document them.
20382 * tests/suite.at: Exercise these %options.
20383
20384 2000-12-20 Akim Demaille <akim@epita.fr>
20385
20386 Also handle the output file (--verbose) with obstacks.
20387
20388 * files.c (foutput): Remove.
20389 (output_obstack): New.
20390 Adjust all dependencies.
20391 * src/conflicts.c: Return a string.
20392 * src/system.h (obstack_grow_string): Rename as...
20393 (obstack_sgrow): this. Be ready to work with non literals.
20394 (obstack_fgrow4): New.
20395
20396 2000-12-20 Akim Demaille <akim@epita.fr>
20397
20398 * src/files.c (open_files): Fix the computation of short_base_name
20399 in the case of `-o foo.tab.c'.
20400
20401 2000-12-20 Akim Demaille <akim@epita.fr>
20402
20403 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20404 (copy_dollar): Now that everything uses obstacks, get rid of the
20405 FILE * parameters.
20406
20407 2000-12-20 Akim Demaille <akim@epita.fr>
20408
20409 * src/files.c (open_files): Actually the `.output' file is based
20410 on the short_base_name, not base_name.
20411 * tests/suite.at (Checking output file names): Adjust.
20412
20413 2000-12-20 Akim Demaille <akim@epita.fr>
20414
20415 * src/bison.s1: Remove, we now use directly...
20416 * src/bison.simple: this.
20417 * src/Makefile.am: Use pkgdata instead of data.
20418
20419 2000-12-20 Akim Demaille <akim@epita.fr>
20420
20421 * src/files.c (guard_obstack): New.
20422 (open_files): Initialize it.
20423 (output_files): Dump it...
20424 * src/files.h: Export it.
20425 * src/reader.c (copy_guard): Use it.
20426
20427 2000-12-19 Akim Demaille <akim@epita.fr>
20428
20429 * src/files.c (outfile, defsfile, actfile): Removed as global
20430 vars.
20431 (open_files): Don't compute them.
20432 (output_files): Adjust.
20433 (base_name, short_base_name): Be global.
20434 Adjust dependencies.
20435
20436 2000-12-19 Akim Demaille <akim@epita.fr>
20437
20438 * src/files.c (strsuffix): New.
20439 (stringappend): Be just like strcat but allocate.
20440 (base_names): Eve out from open_files.
20441 Try to simplify the rather hairy computation of base_name and
20442 short_base_name.
20443 (open_files): Use it.
20444 * tests/suite.at (Checking output file names): New test.
20445
20446 2000-12-19 Akim Demaille <akim@epita.fr>
20447
20448 * src/system.h (obstack_grow_literal_string): Rename as...
20449 (obstack_grow_string): this.
20450 * src/output.c (output_parser): Recognize `%% actions' instead of
20451 `$'.
20452 * src/bison.s1: s/$/%% actions/.
20453 * src/bison.hairy: Likewise.
20454
20455 2000-12-19 Akim Demaille <akim@epita.fr>
20456
20457 * src/output.c (output_parser): Compute the `#line' lines when
20458 there are.
20459 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20460 Suggested by Hans Aberg.
20461
20462 2000-12-19 Akim Demaille <akim@epita.fr>
20463
20464 Let the handling of the skeleton files be local to the procedures
20465 that use it.
20466
20467 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20468 longer static.
20469 (fparser, open_extra_files): Remove.
20470 (open_files, output_files): Don't take care of fparser.
20471 * src/files.h: Adjust.
20472 * src/output.c (output_parser): Open and close the file to the
20473 skeleton.
20474 * src/reader.c (read_declarations): When %semantic_parser, open
20475 fguard.
20476
20477 2000-12-19 Akim Demaille <akim@epita.fr>
20478
20479 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20480 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20481
20482 2000-12-19 Akim Demaille <akim@epita.fr>
20483
20484 * src/files.c (open_files): Yipee! We no longer need all the code
20485 looking for `/tmp' since we have no tmp file.
20486
20487 2000-12-19 Akim Demaille <akim@epita.fr>
20488
20489 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20490 New macros.
20491 * src/files.c (open_files): Less dependency on MSDOS etc.
20492
20493 2000-12-14 Akim Demaille <akim@epita.fr>
20494
20495 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20496 Provide a default definition.
20497 Use it when executing the default @ action.
20498 * src/reader.c (reader_output_yylsp): No longer include
20499 `timestamp' and `text' in the default YYLTYPE.
20500
20501 2000-12-12 Akim Demaille <akim@epita.fr>
20502
20503 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20504 (copy_guard): Quote the file names.
20505 Reported by Laurent Mascherpa.
20506
20507 2000-12-12 Akim Demaille <akim@epita.fr>
20508
20509 * src/output.c (output_headers, output_program, output): Be sure
20510 to escape special characters when outputting filenames.
20511 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20512 (output_headers): Don't depend on them, Use ACTSTR.
20513
20514 2000-11-17 Akim Demaille <akim@epita.fr>
20515
20516 * lib/obstack.h: Formatting changes.
20517 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20518 prevents type checking.
20519 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20520 cast the value to (void *): assigning a `foo *' to a `void *'
20521 variable is valid.
20522 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20523 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20524 append characters.
20525
20526 2000-11-17 Akim Demaille <akim@epita.fr>
20527
20528 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20529 as...
20530 (suite.m4, regression.m4, calc.m4): these.
20531 * tests/atgeneral.m4: Update from CVS Autoconf.
20532
20533 2000-11-17 Akim Demaille <akim@epita.fr>
20534
20535 * tests/regression.m4 (%union and --defines): New test,
20536 demonstrating a current bug in the obstack implementation.
20537
20538 2000-11-17 Akim Demaille <akim@epita.fr>
20539
20540 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20541 macros.
20542 Use them to declare the variables which are global or local to
20543 `yyparse'.
20544
20545 2000-11-17 Akim Demaille <akim@epita.fr>
20546
20547 * acconfig.h: Remove, no longer used.
20548
20549 2000-11-07 Akim Demaille <akim@epita.fr>
20550
20551 * src: s/Copyright (C)/Copyright/g.
20552
20553 2000-11-07 Akim Demaille <akim@epita.fr>
20554
20555 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20556 defining.
20557 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20558
20559 2000-11-07 Akim Demaille <akim@epita.fr>
20560
20561 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20562 Merge in a single CPP if/else.
20563
20564 2000-11-07 Akim Demaille <akim@epita.fr>
20565
20566 * src/output.c (output): Remove useless variables.
20567 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20568 argument `data' for consistency with the prototypes.
20569 Qualify it `const'.
20570 (obstack_copy, obstack_copy0): Rename the second argument as
20571 `address' for consistency. Qualify it `const'.
20572 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20573 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20574 `const' their input argument (`data' or `address').
20575 Adjust the corresponding macros to include `const' in casts.
20576
20577 2000-11-03 Akim Demaille <akim@epita.fr>
20578
20579 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20580 s/PFILE1/BISON_HAIRY/.
20581 Adjust dependencies.
20582
20583 2000-11-03 Akim Demaille <akim@epita.fr>
20584
20585 For some reason, this was not applied.
20586
20587 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20588 `unlink': it's no longer used.
20589
20590 2000-11-03 Akim Demaille <akim@epita.fr>
20591
20592 * src/files.c (skeleton_find): New function, eved out of...
20593 (open_files, open_extra_files): here.
20594
20595 2000-11-03 Akim Demaille <akim@epita.fr>
20596
20597 Don't use `atexit'.
20598
20599 * src/files.c (obstack_save): New function.
20600 (done): Rename as...
20601 (output_files): this.
20602 Use `obstack_save'.
20603 * src/main.c (main): Don't use `atexit' to register `done', since
20604 it no longer has to remove tmp files, just call `output_files'
20605 when there are no errors.
20606
20607 2000-11-02 Akim Demaille <akim@epita.fr>
20608
20609 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20610 `unlink': it's no longer used.
20611 * src/files.h: Formatting changes.
20612
20613 2000-11-02 Akim Demaille <akim@epita.fr>
20614
20615 Remove the last uses of mktemp and unlink/delete.
20616
20617 * src/files.c (fdefines, ftable): Removed.
20618 (defines_ostack, table_obstack): New.
20619 Adjust dependencies of the former into uses of the latter.
20620 * src/output.c (output_short_or_char_table, output_short_table):
20621 Convert to using obstacks.
20622 * src/reader.c (copy_comment2): Accept one FILE * and two
20623 obstacks.
20624 (output_token_defines, reader_output_yylsp): Use obstacks.
20625 * src/system.h (obstack_fgrow3): New.
20626 * po/POTFILES.in: Adjust.
20627
20628 2000-11-01 Akim Demaille <akim@epita.fr>
20629
20630 Change each use of `fattrs' into a use of `attrs_obstack'.
20631
20632 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20633 * src/files.c (fattrs): Remove.
20634 (attrs_obstack): New.
20635 Adjust all dependencies.
20636 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20637
20638 2000-11-01 Akim Demaille <akim@epita.fr>
20639
20640 Introduce obstacks.
20641 Change each use of `faction' into a use of `action_obstack'.
20642
20643 * lib/obstack.h, lib/obstack.c: New files.
20644 * src/files.c (faction): Remove.
20645 (action_obstack): New.
20646 Adjust all dependencies.
20647
20648 2000-10-20 Akim Demaille <akim@epita.fr>
20649
20650 * lib/quote.h (PARAMS): New macro. Use it.
20651
20652 2000-10-16 Akim Demaille <akim@epita.fr>
20653
20654 * src/output.c (output_short_or_char_table): New function.
20655 (output_short_table, output_token_translations): Use it.
20656 (goto_actions): Use output_short_table.
20657
20658 2000-10-16 Akim Demaille <akim@epita.fr>
20659
20660 * src/symtab.c (bucket_new): New function.
20661 (getsym): Use it.
20662
20663 * src/output.c (output_short_table): New argument to display the
20664 comment associated with the table.
20665 Adjust dependencies.
20666 (output_gram): Use it.
20667 (output_rule_data): Nicer output layout for YYTNAME.
20668
20669 2000-10-16 Akim Demaille <akim@epita.fr>
20670
20671 * src/lex.c (read_typename): New function.
20672 (lex): Use it.
20673 * src/reader.c (copy_dollar): Likewise.
20674
20675 2000-10-16 Akim Demaille <akim@epita.fr>
20676
20677 * src/reader.c (copy_comment2): Expect the input stream to be on
20678 the `/' which is suspected to open a comment, instead of being
20679 called after `//' or `/*' was read.
20680 (copy_comment, copy_definition, parse_union_decl, copy_action)
20681 (copy_guard): Adjust.
20682
20683 2000-10-16 Akim Demaille <akim@epita.fr>
20684
20685 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20686 `read_signed_integer'.
20687
20688 2000-10-16 Akim Demaille <akim@epita.fr>
20689
20690 * src/reader.c (copy_dollar): New function.
20691 (copy_guard, copy_action): Use it.
20692
20693 2000-10-16 Akim Demaille <akim@epita.fr>
20694
20695 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20696 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20697 New files, from Fileutils 4.0.27.
20698 * src/main.c (printable_version): Remove.
20699 * src/lex.c, src/reader.c: Use `quote'.
20700
20701 2000-10-04 Akim Demaille <akim@epita.fr>
20702
20703 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20704
20705 2000-10-04 Akim Demaille <akim@epita.fr>
20706
20707 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20708
20709 2000-10-04 Akim Demaille <akim@epita.fr>
20710
20711 When a literal string is used to define two different tokens,
20712 `bison -v' segfaults.
20713 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20714
20715 * tests/regression.m4: New file.
20716 Include the core of the sample provided by Piotr Gackiewicz.
20717 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20718 properly.
20719
20720 2000-10-04 Akim Demaille <akim@epita.fr>
20721
20722 * src/reader.c (parse_expect_decl): Keep `count' within the size
20723 of `buffer'.
20724 From Neil Booth.
20725
20726 2000-10-02 Paul Eggert <eggert@twinsun.com>
20727
20728 * bison.s1 (yyparse): Assign the default value
20729 unconditionally, to avoid a GCC warning and make the parser a
20730 tad smaller.
20731
20732 2000-10-02 Akim Demaille <akim@epita.fr>
20733
20734 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20735 options.
20736
20737 2000-10-02 Akim Demaille <akim@epita.fr>
20738
20739 * src/derives.c, src/print.c, src/reduce.c: To ease the
20740 translation, move some `\n' out of the translated strings.
20741
20742 2000-10-02 Akim Demaille <akim@epita.fr>
20743
20744 The location tracking mechanism is precious for parse error
20745 messages. Nevertheless, it is enabled only when `@n' is used in
20746 the grammar, which is a different issue (you can use it in error
20747 message, but not in the grammar per se). Therefore, there should
20748 be another means to enable it.
20749
20750 * src/getargs.c (getargs): Support `--locations'.
20751 (usage): Report it.
20752 * src/getargs.h (locationsflag): Export it.
20753 * src/lex.c (percent_table): Support `%locations'.
20754 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20755 with `locationsflag'.
20756 * doc/bison.texinfo: Document `--locations' and `%locations'.
20757 Sort the options.
20758 * tests/calc.m4: Test it.
20759
20760 For regularity of the names, replace each
20761 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20762 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20763 In addition replace each `flag' with `_flag'.
20764
20765 2000-10-02 Akim Demaille <akim@epita.fr>
20766
20767 Also test parse error messages, including with YYERROR_VERBOSE.
20768
20769 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20770 associative).
20771 Use it to check the computations.
20772 Use it to check `nonassoc' is honored.
20773 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20774 `--yyerror-verbose'.
20775 (_AT_CHECK_CALC): Adjust to this option.
20776 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20777
20778 2000-10-02 Akim Demaille <akim@epita.fr>
20779
20780 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20781 the latter demonstrates a flaw in the handling of non debugging
20782 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20783 was used in order to simplify:
20784
20785 #if YYDEBUG
20786 if (yydebug)
20787 {
20788 ...
20789 }
20790 #endif
20791
20792 into
20793
20794 if (yydebug)
20795 {
20796 ...
20797 }
20798
20799 unfortunately this leads to a CPP conflict when
20800 `--name-prefix=foo' is used since it produces `#define yydebug
20801 foodebug'.
20802
20803 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20804 (YYDPRINTF): New macro.
20805 Spread its use.
20806 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20807 the bison options.
20808 Also test `--verbose', `--defines' and `--name-prefix'.
20809
20810 2000-10-02 Akim Demaille <akim@epita.fr>
20811
20812 Improve the readability of the produced parsers.
20813
20814 * src/bison.s1: Formatting changes.
20815 Improve the comment related to the `$' mark.
20816 (yydefault): Don't fall through to `yyresume': `goto' there.
20817 * src/output.c (output_parser): When the `$' is met, skip the end
20818 of its line.
20819 New variable, `number_of_dollar_signs', to check there's exactly
20820 one `$' in the parser skeleton.
20821
20822 2000-10-02 Akim Demaille <akim@epita.fr>
20823
20824 * lib/xstrdup.c: New file, from the fileutils.
20825 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20826 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20827 instead of strlen + xmalloc + strcpy.
20828 * src/symtab.c (copys): Remove, use xstrdup instead.
20829
20830 2000-10-02 Akim Demaille <akim@epita.fr>
20831
20832 * src/gram.h (associativity): New enum type which replaces the
20833 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20834 `right_assoc', `left_assoc' and `non_assoc'.
20835 Adjust all dependencies.
20836 * src/reader.c: Formatting changes.
20837 (LTYPESTR): Don't define it, use it as a literal in
20838 `reader_output_yylsp'.
20839 * src/symtab.h (symbol_class): New enum type which replaces the
20840 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20841 `sunknown', `stoken and `snterm'.
20842
20843 2000-10-02 Akim Demaille <akim@epita.fr>
20844
20845 * src/getargs.c (fixed_outfiles): Rename as...
20846 (yaccflag): for consistency and accuracy.
20847 Adjust dependencies.
20848
20849 2000-10-02 Akim Demaille <akim@epita.fr>
20850
20851 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20852 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20853 difficult and introduced a lot of core dump. It turns out that
20854 Bison used an implementation of `xmalloc' based on `calloc', and
20855 at various places it does depend upon the initialization to 0. I
20856 have not tried to isolate the pertinent places, and all the former
20857 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20858 someone should address this issue.
20859
20860 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20861 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20862 files.
20863 Adjust dependencies.
20864 * src/warshall.h: New file.
20865 Propagate.
20866
20867 2000-10-02 Akim Demaille <akim@epita.fr>
20868
20869 Various anti-`extern in *.c' changes.
20870
20871 * src/system.h: Include `assert.h'.
20872
20873 2000-10-02 Akim Demaille <akim@epita.fr>
20874
20875 * src/state.h (nstates, final_state, first_state, first_shift)
20876 (first_reduction): Move their exportation from here...
20877 * src/LR0.h: to here.
20878 Adjust dependencies.
20879 * src/getargs.c (statisticsflag): New variable.
20880 Add support for `--statistics'.
20881 Adjust dependencies.
20882
20883 Remove a lot of now useless `extern' statements in most files.
20884
20885 2000-10-02 Akim Demaille <akim@epita.fr>
20886
20887 * src/LR0.h: New file.
20888 Propagate its use.
20889
20890 2000-10-02 Akim Demaille <akim@epita.fr>
20891
20892 * src/print.h: New file.
20893 Propagate its use.
20894 * src/print.c: Formatting and ordering changes.
20895 (verbose, terse): Replace with...
20896 (print_results): this new function.
20897 Adjust dependencies.
20898
20899 2000-10-02 Akim Demaille <akim@epita.fr>
20900
20901 * src/conflicts.c (conflict_report): New function.
20902 (conflict_log, verbose_conflict_log): Replace with...
20903 (print_conflicts): this function.
20904 Adjust dependencies.
20905 * src/conflicts.h: New file.
20906 Propagate its inclusion.
20907
20908 2000-10-02 Akim Demaille <akim@epita.fr>
20909
20910 * src/nullable.h: New file.
20911 Propagate its inclusion.
20912 * src/nullable.c: Formatting changes.
20913
20914 2000-10-02 Akim Demaille <akim@epita.fr>
20915
20916 * src/reduce.h: New file.
20917 Propagate its inclusion.
20918 * src/reduce.c: Topological sort and other formatting changes.
20919 (bool, TRUE, FALSE): Move their definition to...
20920 * src/system.h: here.
20921
20922 2000-10-02 Akim Demaille <akim@epita.fr>
20923
20924 * src/files.c: Formatting changes.
20925 (tryopen, tryclose, openfiles): Rename as...
20926 (xfopen, xfclose, open_files): this.
20927 (stringappend): static.
20928 * src/files.h: Complete the list of exported symbols.
20929 Propagate its use.
20930
20931 2000-10-02 Akim Demaille <akim@epita.fr>
20932
20933 * src/reader.h: New file.
20934 Propagate its use instead of tedious list of `extern' and
20935 prototypes.
20936 * src/reader.c: Formatting changes, topological sort,
20937 s/register//.
20938
20939 2000-10-02 Akim Demaille <akim@epita.fr>
20940
20941 * src/lex.h: Prototype `lex.c' exported functions.
20942 * src/reader.c: Adjust.
20943 * src/lex.c: Formatting changes.
20944 (safegetc): Rename as...
20945 (xgetc): this.
20946
20947 2000-10-02 Akim Demaille <akim@epita.fr>
20948
20949 * src/lalr.h: New file.
20950 Propagate its inclusion instead of prototypes and `extern'.
20951 * src/lalr.c: Formatting changes, topological sorting etc.
20952
20953 2000-10-02 Akim Demaille <akim@epita.fr>
20954
20955 * src/output.c (token_actions): Introduce a temporary array,
20956 YYDEFACT, that makes it possible for this function to use
20957 output_short_table.
20958
20959 2000-10-02 Akim Demaille <akim@epita.fr>
20960
20961 `user_toknums' is output as a `short[]' in `output.c', while it is
20962 defined as a `int[]' in `reader.c'. For consistency with the
20963 other output tables, `user_toknums' is now defined as a table of
20964 shorts.
20965
20966 * src/reader.c (user_toknums): Be a short table instead of an int
20967 table.
20968 Adjust dependencies.
20969
20970 Factor the short table outputs.
20971
20972 * src/output.c (output_short_table): New function.
20973 * src/output.c (output_gram, output_stos, output_rule_data)
20974 (output_base, output_table, output_check): Use it.
20975
20976 2000-10-02 Akim Demaille <akim@epita.fr>
20977
20978 * src/output.c (output): Topological sort of the functions, in
20979 order to get rid of the `static' prototypes.
20980 No longer use `register'.
20981 * src/output.h: New file.
20982 Propagate its inclusion in files explicitly prototyping functions
20983 from output.c.
20984
20985 2000-09-21 Akim Demaille <akim@epita.fr>
20986
20987 * src/atgeneral.m4: Update from Autoconf.
20988
20989 2000-09-21 Akim Demaille <akim@epita.fr>
20990
20991 * src/closure.h: New file.
20992 * src/closure.c: Formatting changes, topological sort over the
20993 functions, use of closure.h.
20994 (initialize_closure, finalize_closure): Rename as...
20995 (new_closure, free_closure): these. Adjust dependencies.
20996 * src/LR0.c: Formatting changes, topological sort, use of
20997 cloture.h.
20998 (initialize_states): Rename as...
20999 (new_states): this.
21000 * src/Makefile.am (noinst_HEADERS): Adjust.
21001
21002 2000-09-20 Akim Demaille <akim@epita.fr>
21003
21004 * src/acconfig.h: Don't protect config.h against multiple
21005 inclusion.
21006 Don't define PARAMS.
21007 * src/system.h: Define PARAMS.
21008 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
21009 purpose of config.h. system.h must not try to fix wrong
21010 definitions in config.h.
21011
21012 2000-09-20 Akim Demaille <akim@epita.fr>
21013
21014 * src/derives.h: New file.
21015 * src/main.c, src/derives.h: Use it.
21016 Formatting changes.
21017 * src/Makefile.am (noinst_HEADERS): Adjust.
21018
21019 2000-09-20 Akim Demaille <akim@epita.fr>
21020
21021 * tests/atgeneral.m4: Update from Autoconf.
21022 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
21023 (AT_CHECK_CALC): New macros.
21024 Use these macros to test bison with options `', `--raw',
21025 `--debug', `--yacc', `--yacc --debug'.
21026
21027 2000-09-19 Akim Demaille <akim@epita.fr>
21028
21029 * src/output.c: Formatting changes.
21030 * src/machine.h: Remove, leaving its contents in...
21031 * src/system.h: here.
21032 Include stdio.h.
21033 Adjust all dependencies on stdio.h and machine.h.
21034 * src/getargs.h: New file.
21035 Let all `extern' declarations about getargs.c be replaced with
21036 inclusion of `getargs.h'.
21037 * src/Makefile.am (noinst_HEADERS): Adjust.
21038
21039 * tests/calc.m4 (yyin): Be initialized in main, not on the global
21040 scope.
21041 (yyerror): Returns void, not int.
21042 * doc/bison.texinfo: Formatting changes.
21043
21044 2000-09-19 Akim Demaille <akim@epita.fr>
21045
21046 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
21047 portable.
21048
21049 2000-09-18 Akim Demaille <akim@epita.fr>
21050
21051 * configure.in: Append WARNING_CFLAGS to CFLAGS.
21052 * src/Makefile.am (INCLUDES): Don't.
21053 Be ready to fetch headers in lib/.
21054
21055 2000-09-18 Akim Demaille <akim@epita.fr>
21056
21057 * doc/bison.texinfo: Update the copyright.
21058 ANSIfy and GNUify the examples.
21059 Remove the old menu.
21060
21061 2000-09-18 Akim Demaille <akim@epita.fr>
21062
21063 First set of tests: use the `calc' example from the documentation.
21064
21065 * src/bison.s1 (yyparse): Condition the code using `yytname' which
21066 is defined only when YYDEBUG is.
21067 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
21068 * src/files.c (tryopen, tryclose): Formatting changes.
21069 Move to the top and be static.
21070 * src/reader.c (read_signed_integer): Likewise.
21071 * tests/calc.m4: New file.
21072 * Makefile.am, suite.m4: Adjust.
21073 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
21074
21075 2000-09-18 Akim Demaille <akim@epita.fr>
21076
21077 Add support for an Autotest test suite for Bison.
21078
21079 * m4/m4.m4, m4/atconfig.m4: New files.
21080 * m4/Makefile.am (EXTRA_DIST): Adjust.
21081 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
21082 files.
21083 * src/getargs.c: Display a more standard --version message.
21084 * src/reader.c (reader): Formatting changes.
21085 No longer depend upon VERSION_STRING.
21086 * configure.in: No longer use `dnl'.
21087 Set up the test suite and the new directory `tests/.
21088 (VERSION_STRING): Remove.
21089
21090 2000-04-14 Akim Demaille <akim@epita.fr>
21091
21092 * src/reader.c (copy_comment2): New function, same as former
21093 `copy_comment', but outputs into two FILE *.
21094 (copy_comment): Use it.
21095 (parse_union_decl): Use it.
21096 (get_type, parse_start_decl): Use the same `invalid' message.
21097 (parse_start_decl, parse_union_decl): Use the same `multiple'
21098 message.
21099 (parse_union_decl, copy_guard, copy_action): Use the same
21100 `unmatched' message.
21101 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
21102
21103 2000-03-31 Akim Demaille <akim@epita.fr>
21104
21105 * src/files.c (tryopen, tryclose): Move to the top.
21106 Be static.
21107
21108 2000-03-31 Akim Demaille <akim@epita.fr>
21109
21110 * src/main.c (main): Don't call `done', exit does it.
21111
21112 2000-03-31 Akim Demaille <akim@epita.fr>
21113
21114 * allocate.c: s/return (foo)/return foo/.
21115 * lalr.c: Likewise.
21116 * LR0.c: Likewise.
21117 * output.c: Likewise.
21118 * reader.c: Likewise.
21119 * symtab.c: Likewise.
21120 * vmsgetargs.c: Likewise.
21121
21122 2000-03-31 Akim Demaille <akim@epita.fr>
21123
21124 Clean up the error reporting functions.
21125
21126 * src/report.c: New file.
21127 * src/report.h: Likewise.
21128 * src/Makefile.am: Adjust.
21129 * m4/error.m4: New file.
21130 * m4/Makefile.am: Adjust.
21131 * configure.in (jm_PREREQ_ERROR): Call it.
21132 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
21133 Remove.
21134 (fatal, fatals): Remove. All callers use complain.c::fatal.
21135 (warn, warni, warns, warnss, warnss): Remove. All callers use
21136 complain.c::complain.
21137 (toomany): Remove, use fatal instead.
21138 * src/files.c (done): No argument, use complain_message_count.
21139 * src/main.c (main): Register `done' to `atexit'.
21140
21141 * src/getargs.c (usage): More `fputs', less `fprintf'.
21142
21143 2000-03-28 Akim Demaille <akim@epita.fr>
21144
21145 * lib/: New directory.
21146 * Makefile.am (SUBDIRS): Adjust.
21147 * configure.in: Adjust.
21148 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
21149 useless.
21150 * src/alloca.c: Moved to lib/.
21151 * src/getopt.c: Likewise.
21152 * src/getopt1.c: Likewise.
21153 * src/getopt.h: Likewise.
21154 * src/ansi2knr.c: Likewise.
21155 * src/ansi2knr.1: Likewise.
21156 * src/Makefile.am: Adjust.
21157 * lib/Makefile.am: New file.
21158
21159 2000-03-28 Akim Demaille <akim@epita.fr>
21160
21161 * src/getargs.c (usage): Refresh the help message.
21162
21163 2000-03-17 Akim Demaille <akim@epita.fr>
21164
21165 * src/getopt1.c: Updated from textutils 2.0e
21166 * src/getopt.c: Likewise.
21167 * src/getopt.h: Likewise.
21168
21169 2000-03-17 Akim Demaille <akim@epita.fr>
21170
21171 * src/Makefile.am (bison.simple): Fix the awk program: quote only
21172 the file name, not the whole `#line LINE FILE'.
21173
21174 2000-03-17 Akim Demaille <akim@epita.fr>
21175
21176 On syntax errors, report the token on which we choked.
21177
21178 * src/bison.s1 (yyparse): In the label yyerrlab, when
21179 YYERROR_VERBOSE, add yychar in msg.
21180
21181 2000-03-17 Akim Demaille <akim@epita.fr>
21182
21183 * src/reader.c (copy_at): New function.
21184 (copy_guard): Use it.
21185 (copy_action): Use it.
21186
21187 2000-03-17 Akim Demaille <akim@epita.fr>
21188
21189 Be kind to translators, save some useless translations.
21190
21191 * src/main.c (banner): New function.
21192 (fatal_banner): Use it.
21193 (warn_banner): Use it.
21194
21195 2000-03-17 Akim Demaille <akim@epita.fr>
21196
21197 * src/reader.c (copy_definition): Use copy_string and
21198 copy_comment. Removed now unused `match', `ended',
21199 `cplus_comment'.
21200 (copy_comment, copy_string): Moved, to be visible from
21201 copy_definition.
21202
21203 2000-03-17 Akim Demaille <akim@epita.fr>
21204
21205 * src/reader.c (copy_string): Declare `static inline'. No
21206 problems with inline, since it is checked by configure.
21207 (copy_comment): Likewise.
21208
21209 2000-03-17 Akim Demaille <akim@epita.fr>
21210
21211 * src/reader.c (packsymbols): Formatting changes.
21212
21213 2000-03-17 Akim Demaille <akim@epita.fr>
21214
21215 * src/reader.c (copy_comment): New function, factored out from:
21216 (copy_action): Use it. Removed now unused `match', `ended',
21217 `cplus_comment'.
21218 (copy_guard): Likewise.
21219
21220 2000-03-17 Akim Demaille <akim@epita.fr>
21221
21222 * src/reader.c (copy_string): New function, factored out from:
21223 (copy_action): Use it.
21224 (copy_guard): Likewise.
21225
21226 2000-03-17 Akim Demaille <akim@epita.fr>
21227
21228 Change the handling of @s so that they behave exactly like $s.
21229 There is now a pseudo variable @$ (readble and writable), location
21230 of the lhs of the rule (by default ranging from the location of
21231 the first symbol of the rhs, to the location of the last symbol,
21232 or, if the rhs is empty, YYLLOC).
21233
21234 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21235 yyval.
21236 (yyparse): When providing a default semantic action, provide a
21237 default location action.
21238 (after the $): No longer change `*YYLSP', just stack YYLOC the
21239 same way you stack YYVAL.
21240 * src/reader.c (read_declarations): Use warns.
21241 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21242 (copy_action, case '@'): Likewise.
21243 Use a standard error message, to save useless work from
21244 translators.
21245
21246 2000-03-17 Akim Demaille <akim@epita.fr>
21247
21248 * src/bison.s1: Formatting and cosmetics changes.
21249 * src/reader.c: Likewise.
21250 Update the Copyright notice.
21251
21252 2000-03-17 Akim Demaille <akim@epita.fr>
21253
21254 * src/bison.s1 (#line): All set to `#line' only, since the
21255 Makefile now handles them.
21256
21257 2000-03-16 Akim Demaille <akim@epita.fr>
21258
21259 * src/output.c (output_rule_data): Output the documentation of
21260 some of the tables.
21261 (Copyright notice): Update.
21262 Formatting changes.
21263
21264 2000-03-16 Akim Demaille <akim@epita.fr>
21265
21266 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21267 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21268 One `#if YYDEBUG' remains, since it uses variables which are
21269 defined only if `YYDEBUG != 0'.
21270
21271 2000-03-16 Akim Demaille <akim@epita.fr>
21272
21273 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21274 and related variables so that the similarities are highlighted.
21275
21276 2000-03-16 Akim Demaille <akim@epita.fr>
21277
21278 * src/bison.s1: Properly indent CPP directives.
21279
21280 2000-03-16 Akim Demaille <akim@epita.fr>
21281
21282 * src/bison.s1: Properly indent the `alloca' CPP section.
21283
21284 2000-03-16 Akim Demaille <akim@epita.fr>
21285
21286 Do not hard code values of directories in `configure.in'.
21287 Update the `configure' tool chain.
21288
21289 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21290 src/makefile.am.
21291 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21292 (AC_OUTPUT): Add m4/Makefile.
21293 Bump to bison 1.28a, 1.29 has never been released.
21294 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21295 handled via src/Makefile.am.
21296 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21297 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21298 autoheader.
21299 * Makefile.am (SUBDIRS): Add m4.
21300 (ACLOCAL_AM_FLAGS): New variable.
21301 (AUTOMAKE_OPTIONS): Add check-news.
21302 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21303 the proper line number and file name.
21304 (DEFS): Propagate the location of bison library files and of the
21305 locale files.
21306 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21307 builddir.
21308 * acinclude.m4: Remove, replaced by the directory m4.
21309 * m4/Makefile.am (EXTRA_DIST): New variable.
21310 * m4/gettext.m4: New file, from the fileutils.
21311 * m4/lcmessage.m4: Likewise
21312 * m4/progtest.m4: Likewise.
21313 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21314
21315 2000-03-10 Akim Demaille <akim@epita.fr>
21316
21317 * src/closure.c:
21318 Formatting changes of various comments.
21319 Respect the GNU coding standards at various places.
21320 Don't use `_()' when no translation is needed.
21321
21322 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21323
21324 * src/files.c:
21325 OS/2 honors TMPDIR environment variable.
21326
21327 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21328
21329 * doc/bison.texinfo: Tweaked spelling and grammar.
21330 Updated ISBN.
21331 Removed reference to price of printed copy.
21332 Mention BISON_SIMPLE and BISON_HAIRY.
21333
21334 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21335
21336 * configure.in, NEWS:
21337 Bison 1.29 released.
21338
21339 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21340
21341 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21342 Added reference card.
21343
21344 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21345
21346 * po/ru.po: Added Russian translation.
21347
21348 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21349
21350 * configure.in: Added Russian translation.
21351
21352 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21353
21354 * configure.in, NEWS, README:
21355 Released version 1.28.
21356
21357 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21358
21359 * src/system.h:
21360 Squashed redefinition warning on some systems.
21361
21362 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21363 Have configure build version string instead of relying on ANSI string
21364 concatentation.
21365
21366 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21367
21368 * po/POTFILES.in: Got rid of version.c.
21369
21370 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21371
21372 * acconfig.h, configure.in:
21373 Have configure build version string instead of relying on ANSI string
21374 concatentation.
21375
21376 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21377
21378 * doc/bison.1:
21379 Dropped mention of `+' for long-named options.
21380
21381 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21382
21383 * src/files.c: Added <unistd.h> for unlink().
21384
21385 * src/Makefile.am, src/system.h:
21386 I18n fixes.
21387
21388 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21389
21390 * README: Added a FAQ list.
21391
21392 * configure.in, acconfig.h:
21393 I18n fixes.
21394
21395 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21396
21397 * doc/FAQ, doc/Makefile.am:
21398 Added a FAQ list.
21399
21400 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21401
21402 * src/alloc.h, src/symtab.h, src/version.c:
21403 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21404
21405 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21406
21407 * src/.cvsignore, src/Makefile.am:
21408 Reorganized: sources in `src', documentation in `doc'.
21409
21410 * src/lex.c (literalchar):
21411 fixed the code for escaping double quotes (thanks
21412 Jonathan Czisny.)
21413
21414 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21415
21416 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21417 Adjusted paths to reflect directory reorganization.
21418
21419 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21420
21421 * doc/.cvsignore, doc/Makefile.am:
21422 Reorganized: sources in `src', documentation in `doc'.
21423
21424 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21425
21426 * configure.in:
21427 Updated AC_INIT file to reflect directory reorganization.
21428
21429 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21430 Reorganized: sources in `src', documentation in `doc'.
21431
21432 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21433
21434 * src/allocate.c:
21435 Don't declare calloc() and realloc() if not necessary.
21436
21437 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21438
21439 * configure.in, acconfig.h, acinclude.m4:
21440 Don't declare calloc() and realloc() if not necessary.
21441
21442 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21443
21444 * po/.cvsignore: Added i18n support.
21445
21446 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21447
21448 * acconfig.h, configure.in, Makefile.am:
21449 Added i18n support.
21450
21451 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21452
21453 * src/bison.s1: Fixed #line numbers.
21454
21455 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21456
21457 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21458 Added PO files from Translation Project.
21459
21460 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21461
21462 * Makefile.am:
21463 Added support for non-ANSI compilers (ansi2knr).
21464
21465 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21466
21467 * configure.in: Bumped version number to 1.27.
21468
21469 * Makefile.am:
21470 Added `bison.simple' to list of files removed by `make distclean'.
21471
21472 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21473
21474 * src/files.c, src/files.h:
21475 Defined locations of parser files in config.h instead of Makefile.
21476
21477 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21478
21479 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21480 Defined locations of parser files in config.h instead of Makefile.
21481
21482 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21483
21484 * Makefile.am:
21485 Removed inappropriate use of $< macro.
21486
21487 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21488
21489 * po/Makefile.in.in, po/POTFILES.in:
21490 Add `po' directory skeleton.
21491
21492 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21493
21494 * README: Document help-bison list.
21495
21496 * configure.in: Add check for mkstemp().
21497
21498 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21499
21500 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21501 Hush a few compiler warnings.
21502
21503 * src/files.c:
21504 Add tryclose(), which verifies that fclose was successful.
21505 Hush a couple of compiler warnings.
21506
21507 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21508
21509 * Makefile.am, OChangeLog:
21510 ChangeLog is now automatically generated. Include the old version as
21511 OChangeLog.
21512
21513 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21514
21515 * 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:
21516 Update FSF address.
21517
21518 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21519
21520 * doc/bison.texinfo: Fix formatting glitch.
21521
21522 * doc/bison.texinfo: Update FSF address.
21523
21524 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21525
21526 * acconfig.h: Update FSF address.
21527
21528 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21529
21530 * src/system.h:
21531 Don't define PACKAGE here, since config.h defines it.
21532
21533 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21534
21535 * src/reader.c: Update copyright date.
21536
21537 * src/main.c:
21538 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21539 favor of output directly to stderr (avoids buffer overruns).
21540
21541 * src/reader.c: Some checks for premature EOF.
21542
21543 * 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:
21544 Use prototypes if the compiler understands them.
21545
21546 * src/files.c: Honor TMPDIR on Unix hosts.
21547 Use prototypes if the compiler understands them.
21548
21549 * src/reader.c:
21550 Fix a couple of buffer overrun bugs.
21551 Use prototypes if the compiler understands them.
21552
21553 * src/system.h: Include unistd.h and ctype.h.
21554 Use #ifdef instead of #if for NLS symbols.
21555
21556 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21557
21558 * doc/bison.texinfo:
21559 Delete comment "consider using @set for edition number, etc..." since
21560 we now are doing so.
21561
21562 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21563
21564 * configure.in:
21565 Use prototypes if the compiler understands them.
21566
21567 * NEWS: Document 1.26 highlights.
21568
21569 * Makefile.am: Require Automake 1.3 or later.
21570
21571 * acconfig.h:
21572 Use prototypes if the compiler understands them.
21573
21574 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21575
21576 * src/version.c:
21577 Use VERSION symbol from automake for version number.
21578
21579 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21580
21581 * acconfig.h, configure.in, version.cin:
21582 Use VERSION symbol from automake for version number.
21583
21584 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21585
21586 * Makefile.am:
21587 Distribute original version of simple parser (bison.s1), not built
21588 version (bison.simple).
21589
21590 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21591
21592 * doc/bison.texinfo: Add info dir entry.
21593
21594 * doc/bison.texinfo:
21595 Let automake put version number into documentation.
21596
21597 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21598
21599 * src/bison.cld, src/build.com, src/vmshlp.mar:
21600 Add non-RCS files from /gd/gnu/bison.
21601
21602 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21603
21604 * doc/bison.1:
21605 Document the BISON_HAIRY and BISON_SIMPLE variables.
21606
21607 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21608
21609 * src/version.c: Build version.c automatically.
21610
21611 * src/reader.c:
21612 Fix token numbering (used to start at 258, not 257).
21613
21614 * src/system.h: Include config.h.
21615
21616 * src/getargs.c: Update bug report address.
21617
21618 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21619 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21620
21621 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21622
21623 * Makefile.am:
21624 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21625
21626 * configure.in, version.cin:
21627 Build version.c automatically.
21628
21629 * AUTHORS: Add AUTHORS file.
21630
21631 * README: Update bug report address.
21632
21633 * bison.simple:
21634 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21635
21636 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21637 Add automake stuff.
21638
21639 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21640
21641 * doc/bison.texinfo: Clean up some formatting.
21642
21643 1998-05-05 Richard Stallman <rms@gnu.org>
21644
21645 * doc/bison.texinfo:
21646 Explain better why to make a pure parser.
21647
21648 1998-01-05 Richard Stallman <rms@gnu.org>
21649
21650 * src/files.c (openfiles):
21651 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21652 find a temporary directory, if possible. Do not unlink files while
21653 they are open.
21654
21655 1997-08-25 Richard Stallman <rms@gnu.org>
21656
21657 * src/reader.c (stack_offset;):
21658 Change some warni to warns.
21659
21660 * src/lex.c (literalchar): Use warns, not warni.
21661
21662 1997-06-28 Richard Stallman <rms@gnu.org>
21663
21664 * src/bison.s1: Add a Bison version comment.
21665
21666 * src/main.c (fatal, warn, berror):
21667 Use program_name.
21668
21669 1997-06-28 Richard Stallman <rms@gnu.org>
21670
21671 * Makefile.in (bison_version): New variable.
21672 (dist): Use that variable.
21673 (bison.s1): Substitute the Bison version into bison.simple.
21674
21675 * bison.simple: Add a Bison version comment.
21676
21677 1997-06-18 Richard Stallman <rms@gnu.org>
21678
21679 * src/main.c (fatal, warn, berror):
21680 Make error messages standard.
21681 (toomany): Improve error message text.
21682
21683 * 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:
21684 new.h renamed to alloc.h.
21685
21686 1997-06-18 Richard Stallman <rms@gnu.org>
21687
21688 * Makefile.in: new.h renamed to alloc.h.
21689
21690 1997-05-24 Richard Stallman <rms@gnu.org>
21691
21692 * src/lex.c (literalchar):
21693 Fix the code for escaping \, " and '.
21694
21695 (lex): Avoid trouble when there are many chars
21696 to discard in a char literal with just several chars in it.
21697
21698 1997-05-17 Richard Stallman <rms@gnu.org>
21699
21700 * src/bison.s1:
21701 Use malloc, if using alloca is troublesome.
21702 (YYSTACK_USE_ALLOCA): New flag macro.
21703 Define it for some systems and compilers.
21704 (YYSTACK_ALLOC): New macro.
21705 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21706 If it was malloc'd, free it.
21707
21708 1997-05-17 Richard Stallman <rms@gnu.org>
21709
21710 * bison.simple:
21711 Use malloc, if using alloca is troublesome.
21712 (YYSTACK_USE_ALLOCA): New flag macro.
21713 Define it for some systems and compilers.
21714 (YYSTACK_ALLOC): New macro.
21715 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21716 If it was malloc'd, free it.
21717
21718 1997-04-23 Richard Stallman <rms@gnu.org>
21719
21720 * src/bison.s1:
21721 (alloca) [__hpux]: Always define as __builtin_alloca.
21722
21723 1997-04-23 Richard Stallman <rms@gnu.org>
21724
21725 * bison.simple:
21726 (alloca) [__hpux]: Always define as __builtin_alloca.
21727
21728 1997-04-22 Richard Stallman <rms@gnu.org>
21729
21730 * src/bison.s1:
21731 [__hpux]: Include alloca.h (right for HPUX 10)
21732 instead of declaring alloca (right for HPUX 9).
21733
21734 * src/bison.s1 (__yy_memcpy):
21735 Declare arg `count' as unsigned int.
21736 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21737
21738 1997-04-22 Richard Stallman <rms@gnu.org>
21739
21740 * bison.simple:
21741 [__hpux]: Include alloca.h (right for HPUX 10)
21742 instead of declaring alloca (right for HPUX 9).
21743
21744 * bison.simple (__yy_memcpy):
21745 Declare arg `count' as unsigned int.
21746 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21747
21748 1997-01-03 Richard Stallman <rms@gnu.org>
21749
21750 * src/allocate.c: [__STDC__ or _MSC_VER]:
21751 Declare calloc and realloc to return void *.
21752
21753 1997-01-02 Richard Stallman <rms@gnu.org>
21754
21755 * src/system.h:
21756 [_MSC_VER]: Include stdlib.h and process.h.
21757 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21758
21759 * src/main.c (main): Return FAILURE as a value.
21760 (printable_version): Declare arg as int, not char.
21761
21762 1997-01-02 Richard Stallman <rms@gnu.org>
21763
21764 * Makefile.in (dist):
21765 Explicitly check for symlinks, and copy them.
21766
21767 1996-12-19 Richard Stallman <rms@gnu.org>
21768
21769 * src/files.c:
21770 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21771
21772 1996-12-18 Paul Eggert <eggert@gnu.org>
21773
21774 * src/bison.s1 (yyparse):
21775 If __GNUC__ and YYPARSE_PARAM are both defined,
21776 declare yyparse to have a void * argument.
21777
21778 1996-12-18 Paul Eggert <eggert@gnu.org>
21779
21780 * bison.simple (yyparse):
21781 If __GNUC__ and YYPARSE_PARAM are both defined,
21782 declare yyparse to have a void * argument.
21783
21784 1996-12-17 Richard Stallman <rms@gnu.org>
21785
21786 * src/reduce.c (nbits): Add some casts.
21787
21788 1996-08-12 Richard Stallman <rms@gnu.org>
21789
21790 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21791
21792 1996-08-12 Richard Stallman <rms@gnu.org>
21793
21794 * bison.simple: Test _MSDOS as well as _MSDOS_.
21795
21796 1996-07-31 Richard Stallman <rms@gnu.org>
21797
21798 * src/bison.s1:
21799 [__sun && __i386]: Include alloca.h.
21800
21801 1996-07-31 Richard Stallman <rms@gnu.org>
21802
21803 * bison.simple:
21804 [__sun && __i386]: Include alloca.h.
21805
21806 1996-07-30 Richard Stallman <rms@gnu.org>
21807
21808 * src/bison.s1: Comment change.
21809
21810 * src/bison.s1: Test _MSDOS_, not MSDOS.
21811
21812 1996-07-30 Richard Stallman <rms@gnu.org>
21813
21814 * bison.simple: Comment change.
21815
21816 * bison.simple: Test _MSDOS_, not MSDOS.
21817
21818 1996-06-01 Richard Stallman <rms@gnu.org>
21819
21820 * 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:
21821 Insert `_' macro around many string constants.
21822
21823 * src/main.c:
21824 Insert `_' macro around many string constants.
21825
21826 (main): Call setlocale, bindtextdomain and textdomain.
21827
21828 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21829 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21830 [ENABLE_NLS]: Include libintl.h.
21831 [ENABLE_NLS] (gettext): Define.
21832 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21833 (N_, PACKAGE, LOCALEDIR): New macros.
21834
21835 1996-06-01 Richard Stallman <rms@gnu.org>
21836
21837 * POTFILES.in: New file.
21838
21839 * Makefile.in (allocate.o):
21840 Define target explicitly.
21841
21842 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21843 (LDFLAGS): Set to @LDFLAGS@.
21844 (configure): Run autoconf only if preceding `cd' succeeds.
21845 (bison.s1): Redirect output to temporary file then move the
21846 temporary to the target, rather than redirecting directly to bison.s1.
21847 (clean): Remove config.status and config.log.
21848 (distclean): Don't remove config.status here.
21849
21850 1996-05-12 Richard Stallman <rms@gnu.org>
21851
21852 * src/bison.s1:
21853 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21854
21855 1996-05-12 Richard Stallman <rms@gnu.org>
21856
21857 * bison.simple:
21858 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21859
21860 1996-05-11 Richard Stallman <rms@gnu.org>
21861
21862 * src/bison.s1 (__yy_memcpy):
21863 Really reorder the args, as was supposedly done on Feb 14 1995.
21864 (yyparse): Calls changed accordingly.
21865
21866 1996-05-11 Richard Stallman <rms@gnu.org>
21867
21868 * Makefile.in (dist): Don't use $(srcdir).
21869
21870 * bison.simple (__yy_memcpy):
21871 Really reorder the args, as was supposedly done on Feb 14 1995.
21872 (yyparse): Calls changed accordingly.
21873
21874 1996-01-27 Richard Stallman <rms@gnu.org>
21875
21876 * src/output.c (output_rule_data):
21877 Test YYERROR_VERBOSE in the conditional
21878 around the definition of ttyname.
21879
21880 1995-12-29 Richard Stallman <rms@gnu.org>
21881
21882 * src/bison.s1:
21883 Fix line numbers in #line commands.
21884
21885 1995-12-29 Richard Stallman <rms@gnu.org>
21886
21887 * bison.simple:
21888 Fix line numbers in #line commands.
21889
21890 1995-12-27 Richard Stallman <rms@gnu.org>
21891
21892 * src/bison.s1 (YYPARSE_PARAM_DECL):
21893 In C++, make it always null.
21894 (YYPARSE_PARAM_ARG): New macro.
21895 (yyparse): Use YYPARSE_PARAM_ARG.
21896
21897 1995-12-27 Richard Stallman <rms@gnu.org>
21898
21899 * bison.simple (YYPARSE_PARAM_DECL):
21900 In C++, make it always null.
21901 (YYPARSE_PARAM_ARG): New macro.
21902 (yyparse): Use YYPARSE_PARAM_ARG.
21903
21904 1995-11-29 Richard Stallman <rms@gnu.org>
21905
21906 * doc/bison.texinfo:
21907 Describe literal string tokens, %raw, %no_lines, %token_table.
21908
21909 1995-11-29 Daniel Hagerty <hag@gnu.org>
21910
21911 * doc/bison.texinfo: Fixed update date
21912
21913 1995-10-16 Richard Stallman <rms@gnu.org>
21914
21915 * src/version.c: Version 1.25.
21916
21917 1995-10-16 Richard Stallman <rms@gnu.org>
21918
21919 * NEWS: *** empty log message ***
21920
21921 1995-10-16 Richard Stallman <rms@gnu.org>
21922
21923 * doc/bison.1, doc/bison.rnh:
21924 Add new options.
21925
21926 1995-10-15 Richard Stallman <rms@gnu.org>
21927
21928 * src/vmsgetargs.c, src/getargs.c:
21929 Added -n, -k, and -raw switches.
21930 (noparserflag, toknumflag, rawtoknumflag): New variables.
21931
21932 * src/symtab.h (SALIAS):
21933 New #define for adding aliases to %token.
21934 (struct bucket): Added `alias' field.
21935
21936 * src/reduce.c (reduce_grammar):
21937 Revise error message.
21938 (print_notices): Remove final `.' from error message.
21939
21940 * src/reader.c (reader_output_yylsp):
21941 New function.
21942 (readgram): Use `#if 0' around code that accepted %command
21943 inside grammar rules: The documentation doesn't allow it,
21944 and it will fail since the %command processors scan for the next %.
21945 (parse_token_decl): Extended the %token
21946 declaration to allow a multi-character symbol as an alias.
21947 (parse_thong_decl): New function.
21948 (read_declarations): Added %thong declarations.
21949 (read_declarations): Handle NOOP to deal with allowing
21950 % declarations as another means to specify the flags.
21951 (readgram): Allow %prec prior to semantics embedded in a rule.
21952 (skip_to_char, read_declarations, copy_definition)
21953 (parse_token_decl, parse_start_decl, parse_type_decl)
21954 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21955 (get_type_name, copy_guard, copy_action, readgram)
21956 (get_type, packsymbols): Revised most error messages.
21957 Changed `fatal' to `warnxxx' to avoid aborting for error.
21958 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21959 (read_declarations): Improve the error message for
21960 an invalid character. Do not abort.
21961 (read_declarations, copy_guard, copy_action): Use
21962 printable_version to avoid unprintable characters in printed output.
21963 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21964 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21965 Allow the type of a non-terminal can be given
21966 more than once, as long as all specifications give the same type.
21967
21968 * src/output.c:
21969 (output_headers, output_trailers, output, output_gram)
21970 (output_rule_data): Implement noparserflag variable.
21971 Implement toknumflag variable.
21972 (output): Call reader_output_yylsp to output LTYPESTR.
21973
21974 * src/main.c (main):
21975 If reader sees an error, don't process the grammar.
21976 (fatals): Updated to not use VARARGS1.
21977 (printable_version, int_to_string, warn, warni, warns, warnss)
21978 (warnsss): New error reporting functions. Avoid abort for error.
21979
21980 * src/lex.h:
21981 Added THONG and NOOP for alias processing.
21982 Added SETOPT for the new code that allows setting options with %flags.
21983
21984 * src/lex.c:
21985 Include getopt.h. Add some extern decls.
21986 (safegetc): New function to deal with EOF gracefully.
21987 (literalchar); new function to deal with reading \ escapes.
21988 (lex): Use literalchar.
21989 (lex): Implemented "..." tokens.
21990 (literalchar, lex, parse_percent_token): Made tokenbuffer
21991 always contain the token. This includes growing the token
21992 buffer while reading an integer.
21993 (parse_percent_token): Replaced if-else statement with percent_table.
21994 (parse_percent_token): Added % declarations as another
21995 way to specify the flags -n, -l, and -r. Also added hooks for
21996 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21997 major changes to files.c.
21998 (lex) Retain in the incoming stream a character following
21999 an incorrect '/'.
22000 (skip_white_space, lex): Revised most error messages
22001 and changed fatal to warn to avoid aborting.
22002 (percent_table): Added %thong declarations.
22003
22004 * src/gram.h: Comment changes.
22005
22006 * src/files.c (openfiles, open_extra_files, done):
22007 Add faction flag
22008 and actfile file. Handle noparserflag. Both for -n switch.
22009
22010 * src/conflicts.c (resolve_sr_conflict):
22011 Remove use of alloca.
22012
22013 1995-06-01 Jim Meyering <meyering@gnu.org>
22014
22015 * doc/bison.texinfo: *** empty log message ***
22016
22017 1995-05-06 Richard Stallman <rms@gnu.org>
22018
22019 * src/bison.s1: Comment change.
22020
22021 1995-05-06 Richard Stallman <rms@gnu.org>
22022
22023 * bison.simple: Comment change.
22024
22025 1995-05-03 Richard Stallman <rms@gnu.org>
22026
22027 * src/version.c: Version now 1.24.
22028
22029 * src/bison.s1: Change distribution terms.
22030
22031 * src/version.c: Version now 1.23.
22032
22033 1995-05-03 Richard Stallman <rms@gnu.org>
22034
22035 * doc/bison.texinfo:
22036 Rewrite "Conditions for Using Bison".
22037 Update version to 1.24.
22038
22039 1995-05-03 Richard Stallman <rms@gnu.org>
22040
22041 * bison.simple: Change distribution terms.
22042
22043 1995-02-23 Richard Stallman <rms@gnu.org>
22044
22045 * src/files.c: Test __VMS_POSIX as well as VMS.
22046
22047 1995-02-14 Jim Meyering <meyering@gnu.org>
22048
22049 * src/bison.s1 (__yy_memcpy):
22050 Renamed from __yy_bcopy to avoid
22051 confusion. Reverse FROM and TO arguments to be consistent with
22052 those of memcpy.
22053
22054 1995-02-14 Jim Meyering <meyering@gnu.org>
22055
22056 * bison.simple (__yy_memcpy):
22057 Renamed from __yy_bcopy to avoid
22058 confusion. Reverse FROM and TO arguments to be consistent with
22059 those of memcpy.
22060
22061 1994-11-10 David J. MacKenzie <djm@gnu.org>
22062
22063 * NEWS: reformat
22064
22065 * NEWS: New file.
22066
22067 * Makefile.in (DISTFILES): Include NEWS.
22068
22069 * Makefile.in (DISTFILES):
22070 Include install-sh, not install.sh.
22071
22072 * configure.in: Update to Autoconf v2 macro names.
22073
22074 1994-10-05 David J. MacKenzie <djm@gnu.org>
22075
22076 * Makefile.in: fix typo
22077
22078 * Makefile.in (prefix, exec_prefix):
22079 Let configure set them.
22080
22081 1994-09-28 David J. MacKenzie <djm@gnu.org>
22082
22083 * Makefile.in: Set datadir to $(prefix)/share.
22084
22085 1994-09-15 Richard Stallman <rms@gnu.org>
22086
22087 * src/bison.s1:
22088 Update copyright notice and GPL version.
22089
22090 1994-09-15 Richard Stallman <rms@gnu.org>
22091
22092 * bison.simple:
22093 Update copyright notice and GPL version.
22094
22095 1994-07-12 Richard Stallman <rms@gnu.org>
22096
22097 * src/reduce.c, src/reader.c:
22098 entered into RCS
22099
22100 1994-05-05 David J. MacKenzie <djm@gnu.org>
22101
22102 * Makefile.in: entered into RCS
22103
22104 1994-03-26 Richard Stallman <rms@gnu.org>
22105
22106 * src/bison.s1: entered into RCS
22107
22108 1994-03-26 Richard Stallman <rms@gnu.org>
22109
22110 * bison.simple: entered into RCS
22111
22112 1994-03-25 Richard Stallman <rms@gnu.org>
22113
22114 * src/main.c: entered into RCS
22115
22116 1994-03-24 Richard Stallman <rms@gnu.org>
22117
22118 * src/conflicts.c: entered into RCS
22119
22120 1994-01-02 Richard Stallman <rms@gnu.org>
22121
22122 * Makefile.in: *** empty log message ***
22123
22124 1993-11-21 Richard Stallman <rms@gnu.org>
22125
22126 * src/bison.s1: *** empty log message ***
22127
22128 1993-11-21 Richard Stallman <rms@gnu.org>
22129
22130 * doc/bison.texinfo: entered into RCS
22131
22132 * doc/bison.texinfo: *** empty log message ***
22133
22134 1993-11-21 Richard Stallman <rms@gnu.org>
22135
22136 * bison.simple: *** empty log message ***
22137
22138 1993-10-25 David J. MacKenzie <djm@gnu.org>
22139
22140 * doc/bison.texinfo: *** empty log message ***
22141
22142 1993-10-19 Richard Stallman <rms@gnu.org>
22143
22144 * src/bison.s1: *** empty log message ***
22145
22146 1993-10-19 Richard Stallman <rms@gnu.org>
22147
22148 * bison.simple: *** empty log message ***
22149
22150 1993-10-14 Richard Stallman <rms@gnu.org>
22151
22152 * src/bison.s1: *** empty log message ***
22153
22154 1993-10-14 Richard Stallman <rms@gnu.org>
22155
22156 * bison.simple: *** empty log message ***
22157
22158 1993-09-14 David J. MacKenzie <djm@gnu.org>
22159
22160 * doc/bison.texinfo: *** empty log message ***
22161
22162 1993-09-13 Noah Friedman <friedman@gnu.org>
22163
22164 * Makefile.in: *** empty log message ***
22165
22166 1993-09-10 Richard Stallman <rms@gnu.org>
22167
22168 * src/conflicts.c: *** empty log message ***
22169
22170 * src/system.h: entered into RCS
22171
22172 1993-09-10 Richard Stallman <rms@gnu.org>
22173
22174 * doc/bison.1: entered into RCS
22175
22176 1993-09-06 Noah Friedman <friedman@gnu.org>
22177
22178 * src/version.c: entered into RCS
22179
22180 1993-09-06 Noah Friedman <friedman@gnu.org>
22181
22182 * Makefile.in: *** empty log message ***
22183
22184 1993-07-30 David J. MacKenzie <djm@gnu.org>
22185
22186 * Makefile.in: *** empty log message ***
22187
22188 1993-07-24 Richard Stallman <rms@gnu.org>
22189
22190 * src/bison.s1: *** empty log message ***
22191
22192 1993-07-24 Richard Stallman <rms@gnu.org>
22193
22194 * bison.simple: *** empty log message ***
22195
22196 1993-07-08 David J. MacKenzie <djm@gnu.org>
22197
22198 * Makefile.in: *** empty log message ***
22199
22200 1993-07-04 Richard Stallman <rms@gnu.org>
22201
22202 * src/bison.s1: *** empty log message ***
22203
22204 1993-07-04 Richard Stallman <rms@gnu.org>
22205
22206 * bison.simple: *** empty log message ***
22207
22208 1993-06-26 David J. MacKenzie <djm@gnu.org>
22209
22210 * src/getargs.c: entered into RCS
22211
22212 1993-06-26 David J. MacKenzie <djm@gnu.org>
22213
22214 * doc/bison.texinfo: *** empty log message ***
22215
22216 * doc/bison.1: New file.
22217
22218 1993-06-25 Richard Stallman <rms@gnu.org>
22219
22220 * src/getargs.c: New file.
22221
22222 1993-06-16 Richard Stallman <rms@gnu.org>
22223
22224 * src/bison.s1: *** empty log message ***
22225
22226 1993-06-16 Richard Stallman <rms@gnu.org>
22227
22228 * bison.simple: *** empty log message ***
22229
22230 1993-06-03 Richard Stallman <rms@gnu.org>
22231
22232 * src/bison.s1: New file.
22233
22234 1993-06-03 Richard Stallman <rms@gnu.org>
22235
22236 * doc/bison.texinfo: *** empty log message ***
22237
22238 1993-06-03 Richard Stallman <rms@gnu.org>
22239
22240 * bison.simple: New file.
22241
22242 1993-05-19 Richard Stallman <rms@gnu.org>
22243
22244 * doc/bison.texinfo: New file.
22245
22246 1993-05-07 Noah Friedman <friedman@gnu.org>
22247
22248 * Makefile.in: *** empty log message ***
22249
22250 1993-04-28 Noah Friedman <friedman@gnu.org>
22251
22252 * src/reader.c: *** empty log message ***
22253
22254 1993-04-23 Noah Friedman <friedman@gnu.org>
22255
22256 * src/alloc.h: entered into RCS
22257
22258 1993-04-20 David J. MacKenzie <djm@gnu.org>
22259
22260 * src/version.c: *** empty log message ***
22261
22262 * src/files.c, src/allocate.c:
22263 entered into RCS
22264
22265 * src/reader.c: *** empty log message ***
22266
22267 * src/lex.c: entered into RCS
22268
22269 * src/conflicts.c: New file.
22270
22271 * src/symtab.c: entered into RCS
22272
22273 * src/alloc.h: New file.
22274
22275 * src/LR0.c: entered into RCS
22276
22277 1993-04-18 Noah Friedman <friedman@gnu.org>
22278
22279 * src/reader.c: New file.
22280
22281 * src/version.c: *** empty log message ***
22282
22283 1993-04-18 Noah Friedman <friedman@gnu.org>
22284
22285 * Makefile.in: *** empty log message ***
22286
22287 1993-04-17 Noah Friedman <friedman@gnu.org>
22288
22289 * Makefile.in: *** empty log message ***
22290
22291 1993-04-15 Richard Stallman <rms@gnu.org>
22292
22293 * src/main.c, src/files.c:
22294 New file.
22295
22296 1993-04-15 Noah Friedman <friedman@gnu.org>
22297
22298 * configure.in: entered into RCS
22299
22300 * configure.in: *** empty log message ***
22301
22302 * configure.in: New file.
22303
22304 1993-04-14 Richard Stallman <rms@gnu.org>
22305
22306 * Makefile.in: New file.
22307
22308 1993-04-13 Richard Stallman <rms@gnu.org>
22309
22310 * src/version.c: New file.
22311
22312 1993-03-25 Richard Stallman <rms@gnu.org>
22313
22314 * src/output.c: entered into RCS
22315
22316 1992-09-25 Richard Stallman <rms@gnu.org>
22317
22318 * configure.bat: entered into RCS
22319
22320 1992-06-22 Richard Stallman <rms@gnu.org>
22321
22322 * src/vmsgetargs.c: entered into RCS
22323
22324 1992-06-22 Richard Stallman <rms@gnu.org>
22325
22326 * doc/bison.rnh: entered into RCS
22327
22328 1992-04-20 David J. MacKenzie <djm@gnu.org>
22329
22330 * README: entered into RCS
22331
22332 1992-01-22 Richard Stallman <rms@gnu.org>
22333
22334 * src/machine.h: entered into RCS
22335
22336 1991-12-21 Richard Stallman <rms@gnu.org>
22337
22338 * src/lalr.c, src/closure.c:
22339 entered into RCS
22340
22341 1991-12-20 Richard Stallman <rms@gnu.org>
22342
22343 * src/state.h: entered into RCS
22344
22345 1991-12-18 Richard Stallman <rms@gnu.org>
22346
22347 * src/print.c, src/nullable.c, src/derives.c:
22348 entered into RCS
22349
22350 1991-11-03 David J. MacKenzie <djm@gnu.org>
22351
22352 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22353 entered into RCS
22354
22355 1988-09-09 Richard Stallman <rms@gnu.org>
22356
22357 * src/bison.hairy: entered into RCS
22358
22359 1987-12-16 Richard Stallman <rms@gnu.org>
22360
22361 * REFERENCES: entered into RCS
22362
22363
22364 -----
22365
22366 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22367 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
22368 Free Software Foundation, Inc.
22369
22370 Copying and distribution of this file, with or without
22371 modification, are permitted provided the copyright notice and this
22372 notice are preserved.