← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 09:58:41 2014
Reported on Tue Jun 24 09:59:24 2014

Filename/usr/lib/perl/5.14/Digest/MD5.pm
StatementsExecuted 18 statements in 449µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs16µsDigest::MD5::::BEGIN@3Digest::MD5::BEGIN@3
1116µs55µ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
3227µs219µs
# spent 16µs (13+3) within Digest::MD5::BEGIN@3 which was called: # once (13µs+3µs) by MongoDB::MongoClient::BEGIN@29 at line 3
use strict;
# spent 16µs making 1 call to Digest::MD5::BEGIN@3 # spent 3µs making 1 call to strict::import
42182µs2104µs
# spent 55µs (6+49) within Digest::MD5::BEGIN@4 which was called: # once (6µs+49µs) by MongoDB::MongoClient::BEGIN@29 at line 4
use vars qw($VERSION @ISA @EXPORT_OK);
# spent 55µs making 1 call to Digest::MD5::BEGIN@4 # spent 49µs making 1 call to vars::import
5
61700ns$VERSION = '2.51';
7
81600nsrequire Exporter;
911µs*import = \&Exporter::import;
1012µs@EXPORT_OK = qw(md5 md5_hex md5_base64);
11
12372µseval {
13 require Digest::base;
14 push(@ISA, 'Digest::base');
15};
161100nsif ($@) {
17 my $err = $@;
18 *add_bits = sub { die $err };
19}
20
21
223150µseval {
23 require XSLoader;
241143µs XSLoader::load('Digest::MD5', $VERSION);
# spent 143µs making 1 call to XSLoader::load
25};
2622µsif ($@) {
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 push(@ISA, "Digest::Perl::MD5"); # make OO interface work
34 };
35 if ($@) {
36 # restore the original error
37 die $olderr;
38 }
39}
40else {
41 *reset = \&new;
42}
43
44112µs1;
45__END__