| Filename | /usr/libdata/perl5/utf8.pm |
| Statements | Executed 4 statements in 17µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 4µs | 4µs | utf8::import |
| 0 | 0 | 0 | 0s | 0s | utf8::AUTOLOAD |
| 0 | 0 | 0 | 0s | 0s | utf8::unimport |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package utf8; | ||||
| 2 | |||||
| 3 | 1 | 800ns | $utf8::hint_bits = 0x00800000; | ||
| 4 | |||||
| 5 | 1 | 800ns | our $VERSION = '1.19'; | ||
| 6 | |||||
| 7 | # spent 4µs within utf8::import which was called:
# once (4µs+0s) by IO::Compress::Base::Common::BEGIN@114 at line 114 of IO/Compress/Base/Common.pm | ||||
| 8 | 1 | 10µs | $^H |= $utf8::hint_bits; | ||
| 9 | } | ||||
| 10 | |||||
| 11 | sub unimport { | ||||
| 12 | $^H &= ~$utf8::hint_bits; | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | sub AUTOLOAD { | ||||
| 16 | require "utf8_heavy.pl"; | ||||
| 17 | goto &$AUTOLOAD if defined &$AUTOLOAD; | ||||
| 18 | require Carp; | ||||
| 19 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
| 20 | } | ||||
| 21 | |||||
| 22 | 1 | 5µs | 1; | ||
| 23 | __END__ |