← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 03:38:15 2020
Reported on Wed Feb 12 04:56:35 2020

Filename/usr/lib/x86_64-linux-gnu/perl/5.28/Config.pm
StatementsExecuted 104 statements in 2.05ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1114.48ms4.57msConfig::::AUTOLOADConfig::AUTOLOAD
2411584µs4.69msConfig::::FETCHConfig::FETCH
55570µs70µsConfig::::importConfig::import
11114µs18µsConfig::::BEGIN@9Config::BEGIN@9
1116µs29µsConfig::::BEGIN@10Config::BEGIN@10
1116µs20µsConfig::::BEGIN@47Config::BEGIN@47
1111µs1µsConfig::::TIEHASHConfig::TIEHASH
0000s0sConfig::::DESTROYConfig::DESTROY
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# This file was created by configpm when Perl was built. Any changes
2# made to this file will be lost the next time perl is built.
3
4# for a description of the variables, please have a look at the
5# Glossary file, as written in the Porting folder, or use the url:
6# http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary
7
8package Config;
9223µs221µs
# spent 18µs (14+3) within Config::BEGIN@9 which was called: # once (14µs+3µs) by lib::BEGIN@6 at line 9
use strict;
# spent 18µs making 1 call to Config::BEGIN@9 # spent 3µs making 1 call to strict::import
102178µs252µs
# spent 29µs (6+23) within Config::BEGIN@10 which was called: # once (6µs+23µs) by lib::BEGIN@6 at line 10
use warnings;
# spent 29µs making 1 call to Config::BEGIN@10 # spent 23µs making 1 call to warnings::import
11our ( %Config, $VERSION );
12
131300ns$VERSION = "5.028001";
14
15# Skip @Config::EXPORT because it only contains %Config, which we special
16# case below as it's not a function. @Config::EXPORT won't change in the
17# lifetime of Perl 5.
18117µsmy %Export_Cache = (myconfig => 1, config_sh => 1, config_vars => 1,
19 config_re => 1, compile_date => 1, local_patches => 1,
20 bincompat_options => 1, non_bincompat_options => 1,
21 header_files => 1);
22
231800ns@Config::EXPORT = qw(%Config);
2412µs@Config::EXPORT_OK = keys %Export_Cache;
25
26# Need to stub all the functions to make code such as print Config::config_sh
27# keep working
28
29sub bincompat_options;
30sub compile_date;
31sub config_re;
32sub config_sh;
33sub config_vars;
34sub header_files;
35sub local_patches;
36sub myconfig;
37sub non_bincompat_options;
38
39# Define our own import method to avoid pulling in the full Exporter:
40
# spent 70µs within Config::import which was called 5 times, avg 14µs/call: # once (20µs+0s) by DynaLoader::BEGIN@21 at line 21 of DynaLoader.pm # once (15µs+0s) by File::Copy::BEGIN@14 at line 14 of File/Copy.pm # once (14µs+0s) by Path::Tiny::BEGIN@11 at line 11 of Path/Tiny.pm # once (14µs+0s) by locale::BEGIN@4 at line 4 of locale.pm # once (8µs+0s) by lib::BEGIN@6 at line 6 of lib.pm
sub import {
4151µs shift;
4259µs @_ = @Config::EXPORT unless @_;
43
44510µs my @funcs = grep $_ ne '%Config', @_;
4554µs my $export_Config = @funcs < @_ ? 1 : 0;
46
472338µs234µs
# spent 20µs (6+14) within Config::BEGIN@47 which was called: # once (6µs+14µs) by lib::BEGIN@6 at line 47
no strict 'refs';
# spent 20µs making 1 call to Config::BEGIN@47 # spent 14µs making 1 call to strict::unimport
4854µs my $callpkg = caller(0);
4954µs foreach my $func (@funcs) {
50 die qq{"$func" is not exported by the Config module\n}
51 unless $Export_Cache{$func};
52 *{$callpkg.'::'.$func} = \&{$func};
53 }
54
55522µs *{"$callpkg\::Config"} = \%Config if $export_Config;
56521µs return;
57}
58
59131µs14µsdie "$0: Perl lib version (5.28.1) doesn't match executable '$^X' version ($])"
# spent 4µs making 1 call to version::(bool
60 unless $^V;
61
6217µs13µs$^V eq 5.28.1
# spent 3µs making 1 call to version::(cmp
63 or die sprintf "%s: Perl lib version (5.28.1) doesn't match executable '$^X' version (%vd)", $0, $^V;
64
65
# spent 4.69ms (84µs+4.61) within Config::FETCH which was called 24 times, avg 196µs/call: # 12 times (46µs+0s) by File::Copy::copy at line 102 of File/Copy.pm, avg 4µs/call # 3 times (7µs+0s) by RBM::BEGIN@22 at line 40 of DynaLoader.pm, avg 2µs/call # once (17µs+4.61ms) by RBM::BEGIN@5 at line 65 of Path/Tiny.pm # once (4µs+0s) by File::Spec::Unix::BEGIN@4 at line 214 of Cwd.pm # once (3µs+0s) by main::BEGIN@5 at line 10 of lib.pm # once (2µs+0s) by RBM::BEGIN@22 at line 55 of DynaLoader.pm # once (1µs+0s) by RBM::BEGIN@22 at line 57 of DynaLoader.pm # once (1µs+0s) by main::BEGIN@5 at line 11 of lib.pm # once (1µs+0s) by main::BEGIN@5 at line 12 of lib.pm # once (1µs+0s) by RBM::BEGIN@22 at line 59 of DynaLoader.pm # once (1µs+0s) by RBM::BEGIN@22 at line 58 of DynaLoader.pm
sub FETCH {
662411µs my($self, $key) = @_;
67
68 # check for cached value (which may be undef so we use exists not defined)
6924109µs14.57ms return exists $self->{$key} ? $self->{$key} : $self->fetch_string($key);
# spent 4.57ms making 1 call to Config::AUTOLOAD
70}
71
72
# spent 1µs within Config::TIEHASH which was called: # once (1µs+0s) by lib::BEGIN@6 at line 85
sub TIEHASH {
7312µs bless $_[1], $_[0];
74}
75
76sub DESTROY { }
77
78
# spent 4.57ms (4.48+93µs) within Config::AUTOLOAD which was called: # once (4.48ms+93µs) by Config::FETCH at line 69
sub AUTOLOAD {
7911.21ms require 'Config_heavy.pl';
80112µs29µs goto \&launcher unless $Config::AUTOLOAD =~ /launcher$/;
# spent 8µs making 1 call to Config::launcher # spent 1µs making 1 call to Config::CORE:match
81 die "&Config::AUTOLOAD failed on $Config::AUTOLOAD";
82}
83
84# tie returns the object, so the value returned to require will be true.
85125µs11µstie %Config, 'Config', {
# spent 1µs making 1 call to Config::TIEHASH
86 archlibexp => '/usr/lib/x86_64-linux-gnu/perl/5.28',
87 archname => 'x86_64-linux-gnu-thread-multi',
88 cc => 'x86_64-linux-gnu-gcc',
89 d_readlink => 'define',
90 d_symlink => 'define',
91 dlext => 'so',
92 dlsrc => 'dl_dlopen.xs',
93 dont_use_nlink => undef,
94 exe_ext => '',
95 inc_version_list => '5.28.0 5.28.0/x86_64-linux-gnu-thread-multi',
96 intsize => '4',
97 ldlibpthname => 'LD_LIBRARY_PATH',
98 libpth => '/usr/local/lib /usr/lib/gcc/x86_64-linux-gnu/8/include-fixed /usr/include/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib',
99 osname => 'linux',
100 osvers => '4.9.0',
101 path_sep => ':',
102 privlibexp => '/usr/share/perl/5.28',
103 scriptdir => '/usr/bin',
104 sitearchexp => '/usr/local/lib/x86_64-linux-gnu/perl/5.28.1',
105 sitelibexp => '/usr/local/share/perl/5.28.1',
106 so => 'so',
107 useithreads => 'define',
108 usevendorprefix => 'define',
109 version => '5.28.1',
110};