← 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:49 2015

Filename/usr/share/perl/5.20/AnyDBM_File.pm
StatementsExecuted 13 statements in 176µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs21µsAnyDBM_File::::BEGIN@2AnyDBM_File::BEGIN@2
11113µs13µsAnyDBM_File::::BEGIN@5AnyDBM_File::BEGIN@5
11110µs23µsAnyDBM_File::::BEGIN@3AnyDBM_File::BEGIN@3
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package AnyDBM_File;
2224µs228µs
# spent 21µs (14+7) within AnyDBM_File::BEGIN@2 which was called: # once (14µs+7µs) by MARC::Charset::Table::BEGIN@42 at line 2
use warnings;
# spent 21µs making 1 call to AnyDBM_File::BEGIN@2 # spent 7µs making 1 call to warnings::import
3221µs235µs
# spent 23µs (10+12) within AnyDBM_File::BEGIN@3 which was called: # once (10µs+12µs) by MARC::Charset::Table::BEGIN@42 at line 3
use strict;
# spent 23µs making 1 call to AnyDBM_File::BEGIN@3 # spent 12µs making 1 call to strict::import
4
52101µs113µs
# spent 13µs within AnyDBM_File::BEGIN@5 which was called: # once (13µs+0s) by MARC::Charset::Table::BEGIN@42 at line 5
use 5.006_001;
# spent 13µs making 1 call to AnyDBM_File::BEGIN@5
61500nsour $VERSION = '1.01';
71300nsour @ISA = qw(NDBM_File DB_File GDBM_File SDBM_File ODBM_File) unless @ISA;
8
91100nsmy $mod;
101400nsfor $mod (@ISA) {
11115µs if (eval "require $mod") {
# spent 975µs executing statements in string eval
12110µs @ISA = ($mod); # if we leave @ISA alone, warnings abound
1314µs return 1;
14 }
15}
16
17die "No DBM package was successfully found or installed";
18
19__END__