← Index
NYTProf Performance Profile   « line view »
For -e
  Run on Thu Jun 30 16:34:56 2016
Reported on Thu Jun 30 16:35:08 2016

Filename/home/s1/perl5/perlbrew/perls/perl-5.22.1/lib/5.22.1/utf8.pm
StatementsExecuted 4 statements in 11µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
3113µs3µsutf8::::encodeutf8::encode (xsub)
1113µs3µsutf8::::importutf8::import
0000s0sutf8::::AUTOLOADutf8::AUTOLOAD
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.17';
6
7
# spent 3µs within utf8::import which was called: # once (3µs+0s) by Class::Inspector::BEGIN@51 at line 1 of (eval 5)[Class/Inspector.pm:59]
sub import {
817µs $^H |= $utf8::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$utf8::hint_bits;
13}
14
15sub AUTOLOAD {
16 require "utf8_heavy.pl";
17 goto &$AUTOLOAD if defined &$AUTOLOAD;
18 require Carp;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
20}
21
2213µs1;
23__END__
 
# spent 3µs within utf8::encode which was called 3 times, avg 1µs/call: # 3 times (3µs+0s) by base::__ANON__[/home/s1/perl5/perlbrew/perls/perl-5.22.1/lib/site_perl/5.22.1/base.pm:72] at line 70 of base.pm, avg 1µs/call
sub utf8::encode; # xsub