From: Peter Rabbitson Date: Sat, 27 Nov 2010 17:49:47 +0000 (+0000) Subject: Shave off another ~8% off accessor execution, MOAR benchmarks X-Git-Tag: v0.10000~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FClass-Accessor-Grouped.git;a=commitdiff_plain;h=af71d6877b87f6b39218c8fed04068755fea189c Shave off another ~8% off accessor execution, MOAR benchmarks --- diff --git a/benchmark/accessors b/benchmark/accessors index 16e4f01..d5affd3 100644 --- a/benchmark/accessors +++ b/benchmark/accessors @@ -10,6 +10,8 @@ BEGIN { Class::XSAccessor::Compat Moose Mouse + Mousse + Moo /) { eval "require $_" or push @missing, $_; } @@ -73,7 +75,8 @@ sub _add_moose_task { package $gen_class; use $class; has $meth => (is => 'rw'); -__PACKAGE__->meta->make_immutable; +# some moosey thingies can not do this +eval { __PACKAGE__->meta->make_immutable }; EOC $bench_objs->{$name} = $gen_class->new; @@ -83,12 +86,15 @@ EOC sub _add_task { my ($tasks, $name, $meth, $slot) = @_; - $tasks->{$name} = eval "sub { - for (my \$i = 0; \$i < 100; \$i++) { - \$bench_objs->{$slot}->$meth(1); - \$bench_objs->{$slot}->$meth(\$bench_objs->{$slot}->$meth + 1); - } - }"; + my $perl; + for (1 .. 1000) { + $perl .= " + \$bench_objs->{$slot}->$meth($_); + \$bench_objs->{$slot}->$meth(\$bench_objs->{$slot}->$meth + $_); + "; + } + + $tasks->{$name} = eval "sub { $perl } "; } my $tasks = { @@ -104,14 +110,21 @@ for (qw/CAG CAG_XS CAF CAF_XS CAF_XSA XSA HANDMADE/) { my $moose_based = { moOse => 'Moose', - ($ENV{MOUSE_PUREPERL} ? 'moUse' : 'moUse_XS') => 'Mouse', + moo_XS => 'Moo', + moUse_XS => 'Mouse', + moUse => 'Mousse', }; for (keys %$moose_based) { _add_moose_task ($tasks, $_, $moose_based->{$_}) } +{ + no warnings 'once'; + local $Method::Generate::Accessor::CAN_HAZ_XS = 0; + _add_moose_task ($tasks, moo => 'Moo'); +} -for (1, 2) { +for (1 .. 5) { print "Perl $], take $_:\n"; cmpthese ( -1, $tasks ); print "\n"; diff --git a/lib/Class/Accessor/Grouped.pm b/lib/Class/Accessor/Grouped.pm index a73a687..ae3a5f6 100644 --- a/lib/Class/Accessor/Grouped.pm +++ b/lib/Class/Accessor/Grouped.pm @@ -417,18 +417,22 @@ available on your system. This is the result of a set/get/set loop benchmark on perl 5.12.1 with thread support, showcasing most popular accessor builders: L, L, -L, L -and L: - - Rate CAG moOse CAF HANDMADE CAF_XS moUse_XS CAG_XS XSA - CAG 1777/s -- -27% -29% -36% -62% -67% -72% -73% - moOse 2421/s 36% -- -4% -13% -48% -55% -61% -63% - CAF 2511/s 41% 4% -- -10% -47% -53% -60% -61% - HANDMADE 2791/s 57% 15% 11% -- -41% -48% -56% -57% - CAF_XS 4699/s 164% 94% 87% 68% -- -13% -25% -28% - moUse_XS 5375/s 203% 122% 114% 93% 14% -- -14% -18% - CAG_XS 6279/s 253% 159% 150% 125% 34% 17% -- -4% - XSA 6515/s 267% 169% 159% 133% 39% 21% 4% -- +L, L, L, +L, and L: + + Rate CAG moOse CAF moUse moo HANDMADE CAF_XS moUse_XS moo_XS CAF_XSA XSA CAG_XS + CAG 169/s -- -21% -24% -32% -32% -34% -59% -63% -67% -67% -67% -67% + moOse 215/s 27% -- -3% -13% -13% -15% -48% -53% -58% -58% -58% -58% + CAF 222/s 31% 3% -- -10% -10% -13% -46% -52% -57% -57% -57% -57% + moUse 248/s 46% 15% 11% -- -0% -3% -40% -46% -52% -52% -52% -52% + moo 248/s 46% 15% 11% 0% -- -3% -40% -46% -52% -52% -52% -52% + HANDMADE 255/s 50% 18% 14% 3% 3% -- -38% -45% -50% -51% -51% -51% + CAF_XS 411/s 143% 91% 85% 66% 66% 61% -- -11% -20% -20% -21% -21% + moUse_XS 461/s 172% 114% 107% 86% 86% 81% 12% -- -10% -11% -11% -11% + moo_XS 514/s 204% 139% 131% 107% 107% 102% 25% 12% -- -0% -1% -1% + CAF_XSA 516/s 205% 140% 132% 108% 108% 103% 26% 12% 0% -- -0% -0% + XSA 519/s 206% 141% 133% 109% 109% 104% 26% 13% 1% 0% -- -0% + CAG_XS 519/s 206% 141% 133% 109% 109% 104% 26% 13% 1% 0% 0% -- Benchmark program is available in the root of the L: @@ -568,7 +572,7 @@ my $maker_templates = { $field =~ s/'/\\'/g; " - \@_ > 1 + \@_ != 1 ? shift->$set('$field', \@_) : shift->$get('$field') " @@ -601,7 +605,7 @@ my $maker_templates = { $field =~ s/'/\\'/g; " - \@_ > 1 + \@_ != 1 ? shift->$set('$field', \@_) : do { my \$caller = caller;