Filename | /usr/share/perl5/bytes.pm |
Statements | Executed 13 statements in 83µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
7 | 7 | 7 | 29µs | 29µs | import | bytes::
3 | 3 | 3 | 10µs | 10µs | unimport | bytes::
0 | 0 | 0 | 0s | 0s | AUTOLOAD | bytes::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package bytes; | ||||
2 | |||||
3 | 1 | 400ns | our $VERSION = '1.04'; | ||
4 | |||||
5 | 1 | 300ns | $bytes::hint_bits = 0x00000008; | ||
6 | |||||
7 | # spent 29µs within bytes::import which was called 7 times, avg 4µs/call:
# once (6µs+0s) by Foswiki::Plugins::WysiwygPlugin::Handlers::BEGIN@693 at line 693 of /var/www/foswiki11/lib/Foswiki/Plugins/WysiwygPlugin/Handlers.pm
# once (6µs+0s) by Data::Dumper::BEGIN@721 at line 721 of Data/Dumper.pm
# once (5µs+0s) by Foswiki::Render::BEGIN@1795 at line 1795 of /var/www/foswiki11/lib/Foswiki/Render.pm
# once (4µs+0s) by Encode::utf8::BEGIN@325 at line 325 of Encode.pm
# once (3µs+0s) by Foswiki::Prefs::Stack::BEGIN@28 at line 28 of /var/www/foswiki11/lib/Foswiki/Prefs/Stack.pm
# once (2µs+0s) by Foswiki::Users::TopicUserMapping::BEGIN@213 at line 213 of /var/www/foswiki11/lib/Foswiki/Users/TopicUserMapping.pm
# once (2µs+0s) by Foswiki::Users::BEGIN@406 at line 406 of /var/www/foswiki11/lib/Foswiki/Users.pm | ||||
8 | 7 | 54µs | $^H |= $bytes::hint_bits; | ||
9 | } | ||||
10 | |||||
11 | # spent 10µs within bytes::unimport which was called 3 times, avg 3µs/call:
# once (5µs+0s) by Foswiki::Render::BEGIN@1797 at line 1797 of /var/www/foswiki11/lib/Foswiki/Render.pm
# once (2µs+0s) by Foswiki::Users::TopicUserMapping::BEGIN@218 at line 218 of /var/www/foswiki11/lib/Foswiki/Users/TopicUserMapping.pm
# once (2µs+0s) by Foswiki::Users::BEGIN@408 at line 408 of /var/www/foswiki11/lib/Foswiki/Users.pm | ||||
12 | 3 | 20µs | $^H &= ~$bytes::hint_bits; | ||
13 | } | ||||
14 | |||||
15 | sub AUTOLOAD { | ||||
16 | require "bytes_heavy.pl"; | ||||
17 | goto &$AUTOLOAD if defined &$AUTOLOAD; | ||||
18 | require Carp; | ||||
19 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
20 | } | ||||
21 | |||||
22 | sub length (_); | ||||
23 | sub chr (_); | ||||
24 | sub ord (_); | ||||
25 | sub substr ($$;$$); | ||||
26 | sub index ($$;$); | ||||
27 | sub rindex ($$;$); | ||||
28 | |||||
29 | 1 | 8µs | 1; | ||
30 | __END__ |