Filename | /usr/share/perl5/Moo/Object.pm |
Statements | Executed 28 statements in 728µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
2 | 1 | 1 | 26µs | 32µs | new | Moo::Object::
1 | 1 | 1 | 16µs | 49µs | BEGIN@3 | Moo::Object::
1 | 1 | 1 | 11µs | 22µs | BEGIN@69 | Moo::Object::
1 | 1 | 1 | 5µs | 5µs | BUILDARGS | Moo::Object::
0 | 0 | 0 | 0s | 0s | BUILDALL | Moo::Object::
0 | 0 | 0 | 0s | 0s | DEMOLISHALL | Moo::Object::
0 | 0 | 0 | 0s | 0s | does | Moo::Object::
0 | 0 | 0 | 0s | 0s | meta | Moo::Object::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package Moo::Object; | ||||
2 | |||||
3 | 3 | 569µs | 3 | 82µs | # spent 49µs (16+33) within Moo::Object::BEGIN@3 which was called:
# once (16µs+33µs) by DBIx::Class::Storage::BlockRunner::BEGIN@16 at line 3 # spent 49µs making 1 call to Moo::Object::BEGIN@3
# spent 19µs making 1 call to strictures::import
# spent 13µs making 1 call to strictures::VERSION |
4 | |||||
5 | 1 | 300ns | our %NO_BUILD; | ||
6 | 1 | 100ns | our %NO_DEMOLISH; | ||
7 | 1 | 100ns | our $BUILD_MAKER; | ||
8 | 1 | 100ns | our $DEMOLISH_MAKER; | ||
9 | |||||
10 | # spent 32µs (26+6) within Moo::Object::new which was called 2 times, avg 16µs/call:
# 2 times (26µs+6µs) by Moo::_accessor_maker_for at line 143 of Moo.pm, avg 16µs/call | ||||
11 | 3 | 900ns | my $class = shift; | ||
12 | 3 | 2µs | unless (exists $NO_DEMOLISH{$class}) { | ||
13 | 2 | 22µs | 2 | 5µs | unless ($NO_DEMOLISH{$class} = !$class->can('DEMOLISH')) { # spent 5µs making 2 calls to UNIVERSAL::can, avg 2µs/call |
14 | ($DEMOLISH_MAKER ||= do { | ||||
15 | require Method::Generate::DemolishAll; | ||||
16 | Method::Generate::DemolishAll->new | ||||
17 | })->generate_method($class); | ||||
18 | } | ||||
19 | } | ||||
20 | $NO_BUILD{$class} and | ||||
21 | 3 | 5µs | return bless({ ref($_[0]) eq 'HASH' ? %{$_[0]} : @_ }, $class); | ||
22 | 2 | 11µs | 2 | 4µs | $NO_BUILD{$class} = !$class->can('BUILD') unless exists $NO_BUILD{$class}; # spent 4µs making 2 calls to UNIVERSAL::can, avg 2µs/call |
23 | $NO_BUILD{$class} | ||||
24 | ? bless({ ref($_[0]) eq 'HASH' ? %{$_[0]} : @_ }, $class) | ||||
25 | 2 | 8µs | : do { | ||
26 | my $proto = ref($_[0]) eq 'HASH' ? $_[0] : { @_ }; | ||||
27 | bless({ %$proto }, $class)->BUILDALL($proto); | ||||
28 | }; | ||||
29 | } | ||||
30 | |||||
31 | # Inlined into Method::Generate::Constructor::_generate_args() - keep in sync | ||||
32 | # spent 5µs within Moo::Object::BUILDARGS which was called:
# once (5µs+0s) by Method::Generate::Constructor::new at line 206 of Method/Generate/Constructor.pm | ||||
33 | 1 | 300ns | my $class = shift; | ||
34 | 1 | 1µs | if ( scalar @_ == 1 ) { | ||
35 | unless ( defined $_[0] && ref $_[0] eq 'HASH' ) { | ||||
36 | die "Single parameters to new() must be a HASH ref" | ||||
37 | ." data => ". $_[0] ."\n"; | ||||
38 | } | ||||
39 | return { %{ $_[0] } }; | ||||
40 | } | ||||
41 | elsif ( @_ % 2 ) { | ||||
42 | die "The new() method for $class expects a hash reference or a" | ||||
43 | . " key/value list. You passed an odd number of arguments\n"; | ||||
44 | } | ||||
45 | else { | ||||
46 | 1 | 6µs | return {@_}; | ||
47 | } | ||||
48 | } | ||||
49 | |||||
50 | sub BUILDALL { | ||||
51 | my $self = shift; | ||||
52 | $self->${\(($BUILD_MAKER ||= do { | ||||
53 | require Method::Generate::BuildAll; | ||||
54 | Method::Generate::BuildAll->new | ||||
55 | })->generate_method(ref($self)))}(@_); | ||||
56 | } | ||||
57 | |||||
58 | sub DEMOLISHALL { | ||||
59 | my $self = shift; | ||||
60 | $self->${\(($DEMOLISH_MAKER ||= do { | ||||
61 | require Method::Generate::DemolishAll; | ||||
62 | Method::Generate::DemolishAll->new | ||||
63 | })->generate_method(ref($self)))}(@_); | ||||
64 | } | ||||
65 | |||||
66 | sub does { | ||||
67 | require Moo::Role; | ||||
68 | my $does = Moo::Role->can("does_role"); | ||||
69 | 2 | 99µs | 2 | 32µs | # spent 22µs (11+11) within Moo::Object::BEGIN@69 which was called:
# once (11µs+11µs) by DBIx::Class::Storage::BlockRunner::BEGIN@16 at line 69 # spent 22µs making 1 call to Moo::Object::BEGIN@69
# spent 10µs making 1 call to warnings::unimport |
70 | goto &$does; | ||||
71 | } | ||||
72 | |||||
73 | # duplicated in Moo::Role | ||||
74 | sub meta { | ||||
75 | require Moo::HandleMoose::FakeMetaClass; | ||||
76 | my $class = ref($_[0])||$_[0]; | ||||
77 | bless({ name => $class }, 'Moo::HandleMoose::FakeMetaClass'); | ||||
78 | } | ||||
79 | |||||
80 | 1 | 3µs | 1; |