← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 21:45:08 2010
Reported on Wed Nov 17 22:13:11 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/5.10.1/x86_64-linux/DynaLoader.pm
StatementsExecuted 278 statements in 11.1ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
6662.38ms6.69msDynaLoader::::bootstrapDynaLoader::bootstrap
1112.30ms2.65msDynaLoader::::BEGIN@25DynaLoader::BEGIN@25
6111.35ms1.35msDynaLoader::::dl_load_fileDynaLoader::dl_load_file (xsub)
1221868µs868µsDynaLoader::::CORE:substDynaLoader::CORE:subst (opcode)
3011568µs568µsDynaLoader::::CORE:ftdirDynaLoader::CORE:ftdir (opcode)
611366µs366µsDynaLoader::::dl_install_xsubDynaLoader::dl_install_xsub (xsub)
611119µs119µsDynaLoader::::CORE:ftsizeDynaLoader::CORE:ftsize (opcode)
611110µs110µsDynaLoader::::CORE:ftfileDynaLoader::CORE:ftfile (opcode)
61165µs65µsDynaLoader::::dl_find_symbolDynaLoader::dl_find_symbol (xsub)
61163µs63µsDynaLoader::::dl_load_flagsDynaLoader::dl_load_flags
61146µs46µsDynaLoader::::dl_undef_symbolsDynaLoader::dl_undef_symbols (xsub)
11145µs45µsDynaLoader::::BEGIN@18DynaLoader::BEGIN@18
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
2# Generated from DynaLoader_pm.PL
3
4package DynaLoader;
5
6# And Gandalf said: 'Many folk like to know beforehand what is to
7# be set on the table; but those who have laboured to prepare the
8# feast like to keep their secret; for wonder makes the words of
9# praise louder.'
10
11# (Quote from Tolkien suggested by Anno Siegel.)
12#
13# See pod text at end of file for documentation.
14# See also ext/DynaLoader/README in source tree for other information.
15#
16# Tim.Bunce@ig.co.uk, August 1994
17
18
# spent 45µs within DynaLoader::BEGIN@18 which was called: # once (45µs+0s) by Data::OptList::BEGIN@7 at line 20
BEGIN {
19129µs $VERSION = '1.10';
201129µs145µs}
# spent 45µs making 1 call to DynaLoader::BEGIN@18
21
221304µsrequire AutoLoader;
2318µs*AUTOLOAD = \&AutoLoader::AUTOLOAD;
24
2533.49ms22.71ms
# spent 2.65ms (2.30+350µs) within DynaLoader::BEGIN@25 which was called: # once (2.30ms+350µs) by Data::OptList::BEGIN@7 at line 25
use Config;
# spent 2.65ms making 1 call to DynaLoader::BEGIN@25 # spent 57µs making 1 call to Config::import
26
27# enable debug/trace messages from DynaLoader perl code
2816µs$dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
29
30#
31# Flags to alter dl_load_file behaviour. Assigned bits:
32# 0x01 make symbols available for linking later dl_load_file's.
33# (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
34# (ignored under VMS; effect is built-in to image linking)
35#
36# This is called as a class method $module->dl_load_flags. The
37# definition here will be inherited and result on "default" loading
38# behaviour unless a sub-class of DynaLoader defines its own version.
39#
40
41680µs
# spent 63µs within DynaLoader::dl_load_flags which was called 6 times, avg 10µs/call: # 6 times (63µs+0s) by DynaLoader::bootstrap at line 200, avg 10µs/call
sub dl_load_flags { 0x00 }
42
43180µs36.80ms($dl_dlext, $dl_so, $dlsrc) = @Config::Config{qw(dlext so dlsrc)};
# spent 6.80ms making 3 calls to Config::FETCH, avg 2.27ms/call
44
45
4613µs$do_expand = 0;
47
- -
5014µs@dl_require_symbols = (); # names of symbols we need
5113µs@dl_resolve_using = (); # names of files to link with
5213µs@dl_library_path = (); # path to look for files
53
54#XSLoader.pm may have added elements before we were required
55#@dl_shared_objects = (); # shared objects for symbols we have
56#@dl_librefs = (); # things we have loaded
57#@dl_modules = (); # Modules we have loaded
58
59# This is a fix to support DLD's unfortunate desire to relink -lc
6013µs@dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
61
62# Initialise @dl_library_path with the 'standard' library path
63# for this platform as determined by Configure.
64
65129µs113µspush(@dl_library_path, split(' ', $Config::Config{libpth}));
# spent 13µs making 1 call to Config::FETCH
66
67
68120µs113µsmy $ldlibpthname = $Config::Config{ldlibpthname};
# spent 13µs making 1 call to Config::FETCH
69120µs112µsmy $ldlibpthname_defined = defined $Config::Config{ldlibpthname};
# spent 12µs making 1 call to Config::FETCH
70119µs112µsmy $pthsep = $Config::Config{path_sep};
# spent 12µs making 1 call to Config::FETCH
71
72# Add to @dl_library_path any extra directories we can gather from environment
73# during runtime.
74
7514µsif ($ldlibpthname_defined &&
76 exists $ENV{$ldlibpthname}) {
77 push(@dl_library_path, split(/$pthsep/, $ENV{$ldlibpthname}));
78}
79
80# E.g. HP-UX supports both its native SHLIB_PATH *and* LD_LIBRARY_PATH.
81
8213µsif ($ldlibpthname_defined &&
83 $ldlibpthname ne 'LD_LIBRARY_PATH' &&
84 exists $ENV{LD_LIBRARY_PATH}) {
85 push(@dl_library_path, split(/$pthsep/, $ENV{LD_LIBRARY_PATH}));
86}
87
88
89# No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
90# NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB
9115µsboot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) &&
92 !defined(&dl_error);
93
9412µsif ($dl_debug) {
95 print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
96 print STDERR "DynaLoader not linked into this perl\n"
97 unless defined(&boot_DynaLoader);
98}
99
100171µs1; # End of main code
101
102
103sub croak { require Carp; Carp::croak(@_) }
104
105sub bootstrap_inherit {
10614µs my $module = $_[0];
107119µs local *isa = *{"$module\::ISA"};
108145µs local @isa = (@isa, 'DynaLoader');
109 # Cannot goto due to delocalization. Will report errors on a wrong line?
110135µs11.25ms bootstrap(@_);
# spent 1.25ms making 1 call to DynaLoader::bootstrap
111}
112
113# The bootstrap function cannot be autoloaded (without complications)
114# so we define it here:
115
116
# spent 6.69ms (2.38+4.30) within DynaLoader::bootstrap which was called 6 times, avg 1.11ms/call: # once (502µs+746µs) by Moose::BEGIN@15 at line 110 # once (353µs+865µs) by Markdent::Dialect::Standard::BlockParser::BEGIN@9 at line 24 of Digest/SHA1.pm # once (360µs+808µs) by Class::MOP::Class::BEGIN@18 at line 24 of List/MoreUtils.pm # once (440µs+673µs) by Data::OptList::BEGIN@7 at line 88 of Params/Util.pm # once (379µs+667µs) by Devel::Caller::BEGIN@5 at line 17 of PadWalker.pm # once (347µs+545µs) by Class::MOP::Mixin::HasMethods::BEGIN@14 at line 55 of Sub/Name.pm
sub bootstrap {
117 # use local vars to enable $module.bs script to edit values
118654µs local(@args) = @_;
119626µs local($module) = $args[0];
120621µs local(@dirs, $file);
121
122612µs unless ($module) {
123 require Carp;
124 Carp::confess("Usage: DynaLoader::bootstrap(module)");
125 }
126
127 # A common error on platforms which don't support dynamic loading.
128 # Since it's fatal and potentially confusing we give a detailed message.
129622µs croak("Can't load module $module, dynamic loading not available in this perl.\n".
130 " (You may need to build a new perl executable which either supports\n".
131 " dynamic loading or has the $module module statically linked into it.)\n")
132 unless defined(&dl_load_file);
133
- -
136657µs my @modparts = split(/::/,$module);
137623µs my $modfname = $modparts[-1];
138
139 # Some systems have restrictions on files names for DLL's etc.
140 # mod2fname returns appropriate file base name (typically truncated)
141 # It may also edit @modparts if required.
142616µs $modfname = &mod2fname(\@modparts) if defined &mod2fname;
143
144
145
146632µs my $modpname = join('/',@modparts);
147
148614µs print STDERR "DynaLoader::bootstrap for $module ",
149 "(auto/$modpname/$modfname.$dl_dlext)\n"
150 if $dl_debug;
151
152694µs foreach (@INC) {
153
154
15530138µs my $dir = "$_/auto/$modpname";
156
157
15830934µs30568µs next unless -d $dir; # skip over uninteresting directories
# spent 568µs making 30 calls to DynaLoader::CORE:ftdir, avg 19µs/call
159
160 # check for common cases to avoid autoload of dl_findfile
161643µs my $try = "$dir/$modfname.$dl_dlext";
1626256µs6110µs last if $file = ($do_expand) ? dl_expandspec($try) : ((-f $try) && $try);
# spent 110µs making 6 calls to DynaLoader::CORE:ftfile, avg 18µs/call
163
164 # no luck here, save dir for possible later dl_findfile search
165 push @dirs, $dir;
166 }
167 # last resort, let dl_findfile have a go in all known locations
168613µs $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file;
169
170612µs croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)")
171 unless $file; # wording similar to error from 'require'
172
173
174628µs my $bootname = "boot_$module";
1756141µs665µs $bootname =~ s/\W/_/g;
# spent 65µs making 6 calls to DynaLoader::CORE:subst, avg 11µs/call
176640µs @dl_require_symbols = ($bootname);
177
178 # Execute optional '.bootstrap' perl script for this module.
179 # The .bs file can be used to configure @dl_resolve_using etc to
180 # match the needs of the individual module on this architecture.
181658µs my $bs = $file;
1826871µs6803µs $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library
# spent 803µs making 6 calls to DynaLoader::CORE:subst, avg 134µs/call
1836188µs6119µs if (-s $bs) { # only read file if it's not empty
# spent 119µs making 6 calls to DynaLoader::CORE:ftsize, avg 20µs/call
184 print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
185 eval { do $bs; };
186 warn "$bs: $@\n" if $@;
187 }
188
189614µs my $boot_symbol_ref;
190
191
192
193 # Many dynamic extension loading problems will appear to come from
194 # this section of code: XYZ failed at line 123 of DynaLoader.pm.
195 # Often these errors are actually occurring in the initialisation
196 # C code of the extension XS file. Perl reports the error as being
197 # in this perl code simply because this was the last perl code
198 # it executed.
199
20061.62ms121.41ms my $libref = dl_load_file($file, $module->dl_load_flags) or
# spent 1.35ms making 6 calls to DynaLoader::dl_load_file, avg 224µs/call # spent 63µs making 6 calls to DynaLoader::dl_load_flags, avg 10µs/call
201 croak("Can't load '$file' for module $module: ".dl_error());
202
203634µs push(@dl_librefs,$libref); # record loaded object
204
2056142µs646µs my @unresolved = dl_undef_symbols();
# spent 46µs making 6 calls to DynaLoader::dl_undef_symbols, avg 8µs/call
206616µs if (@unresolved) {
207 require Carp;
208 Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
209 }
210
2116151µs665µs $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
# spent 65µs making 6 calls to DynaLoader::dl_find_symbol, avg 11µs/call
212 croak("Can't find '$bootname' symbol in $file\n");
213
214637µs push(@dl_modules, $module); # record loaded module
215
2166470µs6366µs boot:
# spent 366µs making 6 calls to DynaLoader::dl_install_xsub, avg 61µs/call
217 my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
218
219 # See comment block above
220
221634µs push(@dl_shared_objects, $file); # record files loaded
222
22361.05ms6755µs &$xs(@args);
# spent 237µs making 1 call to List::MoreUtils::bootstrap # spent 139µs making 1 call to Digest::SHA1::bootstrap # spent 128µs making 1 call to PadWalker::bootstrap # spent 100µs making 1 call to Moose::bootstrap # spent 95µs making 1 call to Params::Util::bootstrap # spent 56µs making 1 call to Sub::Name::bootstrap
224}
225
226
227#sub _check_file { # private utility to handle dl_expandspec vs -f tests
228# my($file) = @_;
229# return $file if (!$do_expand && -f $file); # the common case
230# return $file if ( $do_expand && ($file=dl_expandspec($file)));
231# return undef;
232#}
233
234
235# Let autosplit and the autoloader deal with these functions:
236__END__
 
