← Index
NYTProf Performance Profile   « line view »
For script/ponapi
  Run on Wed Feb 10 15:51:26 2016
Reported on Thu Feb 11 09:43:12 2016

Filename/usr/share/perl/5.18/PerlIO.pm
StatementsExecuted 10 statements in 54µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111282µs572µsPerlIO::::importPerlIO::import
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package PerlIO;
2
31700nsour $VERSION = '1.07';
4
5# Map layer name to package that defines it
61900nsour %alias;
7
8sub import
9
# spent 572µs (282+290) within PerlIO::import which was called: # once (282µs+290µs) by HTTP::Server::PSGI::BEGIN@166 at line 166 of HTTP/Server/PSGI.pm
{
1012µs my $class = shift;
1118µs while (@_)
12 {
131300ns my $layer = shift;
1411µs if (exists $alias{$layer})
15 {
16 $layer = $alias{$layer}
17 }
18 else
19 {
2011µs $layer = "${class}::$layer";
21 }
22132µs eval "require $layer";
# spent 203µs executing statements in string eval
2312µs warn $@ if $@;
24 }
25}
26
27sub F_UTF8 () { 0x8000 }
28
2916µs1;
30__END__