← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 22:00:36 2010
Reported on Wed Nov 17 22:10:12 2010

Filename/home/doy/coding/src/Moose/blib/lib//Moose/Meta/Method/Accessor/Native/Bool/set.pm
StatementsExecuted 22 statements in 1.16ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11178µs97µsMoose::Meta::Method::Accessor::Native::Bool::set::::BEGIN@3Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@3
11147µs13.8msMoose::Meta::Method::Accessor::Native::Bool::set::::BEGIN@10Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@10
11145µs766µsMoose::Meta::Method::Accessor::Native::Bool::set::::BEGIN@32Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@32
11140µs108µsMoose::Meta::Method::Accessor::Native::Bool::set::::BEGIN@4Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@4
11121µs21µsMoose::Meta::Method::Accessor::Native::Bool::set::::_inline_optimized_set_new_valueMoose::Meta::Method::Accessor::Native::Bool::set::_inline_optimized_set_new_value
1119µs9µsMoose::Meta::Method::Accessor::Native::Bool::set::::_potential_valueMoose::Meta::Method::Accessor::Native::Bool::set::_potential_value
1119µs9µsMoose::Meta::Method::Accessor::Native::Bool::set::::_maximum_argumentsMoose::Meta::Method::Accessor::Native::Bool::set::_maximum_arguments
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::Bool::set;
2
33103µs2115µs
# spent 97µs (78+19) within Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@3 which was called: # once (78µs+19µs) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 3
use strict;
# spent 97µs making 1 call to Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@3 # spent 18µs making 1 call to strict::import
43266µs2176µs
# spent 108µs (40+68) within Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@4 which was called: # once (40µs+68µs) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 4
use warnings;
# spent 108µs making 1 call to Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@4 # spent 68µs making 1 call to warnings::import
5
614µsour $VERSION = '1.19';
7176µs$VERSION = eval $VERSION;
# spent 12µs executing statements in string eval
815µsour $AUTHORITY = 'cpan:STEVAN';
9
103450µs227.7ms
# spent 13.8ms (47µs+13.8) within Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@10 which was called: # once (47µs+13.8ms) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 10
use Moose::Role;
11
12139µs122.4mswith 'Moose::Meta::Method::Accessor::Native::Writer' => {
# spent 22.4ms making 1 call to Moose::Role::with
13 -excludes => [
14 qw(
15 _maximum_arguments
16 _inline_optimized_set_new_value
17 )
18 ]
19 };
20
21116µs
# spent 9µs within Moose::Meta::Method::Accessor::Native::Bool::set::_maximum_arguments which was called: # once (9µs+0s) by Moose::Meta::Method::Accessor::Native::_inline_check_argument_count at line 79 of Moose/Meta/Method/Accessor/Native.pm
sub _maximum_arguments { 0 }
22
23119µs
# spent 9µs within Moose::Meta::Method::Accessor::Native::Bool::set::_potential_value which was called: # once (9µs+0s) by Moose::Meta::Method::Accessor::Native::Writer::_inline_writer_core at line 37 of Moose/Meta/Method/Accessor/Native/Writer.pm
sub _potential_value { 1 }
24
25
# spent 21µs within Moose::Meta::Method::Accessor::Native::Bool::set::_inline_optimized_set_new_value which was called: # once (21µs+0s) by Moose::Meta::Method::Accessor::Native::Writer::_inline_set_new_value at line 155 of Moose/Meta/Method/Accessor/Native/Writer.pm
sub _inline_optimized_set_new_value {
26331µs my $self = shift;
27 my ($inv, $new, $slot_access) = @_;
28
29 return $slot_access . ' = 1;';
30}
31
323108µs21.49ms
# spent 766µs (45+721) within Moose::Meta::Method::Accessor::Native::Bool::set::BEGIN@32 which was called: # once (45µs+721µs) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 32
no Moose::Role;
33
34144µs1;