← Index
Performance Profile   « block view • line view • sub view »
For t/test-parsing
  Run on Sun Nov 14 09:49:57 2010
Reported on Sun Nov 14 09:50:10 2010

File /usr/share/perl/5.10/utf8.pm
Statements Executed 5
Total Time 1.02e-05 seconds
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs12µsutf8::::importutf8::import
0000s0sutf8::::AUTOLOADutf8::AUTOLOAD
0000s0sutf8::::unimportutf8::unimport
LineStmts.Exclusive
Time
Avg.Code
1package utf8;
2
31700ns700ns$utf8::hint_bits = 0x00800000;
4
51600ns600nsour $VERSION = '1.07';
6
7
# spent 12µs within utf8::import which was called # once (12µs+0s) by XML::Simple::BEGIN or XML::Simple::numeric_escape at line 1687 of /usr/share/perl5/XML/Simple.pm
sub import {
812µs2µs $^H |= $utf8::hint_bits;
912µs2µs $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
2315µs5µs1;
24__END__
25