← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 10:04:38 2014
Reported on Tue Jun 24 10:05:07 2014

Filename/usr/local/lib/perl/5.14.2/Class/MOP/Method/Constructor.pm
StatementsExecuted 936 statements in 3.23ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
35221.04ms76.2msClass::MOP::Method::Constructor::::_generate_constructor_method_inlineClass::MOP::Method::Constructor::_generate_constructor_method_inline
3011454µs45.0msClass::MOP::Method::Constructor::::newClass::MOP::Method::Constructor::new
3011426µs426µsClass::MOP::Method::Constructor::::_newClass::MOP::Method::Constructor::_new
3011208µs44.1msClass::MOP::Method::Constructor::::_initialize_bodyClass::MOP::Method::Constructor::_initialize_body
3511175µs8.06msClass::MOP::Method::Constructor::::_eval_environmentClass::MOP::Method::Constructor::_eval_environment
11113µs16µsClass::MOP::Method::Constructor::::BEGIN@10Class::MOP::Method::Constructor::BEGIN@10
11110µs10µsClass::MOP::Method::Constructor::::BEGIN@3Class::MOP::Method::Constructor::BEGIN@3
1118µs57µsClass::MOP::Method::Constructor::::BEGIN@15Class::MOP::Method::Constructor::BEGIN@15
1118µs51µsClass::MOP::Method::Constructor::::BEGIN@14Class::MOP::Method::Constructor::BEGIN@14
1117µs12µsClass::MOP::Method::Constructor::::BEGIN@11Class::MOP::Method::Constructor::BEGIN@11
1117µs762µsClass::MOP::Method::Constructor::::BEGIN@17Class::MOP::Method::Constructor::BEGIN@17
1117µs36µsClass::MOP::Method::Constructor::::BEGIN@13Class::MOP::Method::Constructor::BEGIN@13
0000s0sClass::MOP::Method::Constructor::::__ANON__[:111]Class::MOP::Method::Constructor::__ANON__[:111]
0000s0sClass::MOP::Method::Constructor::::__ANON__[:115]Class::MOP::Method::Constructor::__ANON__[:115]
0000s0sClass::MOP::Method::Constructor::::__ANON__[:93]Class::MOP::Method::Constructor::__ANON__[:93]
0000s0sClass::MOP::Method::Constructor::::_generate_constructor_methodClass::MOP::Method::Constructor::_generate_constructor_method
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
2package Class::MOP::Method::Constructor;
3
# spent 10µs within Class::MOP::Method::Constructor::BEGIN@3 which was called: # once (10µs+0s) by Class::MOP::Class::BEGIN@16 at line 5
BEGIN {
415µs $Class::MOP::Method::Constructor::AUTHORITY = 'cpan:STEVAN';
5130µs110µs}
# spent 10µs making 1 call to Class::MOP::Method::Constructor::BEGIN@3
6{
721µs $Class::MOP::Method::Constructor::VERSION = '2.1005';
8}
9
10224µs219µs
# spent 16µs (13+3) within Class::MOP::Method::Constructor::BEGIN@10 which was called: # once (13µs+3µs) by Class::MOP::Class::BEGIN@16 at line 10
use strict;
# spent 16µs making 1 call to Class::MOP::Method::Constructor::BEGIN@10 # spent 3µs making 1 call to strict::import
11223µs218µs
# spent 12µs (7+5) within Class::MOP::Method::Constructor::BEGIN@11 which was called: # once (7µs+5µs) by Class::MOP::Class::BEGIN@16 at line 11
use warnings;
# spent 12µs making 1 call to Class::MOP::Method::Constructor::BEGIN@11 # spent 5µs making 1 call to warnings::import
12
13241µs265µs
# spent 36µs (7+29) within Class::MOP::Method::Constructor::BEGIN@13 which was called: # once (7µs+29µs) by Class::MOP::Class::BEGIN@16 at line 13
use Carp 'confess';
# spent 36µs making 1 call to Class::MOP::Method::Constructor::BEGIN@13 # spent 29µs making 1 call to Exporter::import
14225µs294µs
# spent 51µs (8+43) within Class::MOP::Method::Constructor::BEGIN@14 which was called: # once (8µs+43µs) by Class::MOP::Class::BEGIN@16 at line 14
use Scalar::Util 'blessed', 'weaken';
# spent 51µs making 1 call to Class::MOP::Method::Constructor::BEGIN@14 # spent 43µs making 1 call to Exporter::import
15226µs2107µs
# spent 57µs (8+49) within Class::MOP::Method::Constructor::BEGIN@15 which was called: # once (8µs+49µs) by Class::MOP::Class::BEGIN@16 at line 15
use Try::Tiny;
# spent 57µs making 1 call to Class::MOP::Method::Constructor::BEGIN@15 # spent 49µs making 1 call to Exporter::import
16
172452µs21.52ms
# spent 762µs (7+755) within Class::MOP::Method::Constructor::BEGIN@17 which was called: # once (7µs+755µs) by Class::MOP::Class::BEGIN@16 at line 17
use base 'Class::MOP::Method::Inlined';
# spent 762µs making 1 call to Class::MOP::Method::Constructor::BEGIN@17 # spent 755µs making 1 call to base::import
18
19
# spent 45.0ms (454µs+44.6) within Class::MOP::Method::Constructor::new which was called 30 times, avg 1.50ms/call: # 30 times (454µs+44.6ms) by Class::MOP::Class::_inline_constructor at line 1438 of Class/MOP/Class.pm, avg 1.50ms/call
sub new {
20240499µs my $class = shift;
21 my %options = @_;
22
236048µs (blessed $options{metaclass} && $options{metaclass}->isa('Class::MOP::Class'))
# spent 25µs making 30 calls to UNIVERSAL::isa, avg 823ns/call # spent 24µs making 30 calls to Scalar::Util::blessed, avg 787ns/call
24 || confess "You must pass a metaclass instance if you want to inline"
25 if $options{is_inline};
26
27 ($options{package_name} && $options{name})
28 || confess "You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT";
29
3030426µs my $self = $class->_new(\%options);
# spent 426µs making 30 calls to Class::MOP::Method::Constructor::_new, avg 14µs/call
31
32 # we don't want this creating
33 # a cycle in the code, if not
34 # needed
353031µs weaken($self->{'associated_metaclass'});
# spent 31µs making 30 calls to Scalar::Util::weaken, avg 1µs/call
36
373044.1ms $self->_initialize_body;
# spent 44.1ms making 30 calls to Class::MOP::Method::Constructor::_initialize_body, avg 1.47ms/call
38
39 return $self;
40}
41
42
# spent 426µs within Class::MOP::Method::Constructor::_new which was called 30 times, avg 14µs/call: # 30 times (426µs+0s) by Class::MOP::Method::Constructor::new at line 30, avg 14µs/call
sub _new {
43120457µs my $class = shift;
44
45 return Class::MOP::Class->initialize($class)->new_object(@_)
46 if $class ne __PACKAGE__;
47
48 my $params = @_ == 1 ? $_[0] : {@_};
49
50 return bless {
51 # inherited from Class::MOP::Method
52 body => $params->{body},
53 # associated_metaclass => $params->{associated_metaclass}, # overridden
54 package_name => $params->{package_name},
55 name => $params->{name},
56 original_method => $params->{original_method},
57
58 # inherited from Class::MOP::Generated
59 is_inline => $params->{is_inline} || 0,
60 definition_context => $params->{definition_context},
61
62 # inherited from Class::MOP::Inlined
63 _expected_method_class => $params->{_expected_method_class},
64
65 # defined in this subclass
66 options => $params->{options} || {},
67 associated_metaclass => $params->{metaclass},
68 }, $class;
69}
70
71## accessors
72
733582µssub options { (shift)->{'options'} }
7490192µssub associated_metaclass { (shift)->{'associated_metaclass'} }
75
76## method
77
78
# spent 44.1ms (208µs+43.9) within Class::MOP::Method::Constructor::_initialize_body which was called 30 times, avg 1.47ms/call: # 30 times (208µs+43.9ms) by Class::MOP::Method::Constructor::new at line 37, avg 1.47ms/call
sub _initialize_body {
79120225µs my $self = shift;
80 my $method_name = '_generate_constructor_method';
81
823022µs $method_name .= '_inline' if $self->is_inline;
# spent 22µs making 30 calls to Class::MOP::Method::Generated::is_inline, avg 720ns/call
83
843043.9ms $self->{'body'} = $self->$method_name;
# spent 43.9ms making 30 calls to Class::MOP::Method::Constructor::_generate_constructor_method_inline, avg 1.46ms/call
85}
86
87
# spent 8.06ms (175µs+7.89) within Class::MOP::Method::Constructor::_eval_environment which was called 35 times, avg 230µs/call: # 35 times (175µs+7.89ms) by Class::MOP::Method::Generated::_compile_code at line 59 of Class/MOP/Method/Generated.pm, avg 230µs/call
sub _eval_environment {
8870132µs my $self = shift;
89707.89ms return $self->associated_metaclass->_eval_environment;
# spent 5.03ms making 30 calls to Class::MOP::Class::_eval_environment, avg 168µs/call # spent 2.82ms making 5 calls to Moose::Meta::Class::_eval_environment, avg 565µs/call # spent 32µs making 30 calls to Class::MOP::Method::Constructor::associated_metaclass, avg 1µs/call # spent 10µs making 5 calls to Class::MOP::Method::associated_metaclass, avg 2µs/call
90}
91
92sub _generate_constructor_method {
93 return sub { Class::MOP::Class->initialize(shift)->new_object(@_) }
94}
95
96
# spent 76.2ms (1.04+75.1) within Class::MOP::Method::Constructor::_generate_constructor_method_inline which was called 35 times, avg 2.18ms/call: # 30 times (825µs+43.0ms) by Class::MOP::Method::Constructor::_initialize_body at line 84, avg 1.46ms/call # 5 times (219µs+32.1ms) by Moose::Meta::Method::Constructor::_initialize_body at line 57 of Moose/Meta/Method/Constructor.pm, avg 6.46ms/call
sub _generate_constructor_method_inline {
97210911µs my $self = shift;
98
993533µs my $meta = $self->associated_metaclass;
# spent 28µs making 30 calls to Class::MOP::Method::Constructor::associated_metaclass, avg 920ns/call # spent 6µs making 5 calls to Class::MOP::Method::associated_metaclass, avg 1µs/call
100
1013548.4ms my @source = (
# spent 48.4ms making 35 calls to Class::MOP::Class::_inline_new_object, avg 1.38ms/call
102 'sub {',
103 $meta->_inline_new_object,
104 '}',
105 );
106
1073547µs warn join("\n", @source) if $self->options->{debug};
# spent 47µs making 35 calls to Class::MOP::Method::Constructor::options, avg 1µs/call
108
109 my $code = try {
11035104µs3525.7ms $self->_compile_code(\@source);
# spent 25.7ms making 35 calls to Class::MOP::Method::Generated::_compile_code, avg 734µs/call
111 }
112 catch {
113 my $source = join("\n", @source);
114 confess "Could not eval the constructor :\n\n$source\n\nbecause :\n\n$_";
1157026.7ms };
# spent 26.6ms making 35 calls to Try::Tiny::try, avg 759µs/call # spent 111µs making 35 calls to Try::Tiny::catch, avg 3µs/call
116
117 return $code;
118}
119
12013µs1;
121
122# ABSTRACT: Method Meta Object for constructors
123
124__END__