| Filename | /home/ss5/perl5/perlbrew/perls/tapper-perl/lib/5.16.3/x86_64-linux/Digest/MD5.pm |
| Statements | Executed 18 statements in 566µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 17µs | 39µs | Digest::MD5::BEGIN@3 |
| 1 | 1 | 1 | 8µs | 63µs | Digest::MD5::BEGIN@4 |
| 0 | 0 | 0 | 0s | 0s | Digest::MD5::__ANON__[:18] |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package Digest::MD5; | ||||
| 2 | |||||
| 3 | 2 | 25µs | 2 | 62µs | # spent 39µs (17+22) within Digest::MD5::BEGIN@3 which was called:
# once (17µs+22µs) by Data::Structure::Util::BEGIN@9 at line 3 # spent 39µs making 1 call to Digest::MD5::BEGIN@3
# spent 22µs making 1 call to strict::import |
| 4 | 2 | 248µs | 2 | 118µs | # spent 63µs (8+55) within Digest::MD5::BEGIN@4 which was called:
# once (8µs+55µs) by Data::Structure::Util::BEGIN@9 at line 4 # spent 63µs making 1 call to Digest::MD5::BEGIN@4
# spent 55µs making 1 call to vars::import |
| 5 | |||||
| 6 | 1 | 800ns | $VERSION = '2.51'; | ||
| 7 | |||||
| 8 | 1 | 900ns | require Exporter; | ||
| 9 | 1 | 2µs | *import = \&Exporter::import; | ||
| 10 | 1 | 1µs | @EXPORT_OK = qw(md5 md5_hex md5_base64); | ||
| 11 | |||||
| 12 | 1 | 500ns | eval { | ||
| 13 | 1 | 79µs | require Digest::base; | ||
| 14 | 1 | 9µs | push(@ISA, 'Digest::base'); | ||
| 15 | }; | ||||
| 16 | 1 | 300ns | if ($@) { | ||
| 17 | my $err = $@; | ||||
| 18 | *add_bits = sub { die $err }; | ||||
| 19 | } | ||||
| 20 | |||||
| 21 | |||||
| 22 | 1 | 2µs | eval { | ||
| 23 | 1 | 600ns | require XSLoader; | ||
| 24 | 1 | 185µs | 1 | 179µs | XSLoader::load('Digest::MD5', $VERSION); # spent 179µs making 1 call to XSLoader::load |
| 25 | }; | ||||
| 26 | 1 | 500ns | if ($@) { | ||
| 27 | my $olderr = $@; | ||||
| 28 | eval { | ||||
| 29 | # Try to load the pure perl version | ||||
| 30 | require Digest::Perl::MD5; | ||||
| 31 | |||||
| 32 | Digest::Perl::MD5->import(qw(md5 md5_hex md5_base64)); | ||||
| 33 | push(@ISA, "Digest::Perl::MD5"); # make OO interface work | ||||
| 34 | }; | ||||
| 35 | if ($@) { | ||||
| 36 | # restore the original error | ||||
| 37 | die $olderr; | ||||
| 38 | } | ||||
| 39 | } | ||||
| 40 | else { | ||||
| 41 | 1 | 1µs | *reset = \&new; | ||
| 42 | } | ||||
| 43 | |||||
| 44 | 1 | 10µs | 1; | ||
| 45 | __END__ |