bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Use "%define variant" in bench.pl.


From: Akim Demaille
Subject: [PATCH] Use "%define variant" in bench.pl.
Date: Fri, 07 Nov 2008 20:38:09 -0000

        * etc/bench.pl.in: No longer use the pseudo directive %variants,
        just use %define variants.
---
 ChangeLog           |    6 ++++++
 etc/bench.pl.in     |   21 ++++++---------------
 examples/variant.yy |    2 +-
 3 files changed, 13 insertions(+), 16 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f575d05..8054b25 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2008-11-07  Akim Demaille  <address@hidden>
 
+       Use "%define variant" in bench.pl.
+       * etc/bench.pl.in: No longer use the pseudo directive %variants,
+       just use %define variants.
+
+2008-11-07  Akim Demaille  <address@hidden>
+
        Regen.
        * src/parse-gram.h, src/parse-gram.c: Regen.
 
diff --git a/etc/bench.pl.in b/etc/bench.pl.in
index 22328cf..f4f5a7e 100755
--- a/etc/bench.pl.in
+++ b/etc/bench.pl.in
@@ -147,21 +147,13 @@ sub verbose($$)
 
 Format the list of directives for Bison for bench named C<$bench>.
 
-The special fake C<%variant> directive requests the use of
-Boost.Variants instead of a regular union.  So don't pass it, it is
-not a valid directive.
-
 =cut
 
 sub directives($@)
 {
   my ($bench, @directive) = @_;
   my $res = "/* Directives for bench `$bench'. */\n";
-  for my $d (@directive)
-    {
-      $res .= $d . "\n"
-        unless $d eq '%variant';
-    }
+  $res .= join ("\n", @directive) . "\n";
   $res .= "/* End of directives for bench `$bench'. */\n";
   return $res;
 }
@@ -527,7 +519,7 @@ sub generate_grammar_variant ($$@)
 {
   my ($base, $max, @directive) = @_;
   my $directives = directives ($base, @directive);
-  my $variant = grep { $_ eq '%variant' } @directive;
+  my $variant = grep { $_ eq '%define variant' } @directive;
 
   my $out = new IO::File ">$base.y"
     or die;
@@ -563,7 +555,6 @@ EOF
   if ($variant)
     {
       print $out <<'EOF';
-%code variant {int,std::string}
 %token <std::string> TEXT
 %token <int> NUMBER
 %printer { std::cerr << "Number: " << $$; } <int>
@@ -821,10 +812,10 @@ sub bench_variant_parser ()
      (
       "f-union"         => ['%skeleton "lalr1-fusion.cc"'],
       "f-uni-deb"   => ['%skeleton "lalr1-fusion.cc"', '%debug'],
-      "f-var"       => ['%skeleton "lalr1-fusion.cc"', '%variant'],
-      "f-var-deb" => ['%skeleton "lalr1-fusion.cc"', '%debug', '%variant'],
-      "f-var-dtr"       => ['%skeleton "lalr1-fusion.cc"', '%variant', "%code 
{\n#define VARIANT_DESTROY\n}"],
-      "f-var-deb-dtr" => ['%skeleton "lalr1-fusion.cc"', '%debug', '%variant', 
"%code {\n#define VARIANT_DESTROY\n}"],
+      "f-var"       => ['%skeleton "lalr1-fusion.cc"', '%define variant'],
+      "f-var-deb" => ['%skeleton "lalr1-fusion.cc"', '%debug', '%define 
variant'],
+      "f-var-dtr"       => ['%skeleton "lalr1-fusion.cc"', '%define variant', 
"%code {\n#define VARIANT_DESTROY\n}"],
+      "f-var-deb-dtr" => ['%skeleton "lalr1-fusion.cc"', '%debug', '%define 
variant', "%code {\n#define VARIANT_DESTROY\n}"],
      )
     );
 }
diff --git a/examples/variant.yy b/examples/variant.yy
index be43c60..cba6d08 100644
--- a/examples/variant.yy
+++ b/examples/variant.yy
@@ -58,7 +58,7 @@ typedef std::list<std::string> strings_type;
 %%
 
 result:
-  list          { std::cout << $1 << std::endl; }
+  list { std::cout << $1 << std::endl; }
 ;
 
 list:
-- 
1.6.0.2.588.g3102





reply via email to

[Prev in Thread] Current Thread [Next in Thread]