Filename | /opt/perl-5.18.1/lib/5.18.1/darwin-thread-multi-2level/mro.pm |
Statements | Executed 8 statements in 498µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
310 | 2 | 2 | 688µs | 688µs | get_linear_isa (xsub) | mro::
403 | 2 | 1 | 619µs | 619µs | get_pkg_gen (xsub) | mro::
1 | 1 | 1 | 15µs | 33µs | BEGIN@10 | mro::
6 | 1 | 1 | 10µs | 10µs | method_changed_in (xsub) | mro::
1 | 1 | 1 | 9µs | 14µs | BEGIN@11 | mro::
0 | 0 | 0 | 0s | 0s | method | maybe::next::
0 | 0 | 0 | 0s | 0s | import | mro::
0 | 0 | 0 | 0s | 0s | can | next::
0 | 0 | 0 | 0s | 0s | method | next::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # mro.pm | ||||
2 | # | ||||
3 | # Copyright (c) 2007 Brandon L Black | ||||
4 | # Copyright (c) 2008,2009 Larry Wall and others | ||||
5 | # | ||||
6 | # You may distribute under the terms of either the GNU General Public | ||||
7 | # License or the Artistic License, as specified in the README file. | ||||
8 | # | ||||
9 | package mro; | ||||
10 | 2 | 32µs | 2 | 50µs | # spent 33µs (15+18) within mro::BEGIN@10 which was called:
# once (15µs+18µs) by Mouse::Util::BEGIN@22 at line 10 # spent 33µs making 1 call to mro::BEGIN@10
# spent 18µs making 1 call to strict::import |
11 | 2 | 232µs | 2 | 20µs | # spent 14µs (9+5) within mro::BEGIN@11 which was called:
# once (9µs+5µs) by Mouse::Util::BEGIN@22 at line 11 # spent 14µs making 1 call to mro::BEGIN@11
# spent 5µs making 1 call to warnings::import |
12 | |||||
13 | # mro.pm versions < 1.00 reserved for MRO::Compat | ||||
14 | # for partial back-compat to 5.[68].x | ||||
15 | 1 | 700ns | our $VERSION = '1.11'; | ||
16 | |||||
17 | sub import { | ||||
18 | mro::set_mro(scalar(caller), $_[1]) if $_[1]; | ||||
19 | } | ||||
20 | |||||
21 | package # hide me from PAUSE | ||||
22 | next; | ||||
23 | |||||
24 | sub can { mro::_nextcan($_[0], 0) } | ||||
25 | |||||
26 | sub method { | ||||
27 | my $method = mro::_nextcan($_[0], 1); | ||||
28 | goto &$method; | ||||
29 | } | ||||
30 | |||||
31 | package # hide me from PAUSE | ||||
32 | maybe::next; | ||||
33 | |||||
34 | sub method { | ||||
35 | my $method = mro::_nextcan($_[0], 0); | ||||
36 | goto &$method if defined $method; | ||||
37 | return; | ||||
38 | } | ||||
39 | |||||
40 | 1 | 400ns | require XSLoader; | ||
41 | 1 | 228µs | 1 | 218µs | XSLoader::load('mro'); # spent 218µs making 1 call to XSLoader::load |
42 | |||||
43 | 1 | 6µs | 1; | ||
44 | |||||
45 | __END__ | ||||
# spent 688µs within mro::get_linear_isa which was called 310 times, avg 2µs/call:
# 309 times (684µs+0s) by Class::MOP::Class::linearized_isa at line 999 of Class/MOP/Class.pm, avg 2µs/call
# once (4µs+0s) by Moose::init_meta at line 183 of Moose.pm | |||||
# spent 619µs within mro::get_pkg_gen which was called 403 times, avg 2µs/call:
# 386 times (598µs+0s) by Class::MOP::Mixin::HasMethods::update_package_cache_flag at line 194 of Class/MOP/Mixin/HasMethods.pm, avg 2µs/call
# 17 times (22µs+0s) by Class::MOP::Mixin::HasMethods::_full_method_map at line 200 of Class/MOP/Mixin/HasMethods.pm, avg 1µs/call | |||||
# spent 10µs within mro::method_changed_in which was called 6 times, avg 2µs/call:
# 6 times (10µs+0s) by constant::import at line 151 of constant.pm, avg 2µs/call |