| Filename | /usr/local/lib/perl5/5.36/mach/DynaLoader.pm |
| Statements | Executed 93 statements in 6.26ms |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 2 | 1 | 1 | 3.87ms | 3.87ms | DynaLoader::dl_load_file (xsub) |
| 1 | 1 | 1 | 691µs | 787µs | DynaLoader::BEGIN@32 |
| 1 | 1 | 1 | 455µs | 676µs | DynaLoader::BEGIN@28 |
| 2 | 2 | 2 | 140µs | 4.44ms | DynaLoader::bootstrap |
| 4 | 2 | 1 | 42µs | 42µs | DynaLoader::CORE:subst (opcode) |
| 1 | 1 | 1 | 22µs | 30µs | DynaLoader::BEGIN@113 |
| 2 | 1 | 1 | 21µs | 21µs | DynaLoader::CORE:ftdir (opcode) |
| 1 | 1 | 1 | 20µs | 23µs | DBI::BEGIN@4 |
| 2 | 1 | 1 | 10µs | 10µs | DynaLoader::CORE:ftfile (opcode) |
| 2 | 1 | 1 | 7µs | 7µs | DynaLoader::dl_install_xsub (xsub) |
| 2 | 1 | 1 | 7µs | 7µs | DynaLoader::CORE:ftsize (opcode) |
| 2 | 1 | 1 | 6µs | 6µs | DynaLoader::dl_find_symbol (xsub) |
| 1 | 1 | 1 | 4µs | 4µs | DynaLoader::BEGIN@20 |
| 2 | 1 | 1 | 3µs | 3µs | DynaLoader::dl_load_flags |
| 0 | 0 | 0 | 0s | 0s | DynaLoader::bootstrap_inherit |
| 0 | 0 | 0 | 0s | 0s | DynaLoader::croak |
| 0 | 0 | 0 | 0s | 0s | DynaLoader::dl_expandspec |
| 0 | 0 | 0 | 0s | 0s | DynaLoader::dl_find_symbol_anywhere |
| 0 | 0 | 0 | 0s | 0s | DynaLoader::dl_findfile |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | |||||
| 2 | # Generated from DynaLoader_pm.PL, this file is unique for every OS | ||||
| 3 | |||||
| 4 | 2 | 101µs | 2 | 26µs | # spent 23µs (20+3) within DBI::BEGIN@4 which was called:
# once (20µs+3µs) by DBI::BEGIN@176 at line 4 # spent 23µs making 1 call to DBI::BEGIN@4
# spent 3µs making 1 call to strict::import |
| 5 | |||||
| 6 | package DynaLoader; | ||||
| 7 | |||||
| 8 | # And Gandalf said: 'Many folk like to know beforehand what is to | ||||
| 9 | # be set on the table; but those who have laboured to prepare the | ||||
| 10 | # feast like to keep their secret; for wonder makes the words of | ||||
| 11 | # praise louder.' | ||||
| 12 | |||||
| 13 | # (Quote from Tolkien suggested by Anno Siegel.) | ||||
| 14 | # | ||||
| 15 | # See pod text at end of file for documentation. | ||||
| 16 | # See also ext/DynaLoader/README in source tree for other information. | ||||
| 17 | # | ||||
| 18 | # Tim.Bunce@ig.co.uk, August 1994 | ||||
| 19 | |||||
| 20 | # spent 4µs within DynaLoader::BEGIN@20 which was called:
# once (4µs+0s) by DBI::BEGIN@176 at line 22 | ||||
| 21 | 1 | 5µs | our $VERSION = '1.52'; | ||
| 22 | 1 | 34µs | 1 | 4µs | } # spent 4µs making 1 call to DynaLoader::BEGIN@20 |
| 23 | |||||
| 24 | # Note: in almost any other piece of code "our" would have been a better | ||||
| 25 | # option than "use vars", but DynaLoader's bootstrap files need the | ||||
| 26 | # side effect of the variable being declared in any scope whose current | ||||
| 27 | # package is DynaLoader, not just the current lexical one. | ||||
| 28 | 1 | 90µs | # spent 676µs (455+221) within DynaLoader::BEGIN@28 which was called:
# once (455µs+221µs) by DBI::BEGIN@176 at line 30 | ||
| 29 | $dl_debug @dl_librefs @dl_modules @dl_shared_objects | ||||
| 30 | 1 | 35µs | 2 | 842µs | $dl_dlext $dl_so $dlsrc @args $module @dirs $file $bscode); # spent 676µs making 1 call to DynaLoader::BEGIN@28
# spent 166µs making 1 call to vars::import |
| 31 | |||||
| 32 | 2 | 340µs | 2 | 799µs | # spent 787µs (691+96) within DynaLoader::BEGIN@32 which was called:
# once (691µs+96µs) by DBI::BEGIN@176 at line 32 # spent 787µs making 1 call to DynaLoader::BEGIN@32
# spent 12µs making 1 call to Config::import |
| 33 | |||||
| 34 | # enable debug/trace messages from DynaLoader perl code | ||||
| 35 | 1 | 1µs | $dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug; | ||
| 36 | |||||
| 37 | # | ||||
| 38 | # Flags to alter dl_load_file behaviour. Assigned bits: | ||||
| 39 | # 0x01 make symbols available for linking later dl_load_file's. | ||||
| 40 | # (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL)) | ||||
| 41 | # (ignored under VMS; effect is built-in to image linking) | ||||
| 42 | # (ignored under Android; the linker always uses RTLD_LOCAL) | ||||
| 43 | # | ||||
| 44 | # This is called as a class method $module->dl_load_flags. The | ||||
| 45 | # definition here will be inherited and result on "default" loading | ||||
| 46 | # behaviour unless a sub-class of DynaLoader defines its own version. | ||||
| 47 | # | ||||
| 48 | |||||
| 49 | 2 | 10µs | # spent 3µs within DynaLoader::dl_load_flags which was called 2 times, avg 2µs/call:
# 2 times (3µs+0s) by DynaLoader::bootstrap at line 204, avg 2µs/call | ||
| 50 | |||||
| 51 | 1 | 16µs | 3 | 7µs | ($dl_dlext, $dl_so, $dlsrc) = @Config::Config{qw(dlext so dlsrc)}; # spent 7µs making 3 calls to Config::FETCH, avg 2µs/call |
| 52 | |||||
| 53 | # Some systems need special handling to expand file specifications | ||||
| 54 | # (VMS support by Charles Bailey <bailey@HMIVAX.HUMGEN.UPENN.EDU>) | ||||
| 55 | # See dl_expandspec() for more details. Should be harmless but | ||||
| 56 | # inefficient to define on systems that don't need it. | ||||
| 57 | 1 | 400ns | my $do_expand = 0; | ||
| 58 | |||||
| 59 | 1 | 800ns | @dl_require_symbols = (); # names of symbols we need | ||
| 60 | 1 | 400ns | @dl_library_path = (); # path to look for files | ||
| 61 | |||||
| 62 | #XSLoader.pm may have added elements before we were required | ||||
| 63 | #@dl_shared_objects = (); # shared objects for symbols we have | ||||
| 64 | #@dl_librefs = (); # things we have loaded | ||||
| 65 | #@dl_modules = (); # Modules we have loaded | ||||
| 66 | |||||
| 67 | # Initialise @dl_library_path with the 'standard' library path | ||||
| 68 | # for this platform as determined by Configure. | ||||
| 69 | |||||
| 70 | 1 | 5µs | 1 | 2µs | push(@dl_library_path, split(' ', $Config::Config{libpth})); # spent 2µs making 1 call to Config::FETCH |
| 71 | |||||
| 72 | |||||
| 73 | 1 | 3µs | 1 | 2µs | my $ldlibpthname = $Config::Config{ldlibpthname}; # spent 2µs making 1 call to Config::FETCH |
| 74 | 1 | 3µs | 1 | 2µs | my $ldlibpthname_defined = defined $Config::Config{ldlibpthname}; # spent 2µs making 1 call to Config::FETCH |
| 75 | 1 | 3µs | 1 | 2µs | my $pthsep = $Config::Config{path_sep}; # spent 2µs making 1 call to Config::FETCH |
| 76 | |||||
| 77 | # Add to @dl_library_path any extra directories we can gather from environment | ||||
| 78 | # during runtime. | ||||
| 79 | |||||
| 80 | 1 | 1µs | if ($ldlibpthname_defined && | ||
| 81 | exists $ENV{$ldlibpthname}) { | ||||
| 82 | push(@dl_library_path, split(/$pthsep/, $ENV{$ldlibpthname})); | ||||
| 83 | } | ||||
| 84 | |||||
| 85 | # E.g. HP-UX supports both its native SHLIB_PATH *and* LD_LIBRARY_PATH. | ||||
| 86 | |||||
| 87 | 1 | 600ns | if ($ldlibpthname_defined && | ||
| 88 | $ldlibpthname ne 'LD_LIBRARY_PATH' && | ||||
| 89 | exists $ENV{LD_LIBRARY_PATH}) { | ||||
| 90 | push(@dl_library_path, split(/$pthsep/, $ENV{LD_LIBRARY_PATH})); | ||||
| 91 | } | ||||
| 92 | |||||
| 93 | |||||
| 94 | # No prizes for guessing why we don't say 'bootstrap DynaLoader;' here. | ||||
| 95 | # NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB | ||||
| 96 | 1 | 700ns | boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) && | ||
| 97 | !defined(&dl_error); | ||||
| 98 | |||||
| 99 | 1 | 200ns | if ($dl_debug) { | ||
| 100 | print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n"; | ||||
| 101 | print STDERR "DynaLoader not linked into this perl\n" | ||||
| 102 | unless defined(&boot_DynaLoader); | ||||
| 103 | } | ||||
| 104 | |||||
| 105 | 1 | 13µs | 1; # End of main code | ||
| 106 | |||||
| 107 | |||||
| 108 | sub croak { require Carp; Carp::croak(@_) } | ||||
| 109 | |||||
| 110 | sub bootstrap_inherit { | ||||
| 111 | my $module = $_[0]; | ||||
| 112 | |||||
| 113 | 2 | 1.17ms | 2 | 39µs | # spent 30µs (22+9) within DynaLoader::BEGIN@113 which was called:
# once (22µs+9µs) by DBI::BEGIN@176 at line 113 # spent 30µs making 1 call to DynaLoader::BEGIN@113
# spent 9µs making 1 call to strict::unimport |
| 114 | local *isa = *{"$module\::ISA"}; | ||||
| 115 | local @isa = (@isa, 'DynaLoader'); | ||||
| 116 | # Cannot goto due to delocalization. Will report errors on a wrong line? | ||||
| 117 | bootstrap(@_); | ||||
| 118 | } | ||||
| 119 | |||||
| 120 | # spent 4.44ms (140µs+4.30) within DynaLoader::bootstrap which was called 2 times, avg 2.22ms/call:
# once (70µs+3.93ms) by DBI::install_driver at line 18 of DBD/mysql.pm
# once (70µs+366µs) by DBI::BEGIN@179 at line 277 of DBI.pm | ||||
| 121 | # use local vars to enable $module.bs script to edit values | ||||
| 122 | 2 | 3µs | local(@args) = @_; | ||
| 123 | 2 | 2µs | local($module) = $args[0]; | ||
| 124 | 2 | 1µs | local(@dirs, $file); | ||
| 125 | |||||
| 126 | 2 | 900ns | unless ($module) { | ||
| 127 | require Carp; | ||||
| 128 | Carp::confess("Usage: DynaLoader::bootstrap(module)"); | ||||
| 129 | } | ||||
| 130 | |||||
| 131 | # A common error on platforms which don't support dynamic loading. | ||||
| 132 | # Since it's fatal and potentially confusing we give a detailed message. | ||||
| 133 | 2 | 2µs | croak("Can't load module $module, dynamic loading not available in this perl.\n". | ||
| 134 | " (You may need to build a new perl executable which either supports\n". | ||||
| 135 | " dynamic loading or has the $module module statically linked into it.)\n") | ||||
| 136 | unless defined(&dl_load_file); | ||||
| 137 | |||||
| - - | |||||
| 140 | 2 | 4µs | my @modparts = split(/::/,$module); | ||
| 141 | 2 | 1µs | my $modfname = $modparts[-1]; | ||
| 142 | 2 | 900ns | my $modfname_orig = $modfname; # For .bs file search | ||
| 143 | |||||
| 144 | # Some systems have restrictions on files names for DLL's etc. | ||||
| 145 | # mod2fname returns appropriate file base name (typically truncated) | ||||
| 146 | # It may also edit @modparts if required. | ||||
| 147 | 2 | 1µs | $modfname = &mod2fname(\@modparts) if defined &mod2fname; | ||
| 148 | |||||
| 149 | 2 | 3µs | my $modpname = join('/',@modparts); | ||
| 150 | |||||
| 151 | 2 | 1µs | print STDERR "DynaLoader::bootstrap for $module ", | ||
| 152 | "(auto/$modpname/$modfname.$dl_dlext)\n" | ||||
| 153 | if $dl_debug; | ||||
| 154 | |||||
| 155 | 2 | 800ns | my $dir; | ||
| 156 | 2 | 2µs | foreach (@INC) { | ||
| 157 | |||||
| 158 | 2 | 2µs | $dir = "$_/auto/$modpname"; | ||
| 159 | |||||
| 160 | 2 | 31µs | 2 | 21µs | next unless -d $dir; # skip over uninteresting directories # spent 21µs making 2 calls to DynaLoader::CORE:ftdir, avg 11µs/call |
| 161 | |||||
| 162 | # check for common cases to avoid autoload of dl_findfile | ||||
| 163 | 2 | 2µs | my $try = "$dir/$modfname.$dl_dlext"; | ||
| 164 | 2 | 19µs | 2 | 10µs | last if $file = ($do_expand) ? dl_expandspec($try) : ((-f $try) && $try); # spent 10µs making 2 calls to DynaLoader::CORE:ftfile, avg 5µs/call |
| 165 | |||||
| 166 | # no luck here, save dir for possible later dl_findfile search | ||||
| 167 | push @dirs, $dir; | ||||
| 168 | } | ||||
| 169 | # last resort, let dl_findfile have a go in all known locations | ||||
| 170 | 2 | 900ns | $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file; | ||
| 171 | |||||
| 172 | 2 | 700ns | croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)") | ||
| 173 | unless $file; # wording similar to error from 'require' | ||||
| 174 | |||||
| 175 | |||||
| 176 | 2 | 1µs | my $bootname = "boot_$module"; | ||
| 177 | 2 | 11µs | 2 | 6µs | $bootname =~ s/\W/_/g; # spent 6µs making 2 calls to DynaLoader::CORE:subst, avg 3µs/call |
| 178 | 2 | 2µs | @dl_require_symbols = ($bootname); | ||
| 179 | |||||
| 180 | # Execute optional '.bootstrap' perl script for this module. | ||||
| 181 | # The .bs file can be used to configure @dl_resolve_using etc to | ||||
| 182 | # match the needs of the individual module on this architecture. | ||||
| 183 | # N.B. The .bs file does not following the naming convention used | ||||
| 184 | # by mod2fname. | ||||
| 185 | 2 | 1µs | my $bs = "$dir/$modfname_orig"; | ||
| 186 | 2 | 40µs | 2 | 36µs | $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library # spent 36µs making 2 calls to DynaLoader::CORE:subst, avg 18µs/call |
| 187 | 2 | 12µs | 2 | 7µs | if (-s $bs) { # only read file if it's not empty # spent 7µs making 2 calls to DynaLoader::CORE:ftsize, avg 3µs/call |
| 188 | print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug; | ||||
| 189 | eval { local @INC = ('.'); do $bs; }; | ||||
| 190 | warn "$bs: $@\n" if $@; | ||||
| 191 | } | ||||
| 192 | |||||
| 193 | 2 | 800ns | my $boot_symbol_ref; | ||
| 194 | |||||
| 195 | |||||
| 196 | |||||
| 197 | # Many dynamic extension loading problems will appear to come from | ||||
| 198 | # this section of code: XYZ failed at line 123 of DynaLoader.pm. | ||||
| 199 | # Often these errors are actually occurring in the initialisation | ||||
| 200 | # C code of the extension XS file. Perl reports the error as being | ||||
| 201 | # in this perl code simply because this was the last perl code | ||||
| 202 | # it executed. | ||||
| 203 | |||||
| 204 | 2 | 9µs | 2 | 3µs | my $flags = $module->dl_load_flags; # spent 3µs making 2 calls to DynaLoader::dl_load_flags, avg 2µs/call |
| 205 | |||||
| 206 | 2 | 3.89ms | 2 | 3.87ms | my $libref = dl_load_file($file, $flags) or # spent 3.87ms making 2 calls to DynaLoader::dl_load_file, avg 1.94ms/call |
| 207 | croak("Can't load '$file' for module $module: ".dl_error()); | ||||
| 208 | |||||
| 209 | 2 | 3µs | push(@dl_librefs,$libref); # record loaded object | ||
| 210 | |||||
| 211 | 2 | 12µs | 2 | 6µs | $boot_symbol_ref = dl_find_symbol($libref, $bootname) or # spent 6µs making 2 calls to DynaLoader::dl_find_symbol, avg 3µs/call |
| 212 | croak("Can't find '$bootname' symbol in $file\n"); | ||||
| 213 | |||||
| 214 | 2 | 3µs | push(@dl_modules, $module); # record loaded module | ||
| 215 | |||||
| 216 | 2 | 14µs | 2 | 7µs | boot: # spent 7µs making 2 calls to DynaLoader::dl_install_xsub, avg 4µs/call |
| 217 | my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file); | ||||
| 218 | |||||
| 219 | # See comment block above | ||||
| 220 | |||||
| 221 | 2 | 2µs | push(@dl_shared_objects, $file); # record files loaded | ||
| 222 | |||||
| 223 | 2 | 349µs | 2 | 330µs | &$xs(@args); # spent 243µs making 1 call to DBI::bootstrap
# spent 87µs making 1 call to DBD::mysql::bootstrap |
| 224 | } | ||||
| 225 | |||||
| 226 | sub dl_findfile { | ||||
| 227 | # This function does not automatically consider the architecture | ||||
| 228 | # or the perl library auto directories. | ||||
| 229 | my (@args) = @_; | ||||
| 230 | my (@dirs, $dir); # which directories to search | ||||
| 231 | my (@found); # full paths to real files we have found | ||||
| 232 | #my $dl_ext= 'so'; # $Config::Config{'dlext'} suffix for perl extensions | ||||
| 233 | #my $dl_so = 'so'; # $Config::Config{'so'} suffix for shared libraries | ||||
| 234 | |||||
| 235 | print STDERR "dl_findfile(@args)\n" if $dl_debug; | ||||
| 236 | |||||
| 237 | # accumulate directories but process files as they appear | ||||
| 238 | arg: foreach(@args) { | ||||
| 239 | # Special fast case: full filepath requires no search | ||||
| 240 | |||||
| 241 | |||||
| 242 | if (m:/: && -f $_) { | ||||
| 243 | push(@found,$_); | ||||
| 244 | last arg unless wantarray; | ||||
| 245 | next; | ||||
| 246 | } | ||||
| 247 | |||||
| 248 | |||||
| 249 | # Deal with directories first: | ||||
| 250 | # Using a -L prefix is the preferred option (faster and more robust) | ||||
| 251 | if ( s{^-L}{} ) { push(@dirs, $_); next; } | ||||
| 252 | |||||
| 253 | # Otherwise we try to try to spot directories by a heuristic | ||||
| 254 | # (this is a more complicated issue than it first appears) | ||||
| 255 | if (m:/: && -d $_) { push(@dirs, $_); next; } | ||||
| 256 | |||||
| 257 | |||||
| 258 | |||||
| 259 | # Only files should get this far... | ||||
| 260 | my(@names, $name); # what filenames to look for | ||||
| 261 | if ( s{^-l}{} ) { # convert -lname to appropriate library name | ||||
| 262 | push(@names, "lib$_.$dl_so", "lib$_.a"); | ||||
| 263 | } else { # Umm, a bare name. Try various alternatives: | ||||
| 264 | # these should be ordered with the most likely first | ||||
| 265 | push(@names,"$_.$dl_dlext") unless m/\.$dl_dlext$/o; | ||||
| 266 | push(@names,"$_.$dl_so") unless m/\.$dl_so$/o; | ||||
| 267 | |||||
| 268 | push(@names,"lib$_.$dl_so") unless m:/:; | ||||
| 269 | push(@names, $_); | ||||
| 270 | } | ||||
| 271 | my $dirsep = '/'; | ||||
| 272 | foreach $dir (@dirs, @dl_library_path) { | ||||
| 273 | next unless -d $dir; | ||||
| 274 | |||||
| 275 | foreach $name (@names) { | ||||
| 276 | my($file) = "$dir$dirsep$name"; | ||||
| 277 | print STDERR " checking in $dir for $name\n" if $dl_debug; | ||||
| 278 | if ($do_expand && ($file = dl_expandspec($file))) { | ||||
| 279 | push @found, $file; | ||||
| 280 | next arg; # no need to look any further | ||||
| 281 | } | ||||
| 282 | elsif (-f $file) { | ||||
| 283 | push(@found, $file); | ||||
| 284 | next arg; # no need to look any further | ||||
| 285 | } | ||||
| 286 | |||||
| 287 | } | ||||
| 288 | } | ||||
| 289 | } | ||||
| 290 | if ($dl_debug) { | ||||
| 291 | foreach(@dirs) { | ||||
| 292 | print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_; | ||||
| 293 | } | ||||
| 294 | print STDERR "dl_findfile found: @found\n"; | ||||
| 295 | } | ||||
| 296 | return $found[0] unless wantarray; | ||||
| 297 | @found; | ||||
| 298 | } | ||||
| 299 | |||||
| - - | |||||
| 302 | sub dl_expandspec { | ||||
| 303 | my($spec) = @_; | ||||
| 304 | # Optional function invoked if DynaLoader.pm sets $do_expand. | ||||
| 305 | # Most systems do not require or use this function. | ||||
| 306 | # Some systems may implement it in the dl_*.xs file in which case | ||||
| 307 | # this Perl version should be excluded at build time. | ||||
| 308 | |||||
| 309 | # This function is designed to deal with systems which treat some | ||||
| 310 | # 'filenames' in a special way. For example VMS 'Logical Names' | ||||
| 311 | # (something like unix environment variables - but different). | ||||
| 312 | # This function should recognise such names and expand them into | ||||
| 313 | # full file paths. | ||||
| 314 | # Must return undef if $spec is invalid or file does not exist. | ||||
| 315 | |||||
| 316 | my $file = $spec; # default output to input | ||||
| 317 | |||||
| 318 | return undef unless -f $file; | ||||
| 319 | print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug; | ||||
| 320 | $file; | ||||
| 321 | } | ||||
| 322 | |||||
| 323 | sub dl_find_symbol_anywhere | ||||
| 324 | { | ||||
| 325 | my $sym = shift; | ||||
| 326 | my $libref; | ||||
| 327 | foreach $libref (@dl_librefs) { | ||||
| 328 | my $symref = dl_find_symbol($libref,$sym,1); | ||||
| 329 | return $symref if $symref; | ||||
| 330 | } | ||||
| 331 | return undef; | ||||
| 332 | } | ||||
| 333 | |||||
| 334 | __END__ | ||||
# spent 21µs within DynaLoader::CORE:ftdir which was called 2 times, avg 11µs/call:
# 2 times (21µs+0s) by DynaLoader::bootstrap at line 160, avg 11µs/call | |||||
# spent 10µs within DynaLoader::CORE:ftfile which was called 2 times, avg 5µs/call:
# 2 times (10µs+0s) by DynaLoader::bootstrap at line 164, avg 5µs/call | |||||
# spent 7µs within DynaLoader::CORE:ftsize which was called 2 times, avg 3µs/call:
# 2 times (7µs+0s) by DynaLoader::bootstrap at line 187, avg 3µs/call | |||||
sub DynaLoader::CORE:subst; # opcode | |||||
# spent 6µs within DynaLoader::dl_find_symbol which was called 2 times, avg 3µs/call:
# 2 times (6µs+0s) by DynaLoader::bootstrap at line 211, avg 3µs/call | |||||
# spent 7µs within DynaLoader::dl_install_xsub which was called 2 times, avg 4µs/call:
# 2 times (7µs+0s) by DynaLoader::bootstrap at line 216, avg 4µs/call | |||||
# spent 3.87ms within DynaLoader::dl_load_file which was called 2 times, avg 1.94ms/call:
# 2 times (3.87ms+0s) by DynaLoader::bootstrap at line 206, avg 1.94ms/call |