← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Sun Aug 5 15:24:32 2012
Reported on Sun Aug 5 15:24:53 2012

Filename/usr/lib/perl5/5.12.4/utf8.pm
StatementsExecuted 11 statements in 212µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
44481µs81µ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
314µs$utf8::hint_bits = 0x00800000;
4
514µsour $VERSION = '1.08';
6
7
# spent 81µs within utf8::import which was called 4 times, avg 20µs/call: # once (23µs+0s) by DateTime::Locale::Catalog::BEGIN@19 at line 19 of DateTime/Locale/Catalog.pm # once (20µs+0s) by DateTime::Locale::en_US::BEGIN@23 at line 23 of DateTime/Locale/en_US.pm # once (19µs+0s) by DateTime::Locale::en::BEGIN@23 at line 23 of DateTime/Locale/en.pm # once (18µs+0s) by DateTime::Locale::root::BEGIN@23 at line 23 of DateTime/Locale/root.pm
sub import {
88164µs $^H |= $utf8::hint_bits;
9 $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16sub AUTOLOAD {
17 require "utf8_heavy.pl";
18 goto &$AUTOLOAD if defined &$AUTOLOAD;
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
23140µs1;
24__END__