← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:51 2015

Filename/usr/lib/x86_64-linux-gnu/perl/5.20/Digest/MD5.pm
StatementsExecuted 18 statements in 1.23ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11120µs42µsDigest::MD5::::BEGIN@3Digest::MD5::BEGIN@3
11110µs76µ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
3243µs265µs
# spent 42µs (20+22) within Digest::MD5::BEGIN@3 which was called: # once (20µs+22µs) by C4::Auth::BEGIN@22 at line 3
use strict;
# spent 42µs making 1 call to Digest::MD5::BEGIN@3 # spent 22µs making 1 call to strict::import
42253µs2142µs
# spent 76µs (10+66) within Digest::MD5::BEGIN@4 which was called: # once (10µs+66µs) by C4::Auth::BEGIN@22 at line 4
use vars qw($VERSION @ISA @EXPORT_OK);
# spent 76µs making 1 call to Digest::MD5::BEGIN@4 # spent 66µs making 1 call to vars::import
5
61500ns$VERSION = '2.53';
7
811µsrequire Exporter;
912µs*import = \&Exporter::import;
1011µs@EXPORT_OK = qw(md5 md5_hex md5_base64);
11
121600nseval {
131718µs require Digest::base;
1417µs push(@ISA, 'Digest::base');
15};
161100nsif ($@) {
17 my $err = $@;
18 *add_bits = sub { die $err };
19}
20
21
2212µseval {
231800ns require XSLoader;
241190µs1185µs XSLoader::load('Digest::MD5', $VERSION);
# spent 185µs making 1 call to XSLoader::load
25};
261300nsif ($@) {
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
4419µs1;
45__END__