← Index
NYTProf Performance Profile   « line view »
For index.cgi
  Run on Sat May 9 17:18:47 2020
Reported on Sat May 9 17:19:07 2020

Filename/usr/local/lib/perl/5.18.2/Digest/MD5.pm
StatementsExecuted 18 statements in 656µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs31µsDigest::MD5::::BEGIN@3Digest::MD5::BEGIN@3
1119µs66µsDigest::MD5::::BEGIN@4Digest::MD5::BEGIN@4
0000s0sDigest::MD5::::__ANON__[:18]Digest::MD5::__ANON__[:18]
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Digest::MD5;
2
3234µs248µs
# spent 31µs (14+17) within Digest::MD5::BEGIN@3 which was called: # once (14µs+17µs) by Data::GUID::BEGIN@7 at line 3
use strict;
# spent 31µs making 1 call to Digest::MD5::BEGIN@3 # spent 17µs making 1 call to strict::import
42289µs2124µs
# spent 66µs (9+58) within Digest::MD5::BEGIN@4 which was called: # once (9µs+58µs) by Data::GUID::BEGIN@7 at line 4
use vars qw($VERSION @ISA @EXPORT_OK);
# spent 66µs making 1 call to Digest::MD5::BEGIN@4 # spent 58µs making 1 call to vars::import
5
61800ns$VERSION = '2.54';
7
81600nsrequire Exporter;
912µs*import = \&Exporter::import;
1012µs@EXPORT_OK = qw(md5 md5_hex md5_base64);
11
121600nseval {
13195µs require Digest::base;
1417µs push(@ISA, 'Digest::base');
15};
161300nsif ($@) {
17 my $err = $@;
18 *add_bits = sub { die $err };
19}
20
21
2213µseval {
231600ns require XSLoader;
241207µs1199µs XSLoader::load('Digest::MD5', $VERSION);
# spent 199µs making 1 call to XSLoader::load
25};
261700nsif ($@) {
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}
40else {
4112µs *reset = \&new;
42}
43
44112µs1;
45__END__