Filename | /usr/local/lib/perl5/5.32/utf8.pm |
Statements | Executed 0 statements in 0s |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 3µs | 3µs | encode (xsub) | utf8::
0 | 0 | 0 | 0s | 0s | 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 | $utf8::hint_bits = 0x00800000; | ||||
4 | |||||
5 | our $VERSION = '1.22'; | ||||
6 | |||||
7 | sub import { | ||||
8 | $^H |= $utf8::hint_bits; | ||||
9 | } | ||||
10 | |||||
11 | sub unimport { | ||||
12 | $^H &= ~$utf8::hint_bits; | ||||
13 | } | ||||
14 | |||||
15 | sub AUTOLOAD { | ||||
16 | goto &$AUTOLOAD if defined &$AUTOLOAD; | ||||
17 | require Carp; | ||||
18 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
19 | } | ||||
20 | |||||
21 | 1; | ||||
22 | __END__ | ||||
# spent 3µs within utf8::encode which was called:
# once (3µs+0s) by base::__ANON__[/usr/local/lib/perl5/5.32/base.pm:76] at line 74 of base.pm |