← Index
NYTProf Performance Profile   « block view • line view • sub view »
For ./testnewboardincnply
  Run on Mon Jan 12 21:52:27 2015
Reported on Mon Jan 12 22:01:18 2015

Filename/usr/share/perl/5.14/utf8.pm
StatementsExecuted 5 statements in 89µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1113.16ms3.29msutf8::::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
31400ns$utf8::hint_bits = 0x00800000;
4
51300nsour $VERSION = '1.09';
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 3.29ms (3.16+126µs) within utf8::AUTOLOAD which was called: # once (3.16ms+126µs) by main::BEGIN@12 at line 43 of NewBoard.pm
sub AUTOLOAD {
17284µs require "utf8_heavy.pl";
18113.2ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 13.2ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2314µs1;
24__END__