← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 03:38:15 2020
Reported on Wed Feb 12 04:56:36 2020

Filename/usr/lib/x86_64-linux-gnu/perl/5.28/Digest/MD5.pm
StatementsExecuted 18 statements in 883µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs15µsDigest::MD5::::BEGIN@3Digest::MD5::BEGIN@3
1115µs40µ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
3225µs218µ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
use strict;
# spent 15µs making 1 call to Digest::MD5::BEGIN@3 # spent 2µs making 1 call to strict::import
42168µs275µ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
use vars qw($VERSION @ISA @EXPORT_OK);
# spent 40µs making 1 call to Digest::MD5::BEGIN@4 # spent 35µs making 1 call to vars::import
5
61400ns$VERSION = '2.55';
7
81200nsrequire Exporter;
911µs*import = \&Exporter::import;
101800ns@EXPORT_OK = qw(md5 md5_hex md5_base64);
11
121300nseval {
131200ns require Digest::base;
1415µs push(@ISA, 'Digest::base');
15};
161100nsif ($@) {
17 my $err = $@;
18 *add_bits = sub { die $err };
19}
20
21
221300nseval {
231300ns require XSLoader;
241668µs1661µs XSLoader::load('Digest::MD5', $VERSION);
# spent 661µ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 {
411900ns *reset = \&new;
42}
43
44113µs1;
45__END__