← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 17:10:45 2013
Reported on Tue Oct 15 17:12:16 2013

Filename/usr/lib/perl/5.10/DynaLoader.pm
StatementsExecuted 756 statements in 12.3ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
17114.13ms4.13msDynaLoader::::dl_load_fileDynaLoader::dl_load_file (xsub)
1717172.39ms10.6msDynaLoader::::bootstrapDynaLoader::bootstrap
1111.12ms1.31msDynaLoader::::BEGIN@24DynaLoader::BEGIN@24
3421488µs488µsDynaLoader::::CORE:substDynaLoader::CORE:subst (opcode)
9511445µs445µsDynaLoader::::CORE:ftdirDynaLoader::CORE:ftdir (opcode)
1711188µs188µsDynaLoader::::dl_install_xsubDynaLoader::dl_install_xsub (xsub)
171194µs94µsDynaLoader::::CORE:ftsizeDynaLoader::CORE:ftsize (opcode)
171174µs74µsDynaLoader::::dl_find_symbolDynaLoader::dl_find_symbol (xsub)
171161µs61µsDynaLoader::::CORE:ftfileDynaLoader::CORE:ftfile (opcode)
171154µs54µsDynaLoader::::dl_load_flagsDynaLoader::dl_load_flags
171154µs54µsDynaLoader::::dl_undef_symbolsDynaLoader::dl_undef_symbols (xsub)
11122µs22µsDynaLoader::::BEGIN@17DynaLoader::BEGIN@17
0000s0sDynaLoader::::bootstrap_inheritDynaLoader::bootstrap_inherit
0000s0sDynaLoader::::croakDynaLoader::croak
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# Generated from DynaLoader_pm.PL
2
3package DynaLoader;
4
5# And Gandalf said: 'Many folk like to know beforehand what is to
6# be set on the table; but those who have laboured to prepare the
7# feast like to keep their secret; for wonder makes the words of
8# praise louder.'
9
10# (Quote from Tolkien suggested by Anno Siegel.)
11#
12# See pod text at end of file for documentation.
13# See also ext/DynaLoader/README in source tree for other information.
14#
15# Tim.Bunce@ig.co.uk, August 1994
16
17
# spent 22µs within DynaLoader::BEGIN@17 which was called: # once (22µs+0s) by Cache::Memcached::BEGIN@14 at line 19
BEGIN {
18112µs $VERSION = '1.10';
19176µs122µs}
# spent 22µs making 1 call to DynaLoader::BEGIN@17
20
2111µsrequire AutoLoader;
2212µs*AUTOLOAD = \&AutoLoader::AUTOLOAD;
23
2431.34ms21.33ms
# spent 1.31ms (1.12+183µs) within DynaLoader::BEGIN@24 which was called: # once (1.12ms+183µs) by Cache::Memcached::BEGIN@14 at line 24
use Config;
# spent 1.31ms making 1 call to DynaLoader::BEGIN@24 # spent 19µs making 1 call to Config::import
25
26# enable debug/trace messages from DynaLoader perl code
2712µs$dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
28
29#
30# Flags to alter dl_load_file behaviour. Assigned bits:
31# 0x01 make symbols available for linking later dl_load_file's.
32# (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
33# (ignored under VMS; effect is built-in to image linking)
34#
35# This is called as a class method $module->dl_load_flags. The
36# definition here will be inherited and result on "default" loading
37# behaviour unless a sub-class of DynaLoader defines its own version.
38#
39
401776µs
# spent 54µs within DynaLoader::dl_load_flags which was called 17 times, avg 3µs/call: # 17 times (54µs+0s) by DynaLoader::bootstrap at line 192, avg 3µs/call
sub dl_load_flags { 0x00 }
41
42136µs33.18ms($dl_dlext, $dl_so, $dlsrc) = @Config::Config{qw(dlext so dlsrc)};
# spent 3.18ms making 3 calls to Config::FETCH, avg 1.06ms/call
43
4411µs$do_expand = 0;
45
4614µs@dl_require_symbols = (); # names of symbols we need
471900ns@dl_resolve_using = (); # names of files to link with
481900ns@dl_library_path = (); # path to look for files
49
50#XSLoader.pm may have added elements before we were required
51#@dl_shared_objects = (); # shared objects for symbols we have
52#@dl_librefs = (); # things we have loaded
53#@dl_modules = (); # Modules we have loaded
54
55# This is a fix to support DLD's unfortunate desire to relink -lc
5611µs@dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
57
58# Initialise @dl_library_path with the 'standard' library path
59# for this platform as determined by Configure.
60
61112µs14µspush(@dl_library_path, split(' ', $Config::Config{libpth}));
# spent 4µs making 1 call to Config::FETCH
62
6315µs13µsmy $ldlibpthname = $Config::Config{ldlibpthname};
# spent 3µs making 1 call to Config::FETCH
64112µs16µsmy $ldlibpthname_defined = defined $Config::Config{ldlibpthname};
# spent 6µs making 1 call to Config::FETCH
6517µs13µsmy $pthsep = $Config::Config{path_sep};
# spent 3µs making 1 call to Config::FETCH
66
67# Add to @dl_library_path any extra directories we can gather from environment
68# during runtime.
69
7012µsif ($ldlibpthname_defined &&
71 exists $ENV{$ldlibpthname}) {
72 push(@dl_library_path, split(/$pthsep/, $ENV{$ldlibpthname}));
73}
74
75# E.g. HP-UX supports both its native SHLIB_PATH *and* LD_LIBRARY_PATH.
76
7712µsif ($ldlibpthname_defined &&
78 $ldlibpthname ne 'LD_LIBRARY_PATH' &&
79 exists $ENV{LD_LIBRARY_PATH}) {
80 push(@dl_library_path, split(/$pthsep/, $ENV{LD_LIBRARY_PATH}));
81}
82
83# No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
84# NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB
8512µsboot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) &&
86 !defined(&dl_error);
87
881600nsif ($dl_debug) {
89 print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
90 print STDERR "DynaLoader not linked into this perl\n"
91 unless defined(&boot_DynaLoader);
92}
93
94135µs1; # End of main code
95
96sub croak { require Carp; Carp::croak(@_) }
97
98sub bootstrap_inherit {
99 my $module = $_[0];
100 local *isa = *{"$module\::ISA"};
101 local @isa = (@isa, 'DynaLoader');
102 # Cannot goto due to delocalization. Will report errors on a wrong line?
103 bootstrap(@_);
104}
105
106# The bootstrap function cannot be autoloaded (without complications)
107# so we define it here:
108
109
# spent 10.6ms (2.39+8.22) within DynaLoader::bootstrap which was called 17 times, avg 625µs/call: # once (111µs+1.62ms) by DBI::install_driver at line 14 of DBD/mysql.pm # once (111µs+1.27ms) by XML::LibXML::BEGIN@28 at line 147 of XML/LibXML.pm # once (188µs+800µs) by MARC::Charset::BEGIN@10 at line 42 of Unicode/Normalize.pm # once (193µs+685µs) by DBI::BEGIN@160 at line 258 of DBI.pm # once (207µs+596µs) by XML::LibXSLT::BEGIN@23 at line 38 of XML/LibXSLT.pm # once (228µs+347µs) by Cache::Memcached::BEGIN@14 at line 67 of Storable.pm # once (116µs+415µs) by C4::Dates::BEGIN@29 at line 108 of Date/Calc.pm # once (206µs+310µs) by C4::Charset::BEGIN@24 at line 21 of Text/Iconv.pm # once (160µs+329µs) by Math::BigInt::BEGIN@1 at line 16 of Math/BigInt/FastCalc.pm # once (145µs+333µs) by Template::Stash::XS::BEGIN@21 at line 26 of Template/Stash/XS.pm # once (115µs+293µs) by C4::Members::BEGIN@42 at line 32 of Text/Unaccent.pm # once (116µs+245µs) by Cache::Memcached::BEGIN@17 at line 65 of Time/HiRes.pm # once (119µs+218µs) by fields::__ANON__[/usr/share/perl/5.10/fields.pm:128] at line 34 of Hash/Util.pm # once (112µs+222µs) by Text::CSV::BEGIN@1 at line 35 of Text/CSV_XS.pm # once (110µs+203µs) by base::import at line 55 of Sub/Name.pm # once (77µs+222µs) by C4::SQLHelper::BEGIN@23 at line 26 of List/MoreUtils.pm # once (79µs+110µs) by Cache::Memcached::BEGIN@18 at line 17 of String/CRC32.pm
sub bootstrap {
110 # use local vars to enable $module.bs script to edit values
1111753µs local(@args) = @_;
1121726µs local($module) = $args[0];
1131723µs local(@dirs, $file);
114
115177µs unless ($module) {
116 require Carp;
117 Carp::confess("Usage: DynaLoader::bootstrap(module)");
118 }
119
120 # A common error on platforms which don't support dynamic loading.
121 # Since it's fatal and potentially confusing we give a detailed message.
1221728µs croak("Can't load module $module, dynamic loading not available in this perl.\n".
123 " (You may need to build a new perl executable which either supports\n".
124 " dynamic loading or has the $module module statically linked into it.)\n")
125 unless defined(&dl_load_file);
126
127
12817126µs my @modparts = split(/::/,$module);
1291725µs my $modfname = $modparts[-1];
130
131 # Some systems have restrictions on files names for DLL's etc.
132 # mod2fname returns appropriate file base name (typically truncated)
133 # It may also edit @modparts if required.
1341718µs $modfname = &mod2fname(\@modparts) if defined &mod2fname;
135
136
137
1381742µs my $modpname = join('/',@modparts);
139
1401716µs print STDERR "DynaLoader::bootstrap for $module ",
141 "(auto/$modpname/$modfname.$dl_dlext)\n"
142 if $dl_debug;
143
1441767µs foreach (@INC) {
145
146
1479596µs my $dir = "$_/auto/$modpname";
148
149
15095801µs95445µs next unless -d $dir; # skip over uninteresting directories
# spent 445µs making 95 calls to DynaLoader::CORE:ftdir, avg 5µs/call
151
152 # check for common cases to avoid autoload of dl_findfile
1531749µs my $try = "$dir/$modfname.$dl_dlext";
15417189µs1761µs last if $file = ($do_expand) ? dl_expandspec($try) : ((-f $try) && $try);
# spent 61µs making 17 calls to DynaLoader::CORE:ftfile, avg 4µs/call
155
156 # no luck here, save dir for possible later dl_findfile search
157 push @dirs, $dir;
158 }
159 # last resort, let dl_findfile have a go in all known locations
160179µs $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file;
161
162176µs croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)")
163 unless $file; # wording similar to error from 'require'
164
165
1661722µs my $bootname = "boot_$module";
16717196µs1792µs $bootname =~ s/\W/_/g;
# spent 92µs making 17 calls to DynaLoader::CORE:subst, avg 5µs/call
1681744µs @dl_require_symbols = ($bootname);
169
170 # Execute optional '.bootstrap' perl script for this module.
171 # The .bs file can be used to configure @dl_resolve_using etc to
172 # match the needs of the individual module on this architecture.
1731714µs my $bs = $file;
17417458µs17396µs $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library
# spent 396µs making 17 calls to DynaLoader::CORE:subst, avg 23µs/call
17517165µs1794µs if (-s $bs) { # only read file if it's not empty
# spent 94µs making 17 calls to DynaLoader::CORE:ftsize, avg 6µs/call
176 print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
177 eval { do $bs; };
178 warn "$bs: $@\n" if $@;
179 }
180
181179µs my $boot_symbol_ref;
182
183
184
185 # Many dynamic extension loading problems will appear to come from
186 # this section of code: XYZ failed at line 123 of DynaLoader.pm.
187 # Often these errors are actually occurring in the initialisation
188 # C code of the extension XS file. Perl reports the error as being
189 # in this perl code simply because this was the last perl code
190 # it executed.
191
192174.46ms344.18ms my $libref = dl_load_file($file, $module->dl_load_flags) or
# spent 4.13ms making 17 calls to DynaLoader::dl_load_file, avg 243µs/call # spent 54µs making 17 calls to DynaLoader::dl_load_flags, avg 3µs/call
193 croak("Can't load '$file' for module $module: ".dl_error());
194
1951733µs push(@dl_librefs,$libref); # record loaded object
196
19717148µs1754µs my @unresolved = dl_undef_symbols();
# spent 54µs making 17 calls to DynaLoader::dl_undef_symbols, avg 3µs/call
1981712µs if (@unresolved) {
199 require Carp;
200 Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
201 }
202
20317154µs1774µs $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
# spent 74µs making 17 calls to DynaLoader::dl_find_symbol, avg 4µs/call
204 croak("Can't find '$bootname' symbol in $file\n");
205
2061728µs push(@dl_modules, $module); # record loaded module
207
20817291µs17188µs boot:
# spent 188µs making 17 calls to DynaLoader::dl_install_xsub, avg 11µs/call
209 my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
210
211 # See comment block above
212
2131725µs push(@dl_shared_objects, $file); # record files loaded
214
215172.99ms172.64ms &$xs(@args);
# spent 934µs making 1 call to XML::LibXML::bootstrap # spent 434µs making 1 call to DBI::bootstrap # spent 261µs making 1 call to XML::LibXSLT::bootstrap # spent 193µs making 1 call to Date::Calc::bootstrap # spent 124µs making 1 call to Storable::bootstrap # spent 121µs making 1 call to DBD::mysql::bootstrap # spent 85µs making 1 call to Unicode::Normalize::bootstrap # spent 81µs making 1 call to List::MoreUtils::bootstrap # spent 81µs making 1 call to Time::HiRes::bootstrap # spent 64µs making 1 call to Template::Stash::XS::bootstrap # spent 61µs making 1 call to Math::BigInt::FastCalc::bootstrap # spent 58µs making 1 call to Text::Iconv::bootstrap # spent 42µs making 1 call to Text::Unaccent::bootstrap # spent 35µs making 1 call to Hash::Util::bootstrap # spent 30µs making 1 call to Text::CSV_XS::bootstrap # spent 22µs making 1 call to Sub::Name::bootstrap # spent 12µs making 1 call to String::CRC32::bootstrap
216}
217
218#sub _check_file { # private utility to handle dl_expandspec vs -f tests
219# my($file) = @_;
220# return $file if (!$do_expand && -f $file); # the common case
221# return $file if ( $do_expand && ($file=dl_expandspec($file)));
222# return undef;
223#}
224
225# Let autosplit and the autoloader deal with these functions:
 
