← 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:10:14 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/Array/join.pm
StatementsExecuted 20 statements in 1.38ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111100µs118µsMoose::Meta::Method::Accessor::Native::Array::join::::BEGIN@3Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@3
11146µs792µsMoose::Meta::Method::Accessor::Native::Array::join::::BEGIN@43Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@43
11143µs14.7msMoose::Meta::Method::Accessor::Native::Array::join::::BEGIN@12Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@12
11140µs111µsMoose::Meta::Method::Accessor::Native::Array::join::::BEGIN@4Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@4
11120µs20µsMoose::Meta::Method::Accessor::Native::Array::join::::BEGIN@6Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@6
0000s0sMoose::Meta::Method::Accessor::Native::Array::join::::_inline_check_argumentsMoose::Meta::Method::Accessor::Native::Array::join::_inline_check_arguments
0000s0sMoose::Meta::Method::Accessor::Native::Array::join::::_maximum_argumentsMoose::Meta::Method::Accessor::Native::Array::join::_maximum_arguments
0000s0sMoose::Meta::Method::Accessor::Native::Array::join::::_minimum_argumentsMoose::Meta::Method::Accessor::Native::Array::join::_minimum_arguments
0000s0sMoose::Meta::Method::Accessor::Native::Array::join::::_return_valueMoose::Meta::Method::Accessor::Native::Array::join::_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::Array::join;
2
33111µs2137µs
# spent 118µs (100+19) within Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@3 which was called: # once (100µs+19µs) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@19 at line 3
use strict;
# spent 118µs making 1 call to Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@3 # spent 19µs making 1 call to strict::import
43101µs2182µs
# spent 111µs (40+71) within Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@4 which was called: # once (40µs+71µs) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@19 at line 4
use warnings;
# spent 111µs making 1 call to Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@4 # spent 71µs making 1 call to warnings::import
5
63245µs120µs
# spent 20µs within Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@6 which was called: # once (20µs+0s) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@19 at line 6
use Moose::Util ();
7
814µsour $VERSION = '1.19';
9177µs$VERSION = eval $VERSION;
# spent 10µs executing statements in string eval
1013µsour $AUTHORITY = 'cpan:STEVAN';
11
123636µs229.3ms
# spent 14.7ms (43µs+14.6) within Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@12 which was called: # once (43µs+14.6ms) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@19 at line 12
use Moose::Role;
13
14135µs118.0mswith 'Moose::Meta::Method::Accessor::Native::Reader' => {
# spent 18.0ms making 1 call to Moose::Role::with
15 -excludes => [
16 qw(
17 _minimum_arguments
18 _maximum_arguments
19 _inline_check_arguments
20 )
21 ]
22};
23
24sub _minimum_arguments { 1 }
25
26sub _maximum_arguments { 1 }
27
28sub _inline_check_arguments {
29 my $self = shift;
30
31 return $self->_inline_throw_error(
32 q{'The argument passed to join must be a string'})
33 . ' unless Moose::Util::_STRINGLIKE0( $_[0] );';
34}
35
36sub _return_value {
37 my $self = shift;
38 my $slot_access = shift;
39
40 return "join \$_[0], \@{ ($slot_access) }";
41}
42
433116µs21.54ms
# spent 792µs (46+747) within Moose::Meta::Method::Accessor::Native::Array::join::BEGIN@43 which was called: # once (46µs+747µs) by Moose::Meta::Attribute::Native::Trait::Array::BEGIN@19 at line 43
no Moose::Role;
44
45148µs1;