From: Akim Demaille Date: Mon, 16 Apr 2012 15:03:19 +0000 (+0200) Subject: %printer: support both yyo and yyoutput. X-Git-Tag: v2.7.90~452 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/c50263271db482261b11f7452283c142a780a09d %printer: support both yyo and yyoutput. lalr1.cc used to support yyo, but not yyoutput. Support both, but document only yyoutput (at least until there is some consensus on this). * data/c.m4 (yy_symbol_value_print): Also support yyo. * data/glr.cc (yy_symbol_value_print_): Support both yyo and yyoutput. * data/lalr1.cc: Also support yyoutput. * doc/bison.texinfo: Explicitly use yyoutput in the examples. * examples/mfcalc/mfcalc.test: Test the -p option. --- diff --git a/data/c.m4 b/data/c.m4 index 14db807b..e140ade8 100644 --- a/data/c.m4 +++ b/data/c.m4 @@ -495,7 +495,8 @@ m4_define_default([b4_yy_symbol_print_generate], b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl m4_ifset([b4_parse_param], [, b4_parse_param]))[ { -]b4_parse_param_use([yyoutput], [yylocationp])dnl + FILE *yyo = yyoutput; +]b4_parse_param_use([yyo], [yylocationp])dnl [ if (!yyvaluep) return;] dnl glr.c does not feature yytoknum. diff --git a/data/glr.cc b/data/glr.cc index 67258eea..59533a25 100644 --- a/data/glr.cc +++ b/data/glr.cc @@ -148,9 +148,11 @@ m4_pushdef([b4_parse_param], m4_defn([b4_parse_param_orig]))dnl ]b4_parser_class_name[::yy_symbol_value_print_ (int yytype, const semantic_type* yyvaluep, const location_type* yylocationp) { - /* Pacify ``unused variable'' warnings. */ - YYUSE (yyvaluep); YYUSE (yylocationp); + YYUSE (yyvaluep); + std::ostream& yyoutput = debug_stream (); + std::ostream& yyo = yyoutput; + YYUSE (yyo); switch (yytype) { ]b4_symbol_foreach([b4_symbol_printer])dnl diff --git a/data/lalr1.cc b/data/lalr1.cc index 99b8e9e8..ef5e1cee 100644 --- a/data/lalr1.cc +++ b/data/lalr1.cc @@ -549,11 +549,11 @@ b4_percent_code_get[]dnl ]b4_parser_class_name[::yy_destroy_ (const char* yymsg, symbol_base_type& yysym) const { - int yytype = yysym.type_get (); if (yymsg) YY_SYMBOL_PRINT (yymsg, yysym); // User destructor. + int yytype = yysym.type_get (); switch (yytype) { ]b4_symbol_foreach([b4_symbol_destructor])dnl @@ -571,6 +571,8 @@ b4_percent_code_get[]dnl ]b4_parser_class_name[::yy_print_ (std::ostream& yyo, const symbol_base_type& yysym) const { + std::ostream& yyoutput = yyo; + YYUSE (yyoutput); int yytype = yysym.type_get (); yyo << (yytype < yyntokens_ ? "token" : "nterm") << ' ' << yytname_[yytype] << " ("]b4_locations_if([ diff --git a/doc/bison.texinfo b/doc/bison.texinfo index b0236af5..434b6e67 100644 --- a/doc/bison.texinfo +++ b/doc/bison.texinfo @@ -3155,14 +3155,14 @@ type: %code requires @{ #include "type1.h" @} %union @{ type1 field1; @} %destructor @{ type1_free ($$); @} -%printer @{ type1_print ($$); @} +%printer @{ type1_print (yyoutput, $$); @} @end group @group %code requires @{ #include "type2.h" @} %union @{ type2 field2; @} %destructor @{ type2_free ($$); @} -%printer @{ type2_print ($$); @} +%printer @{ type2_print (yyoutput, $$); @} @end group @end example @@ -10244,7 +10244,7 @@ regular destructors. All the values are printed using their @c FIXME: Document %printer, and mention that it takes a braced-code operand. @comment file: calc++-parser.yy @example -%printer @{ debug_stream () << $$; @} <*>; +%printer @{ yyoutput << $$; @} <*>; @end example @noindent diff --git a/examples/mfcalc/mfcalc.test b/examples/mfcalc/mfcalc.test index f728f01d..24c4b89c 100755 --- a/examples/mfcalc/mfcalc.test +++ b/examples/mfcalc/mfcalc.test @@ -24,3 +24,4 @@ cat >input <