← Index
NYTProf Performance Profile   « line view »
For /Users/brian/bin/perls/cpan5.26.1
  Run on Sat Dec 30 01:41:10 2017
Reported on Sat Dec 30 01:44:15 2017

Filename/usr/local/perls/perl-5.26.1/lib/5.26.1/utf8.pm
StatementsExecuted 1 statements in 10µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs10µsutf8::::importutf8::import
2115µs5µsutf8::::downgradeutf8::downgrade (xsub)
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
3$utf8::hint_bits = 0x00800000;
4
5our $VERSION = '1.19';
6
7
# spent 10µs within utf8::import which was called: # once (10µs+0s) by IO::Compress::Base::Common::BEGIN@114 at line 114 of IO/Compress/Base/Common.pm
sub import {
8110µ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
221;
23__END__
 
# spent 5µs within utf8::downgrade which was called 2 times, avg 2µs/call: # 2 times (5µs+0s) by URI::_uric_escape at line 94 of URI.pm, avg 2µs/call
sub utf8::downgrade; # xsub