← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:46 2015

Filename/usr/lib/x86_64-linux-gnu/perl/5.20/mro.pm
StatementsExecuted 8 statements in 465µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
20011225µs225µsmro::::method_changed_in mro::method_changed_in (xsub)
41171µs71µsmro::::set_mro mro::set_mro (xsub)
11156µs80µsmro::::BEGIN@10 mro::BEGIN@10
11119µs23µ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;
10252µs2104µs
# spent 80µs (56+24) within mro::BEGIN@10 which was called: # once (56µs+24µs) by Modern::Perl::BEGIN@12 at line 10
use strict;
# spent 80µs making 1 call to mro::BEGIN@10 # spent 24µs making 1 call to strict::import
112164µs226µs
# spent 23µs (19+4) within mro::BEGIN@11 which was called: # once (19µs+4µs) by Modern::Perl::BEGIN@12 at line 11
use warnings;
# spent 23µ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
151600nsour $VERSION = '1.16';
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
401600nsrequire XSLoader;
411242µs1231µsXSLoader::load('mro');
# spent 231µs making 1 call to XSLoader::load
42
4316µs1;
44
45__END__
 
# spent 225µs within mro::method_changed_in which was called 200 times, avg 1µs/call: # 200 times (225µs+0s) by constant::import at line 182 of constant.pm, avg 1µs/call
sub mro::method_changed_in; # xsub
# spent 71µs within mro::set_mro which was called 4 times, avg 18µs/call: # 4 times (71µs+0s) by Modern::Perl::import at line 44 of Modern/Perl.pm, avg 18µs/call
sub mro::set_mro; # xsub