← 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:11 2016

Filename/usr/share/perl/5.18/utf8.pm
StatementsExecuted 5 statements in 89µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1112.79ms2.96msutf8::::AUTOLOADutf8::AUTOLOAD
0000s0sutf8::::importutf8::import
0000s0sutf8::::unimportutf8::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package utf8;
2
31300ns$utf8::hint_bits = 0x00800000;
4
51200nsour $VERSION = '1.10';
6
7sub import {
8 $^H |= $utf8::hint_bits;
9 $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 2.96ms (2.79+169µs) within utf8::AUTOLOAD which was called: # once (2.79ms+169µs) by PONAPI::Server::BEGIN@18 at line 10 of lib/PONAPI/Utils/Names.pm
sub AUTOLOAD {
17167µs require "utf8_heavy.pl";
1817µs17.80ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 7.80ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
23115µs1;
24__END__