# spent 445µs within DynaLoader::CORE:ftdir which was called 95 times, avg 5µs/call: # 95 times (445µs+0s) by DynaLoader::bootstrap at line 150, avg 5µs/call
sub DynaLoader::CORE:ftdir; # opcode
# spent 61µs within DynaLoader::CORE:ftfile which was called 17 times, avg 4µs/call: # 17 times (61µs+0s) by DynaLoader::bootstrap at line 154, avg 4µs/call
sub DynaLoader::CORE:ftfile; # opcode
# spent 94µs within DynaLoader::CORE:ftsize which was called 17 times, avg 6µs/call: # 17 times (94µs+0s) by DynaLoader::bootstrap at line 175, avg 6µs/call
sub DynaLoader::CORE:ftsize; # opcode
# spent 488µs within DynaLoader::CORE:subst which was called 34 times, avg 14µs/call: # 17 times (396µs+0s) by DynaLoader::bootstrap at line 174, avg 23µs/call # 17 times (92µs+0s) by DynaLoader::bootstrap at line 167, avg 5µs/call
sub DynaLoader::CORE:subst; # opcode
# spent 74µs within DynaLoader::dl_find_symbol which was called 17 times, avg 4µs/call: # 17 times (74µs+0s) by DynaLoader::bootstrap at line 203, avg 4µs/call
sub DynaLoader::dl_find_symbol; # xsub
# spent 188µs within DynaLoader::dl_install_xsub which was called 17 times, avg 11µs/call: # 17 times (188µs+0s) by DynaLoader::bootstrap at line 208, avg 11µs/call
sub DynaLoader::dl_install_xsub; # xsub
# spent 4.13ms within DynaLoader::dl_load_file which was called 17 times, avg 243µs/call: # 17 times (4.13ms+0s) by DynaLoader::bootstrap at line 192, avg 243µs/call
sub DynaLoader::dl_load_file; # xsub
# spent 54µs within DynaLoader::dl_undef_symbols which was called 17 times, avg 3µs/call: # 17 times (54µs+0s) by DynaLoader::bootstrap at line 197, avg 3µs/call
sub DynaLoader::dl_undef_symbols; # xsub