← Index
NYTProf Performance Profile   « line view »
For /usr/sbin/pkg_info
  Run on Fri Aug 4 10:12:01 2017
Reported on Fri Aug 4 10:12:17 2017

Filename/usr/libdata/perl5/utf8.pm
StatementsExecuted 4 statements in 26µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1117µs7µ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
311µs$utf8::hint_bits = 0x00800000;
4
511µsour $VERSION = '1.19';
6
7
# spent 7µs within utf8::import which was called: # once (7µs+0s) by IO::Compress::Base::Common::BEGIN@114 at line 114 of IO/Compress/Base/Common.pm
sub import {
8116µ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
2218µs1;
23__END__