# spent 568µs within DynaLoader::CORE:ftdir which was called 30 times, avg 19µs/call: # 30 times (568µs+0s) by DynaLoader::bootstrap at line 158, avg 19µs/call
sub DynaLoader::CORE:ftdir; # opcode
# spent 110µs within DynaLoader::CORE:ftfile which was called 6 times, avg 18µs/call: # 6 times (110µs+0s) by DynaLoader::bootstrap at line 162, avg 18µs/call
sub DynaLoader::CORE:ftfile; # opcode
# spent 119µs within DynaLoader::CORE:ftsize which was called 6 times, avg 20µs/call: # 6 times (119µs+0s) by DynaLoader::bootstrap at line 183, avg 20µs/call
sub DynaLoader::CORE:ftsize; # opcode
# spent 868µs within DynaLoader::CORE:subst which was called 12 times, avg 72µs/call: # 6 times (803µs+0s) by DynaLoader::bootstrap at line 182, avg 134µs/call # 6 times (65µs+0s) by DynaLoader::bootstrap at line 175, avg 11µs/call
sub DynaLoader::CORE:subst; # opcode
# spent 65µs within DynaLoader::dl_find_symbol which was called 6 times, avg 11µs/call: # 6 times (65µs+0s) by DynaLoader::bootstrap at line 211, avg 11µs/call
sub DynaLoader::dl_find_symbol; # xsub
# spent 366µs within DynaLoader::dl_install_xsub which was called 6 times, avg 61µs/call: # 6 times (366µs+0s) by DynaLoader::bootstrap at line 216, avg 61µs/call
sub DynaLoader::dl_install_xsub; # xsub
# spent 1.35ms within DynaLoader::dl_load_file which was called 6 times, avg 224µs/call: # 6 times (1.35ms+0s) by DynaLoader::bootstrap at line 200, avg 224µs/call
sub DynaLoader::dl_load_file; # xsub
# spent 46µs within DynaLoader::dl_undef_symbols which was called 6 times, avg 8µs/call: # 6 times (46µs+0s) by DynaLoader::bootstrap at line 205, avg 8µs/call
sub DynaLoader::dl_undef_symbols; # xsub