← 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:28 2014

Filename/usr/lib/perl/5.14/mro.pm
StatementsExecuted 8 statements in 308µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
44022836µs836µsmro::::get_linear_isa mro::get_linear_isa (xsub)
52121690µs690µsmro::::get_pkg_gen mro::get_pkg_gen (xsub)
10411140µs140µsmro::::method_changed_in mro::method_changed_in (xsub)
11112µs15µsmro::::BEGIN@10 mro::BEGIN@10
11111µs15µsmro::::BEGIN@11 mro::BEGIN@11
0000s0smaybe::next::::methodmaybe::next::method
0000s0smro::::import mro::import
0000s0snext::::can next::can
0000s0snext::::method next::method
Call graph for these subroutines as a Graphviz dot language file.
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#
9package mro;
10220µs218µs
# spent 15µs (12+3) within mro::BEGIN@10 which was called: # once (12µs+3µs) by MRO::Compat::BEGIN@10 at line 10
use strict;
# spent 15µs making 1 call to mro::BEGIN@10 # spent 3µs making 1 call to strict::import
112148µs220µs
# spent 15µs (11+4) within mro::BEGIN@11 which was called: # once (11µs+4µs) by MRO::Compat::BEGIN@10 at line 11
use warnings;
# spent 15µs making 1 call to mro::BEGIN@11 # spent 4µ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
151500nsour $VERSION = '1.07';
16
17sub import {
18 mro::set_mro(scalar(caller), $_[1]) if $_[1];
19}
20
21package # hide me from PAUSE
22 next;
23
24sub can { mro::_nextcan($_[0], 0) }
25
26sub method {
27 my $method = mro::_nextcan($_[0], 1);
28 goto &$method;
29}
30
31package # hide me from PAUSE
32 maybe::next;
33
34sub method {
35 my $method = mro::_nextcan($_[0], 0);
36 goto &$method if defined $method;
37 return;
38}
39
401300nsrequire XSLoader;
411134µs1128µsXSLoader::load('mro');
# spent 128µs making 1 call to XSLoader::load
42
4314µs1;
44
45__END__
 
# spent 836µs within mro::get_linear_isa which was called 440 times, avg 2µs/call: # 429 times (802µs+0s) by Class::MOP::Class::linearized_isa at line 999 of Class/MOP/Class.pm, avg 2µs/call # 11 times (34µs+0s) by Moose::init_meta at line 183 of Moose.pm, avg 3µs/call
sub mro::get_linear_isa; # xsub
# spent 690µs within mro::get_pkg_gen which was called 521 times, avg 1µs/call: # 501 times (667µs+0s) by Class::MOP::Mixin::HasMethods::update_package_cache_flag at line 194 of Class/MOP/Mixin/HasMethods.pm, avg 1µs/call # 20 times (23µs+0s) by Class::MOP::Mixin::HasMethods::_full_method_map at line 200 of Class/MOP/Mixin/HasMethods.pm, avg 1µs/call
sub mro::get_pkg_gen; # xsub
# spent 140µs within mro::method_changed_in which was called 104 times, avg 1µs/call: # 104 times (140µs+0s) by constant::import at line 147 of constant.pm, avg 1µs/call
sub mro::method_changed_in; # xsub