← Index
NYTProf Performance Profile   « line view »
For flows_to_es.pl
  Run on Mon May 9 23:27:59 2016
Reported on Mon May 9 23:28:08 2016

Filename/usr/lib/perl/5.18/mro.pm
StatementsExecuted 8 statements in 379µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
161123µs23µsmro::::method_changed_in mro::method_changed_in (xsub)
82220µs20µsmro::::get_linear_isa mro::get_linear_isa (xsub)
11113µs27µsmro::::BEGIN@10 mro::BEGIN@10
11110µs14µ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;
10228µs242µs
# spent 27µs (13+14) within mro::BEGIN@10 which was called: # once (13µs+14µs) by Moo::_Utils::BEGIN@16 at line 10
use strict;
# spent 27µs making 1 call to mro::BEGIN@10 # spent 14µs making 1 call to strict::import
112213µs219µs
# spent 14µs (10+5) within mro::BEGIN@11 which was called: # once (10µs+5µs) by Moo::_Utils::BEGIN@16 at line 11
use warnings;
# 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
151700nsour $VERSION = '1.11';
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
401500nsrequire XSLoader;
411133µs1125µsXSLoader::load('mro');
# spent 125µs making 1 call to XSLoader::load
42
4314µs1;
44
45__END__
 
# spent 20µs within mro::get_linear_isa which was called 8 times, avg 2µs/call: # 6 times (9µs+0s) by Role::Tiny::does_role at line 413 of Role/Tiny.pm, avg 1µs/call # 2 times (11µs+0s) by Moo::_Utils::_get_linear_isa at line 79 of Moo/_Utils.pm, avg 6µs/call
sub mro::get_linear_isa; # xsub
# spent 23µs within mro::method_changed_in which was called 16 times, avg 1µs/call: # 16 times (23µs+0s) by constant::import at line 151 of constant.pm, avg 1µs/call
sub mro::method_changed_in; # xsub