← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 21:45:08 2010
Reported on Wed Nov 17 22:12:06 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/x86_64-linux/Moose/Meta/Method/Accessor/Native/Hash/values.pm
StatementsExecuted 20 statements in 1.20ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11177µs96µsMoose::Meta::Method::Accessor::Native::Hash::values::::BEGIN@3Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@3
11159µs161µsMoose::Meta::Method::Accessor::Native::Hash::values::::BEGIN@4Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@4
11146µs230µsMoose::Meta::Method::Accessor::Native::Hash::values::::BEGIN@6Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@6
11146µs846µsMoose::Meta::Method::Accessor::Native::Hash::values::::BEGIN@26Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@26
11146µs15.3msMoose::Meta::Method::Accessor::Native::Hash::values::::BEGIN@12Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@12
0000s0sMoose::Meta::Method::Accessor::Native::Hash::values::::_maximum_argumentsMoose::Meta::Method::Accessor::Native::Hash::values::_maximum_arguments
0000s0sMoose::Meta::Method::Accessor::Native::Hash::values::::_return_valueMoose::Meta::Method::Accessor::Native::Hash::values::_return_value
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Moose::Meta::Method::Accessor::Native::Hash::values;
2
33118µs2115µs
# spent 96µs (77+19) within Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@3 which was called: # once (77µs+19µs) by Moose::Meta::Attribute::Native::Trait::Hash::BEGIN@21 at line 3
use strict;
# spent 96µs making 1 call to Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@3 # spent 19µs making 1 call to strict::import
43176µs2262µs
# spent 161µs (59+101) within Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@4 which was called: # once (59µs+101µs) by Moose::Meta::Attribute::Native::Trait::Hash::BEGIN@21 at line 4
use warnings;
# spent 161µs making 1 call to Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@4 # spent 101µs making 1 call to warnings::import
5
63239µs2414µs
# spent 230µs (46+184) within Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@6 which was called: # once (46µs+184µs) by Moose::Meta::Attribute::Native::Trait::Hash::BEGIN@21 at line 6
use Scalar::Util qw( looks_like_number );
# spent 230µs making 1 call to Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@6 # spent 184µs making 1 call to Exporter::import
7
814µsour $VERSION = '1.19';
9184µs$VERSION = eval $VERSION;
# spent 12µs executing statements in string eval
1013µsour $AUTHORITY = 'cpan:STEVAN';
11
123382µs230.6ms
# spent 15.3ms (46µs+15.3) within Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@12 which was called: # once (46µs+15.3ms) by Moose::Meta::Attribute::Native::Trait::Hash::BEGIN@21 at line 12
use Moose::Role;
13
14133µs119.2mswith 'Moose::Meta::Method::Accessor::Native::Reader' =>
# spent 19.2ms making 1 call to Moose::Role::with
15 { -excludes => ['_maximum_arguments'] };
16
17sub _maximum_arguments { 0 }
18
19sub _return_value {
20 my $self = shift;
21 my $slot_access = shift;
22
23 return "values \%{ ($slot_access) }";
24}
25
263121µs21.65ms
# spent 846µs (46+800) within Moose::Meta::Method::Accessor::Native::Hash::values::BEGIN@26 which was called: # once (46µs+800µs) by Moose::Meta::Attribute::Native::Trait::Hash::BEGIN@21 at line 26
no Moose::Role;
27
28145µs1;