Filename | /home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/utf8.pm |
Statements | Executed 5 statements in 325µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 11.5ms | 12.0ms | AUTOLOAD | utf8::
0 | 0 | 0 | 0s | 0s | import | utf8::
0 | 0 | 0 | 0s | 0s | unimport | utf8::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package utf8; | ||||
2 | |||||
3 | 1 | 2µs | $utf8::hint_bits = 0x00800000; | ||
4 | |||||
5 | 1 | 2µs | our $VERSION = '1.09'; | ||
6 | |||||
7 | sub import { | ||||
8 | $^H |= $utf8::hint_bits; | ||||
9 | $enc{caller()} = $_[1] if $_[1]; | ||||
10 | } | ||||
11 | |||||
12 | sub unimport { | ||||
13 | $^H &= ~$utf8::hint_bits; | ||||
14 | } | ||||
15 | |||||
16 | # spent 12.0ms (11.5+542µs) within utf8::AUTOLOAD which was called:
# once (11.5ms+542µs) by Safe::CORE:regcomp at line 70 of Safe.pm | ||||
17 | 1 | 255µs | require "utf8_heavy.pl"; | ||
18 | 1 | 53µs | 1 | 124ms | goto &$AUTOLOAD if defined &$AUTOLOAD; # spent 124ms making 1 call to utf8::SWASHNEW |
19 | require Carp; | ||||
20 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
21 | } | ||||
22 | |||||
23 | 1 | 14µs | 1; | ||
24 | __END__ |