| Filename | /usr/lib/x86_64-linux-gnu/perl/5.28/Digest/MD5.pm |
| Statements | Executed 18 statements in 883µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 13µs | 15µs | Digest::MD5::BEGIN@3 |
| 1 | 1 | 1 | 5µs | 40µ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 | 18µs | # spent 15µs (13+2) within Digest::MD5::BEGIN@3 which was called:
# once (13µs+2µs) by RBM::BEGIN@22 at line 3 # spent 15µs making 1 call to Digest::MD5::BEGIN@3
# spent 2µs making 1 call to strict::import |
| 4 | 2 | 168µs | 2 | 75µs | # spent 40µs (5+35) within Digest::MD5::BEGIN@4 which was called:
# once (5µs+35µs) by RBM::BEGIN@22 at line 4 # spent 40µs making 1 call to Digest::MD5::BEGIN@4
# spent 35µs making 1 call to vars::import |
| 5 | |||||
| 6 | 1 | 400ns | $VERSION = '2.55'; | ||
| 7 | |||||
| 8 | 1 | 200ns | require Exporter; | ||
| 9 | 1 | 1µs | *import = \&Exporter::import; | ||
| 10 | 1 | 800ns | @EXPORT_OK = qw(md5 md5_hex md5_base64); | ||
| 11 | |||||
| 12 | 1 | 300ns | eval { | ||
| 13 | 1 | 200ns | require Digest::base; | ||
| 14 | 1 | 5µs | push(@ISA, 'Digest::base'); | ||
| 15 | }; | ||||
| 16 | 1 | 100ns | if ($@) { | ||
| 17 | my $err = $@; | ||||
| 18 | *add_bits = sub { die $err }; | ||||
| 19 | } | ||||
| 20 | |||||
| 21 | |||||
| 22 | 1 | 300ns | eval { | ||
| 23 | 1 | 300ns | require XSLoader; | ||
| 24 | 1 | 668µs | 1 | 661µs | XSLoader::load('Digest::MD5', $VERSION); # spent 661µs making 1 call to XSLoader::load |
| 25 | }; | ||||
| 26 | 1 | 400ns | 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 | unshift(@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 | 900ns | *reset = \&new; | ||
| 42 | } | ||||
| 43 | |||||
| 44 | 1 | 13µs | 1; | ||
| 45 | __END__ |