← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 20:36:06 2020
Reported on Wed Feb 12 21:42:25 2020

Filename/usr/lib/x86_64-linux-gnu/perl/5.28/Digest/MD5.pm
StatementsExecuted 18 statements in 386µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs16µsDigest::MD5::::BEGIN@3Digest::MD5::BEGIN@3
1117µs48µ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
3228µs219µs
# spent 16µs (12+4) within Digest::MD5::BEGIN@3 which was called: # once (12µs+4µs) by RBM::BEGIN@22 at line 3
use strict;
# spent 16µs making 1 call to Digest::MD5::BEGIN@3 # spent 4µs making 1 call to strict::import
42172µs290µs
# spent 48µs (7+41) within Digest::MD5::BEGIN@4 which was called: # once (7µs+41µs) by RBM::BEGIN@22 at line 4
use vars qw($VERSION @ISA @EXPORT_OK);
# spent 48µs making 1 call to Digest::MD5::BEGIN@4 # spent 41µs making 1 call to vars::import
5
61400ns$VERSION = '2.55';
7
81500nsrequire Exporter;
911µs*import = \&Exporter::import;
1011µs@EXPORT_OK = qw(md5 md5_hex md5_base64);
11
121400nseval {
131400ns require Digest::base;
1415µs push(@ISA, 'Digest::base');
15};
161100nsif ($@) {
17 my $err = $@;
18 *add_bits = sub { die $err };
19}
20
21
221200nseval {
231300ns require XSLoader;
241162µs1154µs XSLoader::load('Digest::MD5', $VERSION);
# spent 154µs making 1 call to XSLoader::load
25};
261400nsif ($@) {
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 {
411800ns *reset = \&new;
42}
43
44113µs1;
45__END__