← Index
NYTProf Performance Profile   « block view • line view • sub view »
For bin/dpath
  Run on Tue Jun 5 15:31:33 2012
Reported on Tue Jun 5 15:31:51 2012

Filename/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/utf8.pm
StatementsExecuted 5 statements in 325µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111.5ms12.0msutf8::::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
312µs$utf8::hint_bits = 0x00800000;
4
512µsour $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 12.0ms (11.5+542µs) within utf8::AUTOLOAD which was called: # once (11.5ms+542µs) by Safe::CORE:regcomp at line 70 of Safe.pm
sub AUTOLOAD {
171255µs require "utf8_heavy.pl";
18153µs1124ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 124ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
23114µs1;
24__END__