← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 19:05:14 2015
Reported on Fri Jul 31 19:08:09 2015

Filename/usr/lib64/perl5/vendor_perl/Digest/MD5.pm
StatementsExecuted 18 statements in 637µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
4111283µs283µsDigest::MD5::::md5_hexDigest::MD5::md5_hex (xsub)
11117µs37µsDigest::MD5::::BEGIN@3Digest::MD5::BEGIN@3
11113µs54µsDigest::MD5::::BEGIN@4Digest::MD5::BEGIN@4
11111µs11µsDigest::MD5::::newDigest::MD5::new (xsub)
1119µs9µsDigest::MD5::::DESTROYDigest::MD5::DESTROY (xsub)
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
3243µs258µs
# spent 37µs (17+20) within Digest::MD5::BEGIN@3 which was called: # once (17µs+20µs) by Foswiki::BEGIN@50 at line 3
use strict;
# spent 37µs making 1 call to Digest::MD5::BEGIN@3 # spent 20µs making 1 call to strict::import
42268µs295µs
# spent 54µs (13+41) within Digest::MD5::BEGIN@4 which was called: # once (13µs+41µs) by Foswiki::BEGIN@50 at line 4
use vars qw($VERSION @ISA @EXPORT_OK);
# spent 54µs making 1 call to Digest::MD5::BEGIN@4 # spent 41µs making 1 call to vars::import
5
61900ns$VERSION = '2.52';
7
81700nsrequire Exporter;
912µs*import = \&Exporter::import;
1012µs@EXPORT_OK = qw(md5 md5_hex md5_base64);
11
121800nseval {
13192µs require Digest::base;
1419µs push(@ISA, 'Digest::base');
15};
161200nsif ($@) {
17 my $err = $@;
18 *add_bits = sub { die $err };
19}
20
21
2213µseval {
231600ns require XSLoader;
241195µs1186µs XSLoader::load('Digest::MD5', $VERSION);
# spent 186µ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
44118µs1;
45__END__
 
# spent 9µs within Digest::MD5::DESTROY which was called: # once (9µs+0s) by Foswiki::finish at line 2178 of /var/www/foswiki11/lib/Foswiki.pm
sub Digest::MD5::DESTROY; # xsub
# spent 283µs within Digest::MD5::md5_hex which was called 41 times, avg 7µs/call: # 41 times (283µs+0s) by Foswiki::Search::searchWeb at line 273 of /var/www/foswiki11/lib/Foswiki/Search.pm, avg 7µs/call
sub Digest::MD5::md5_hex; # xsub
# spent 11µs within Digest::MD5::new which was called: # once (11µs+0s) by Foswiki::new at line 1725 of /var/www/foswiki11/lib/Foswiki.pm
sub Digest::MD5::new; # xsub