← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:22:34 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux/Config.pm
StatementsExecuted 85 statements in 663µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.62ms1.72msConfig::::AUTOLOADConfig::AUTOLOAD
1310665µs1.93msConfig::::FETCHConfig::FETCH
55565µs65µsConfig::::importConfig::import
11136µs36µsConfig::::CORE:substConfig::CORE:subst (opcode)
21129µs29µsConfig::::CORE:substcontConfig::CORE:substcont (opcode)
11112µs12µsConfig::::CORE:packConfig::CORE:pack (opcode)
11111µs15µsConfig::::BEGIN@9Config::BEGIN@9
1116µs39µsConfig::::BEGIN@35Config::BEGIN@35
1116µs6µsConfig::::TIEHASHConfig::TIEHASH
1116µs6µsConfig::::CORE:unpackConfig::CORE:unpack (opcode)
1112µs2µsConfig::::CORE:matchConfig::CORE:match (opcode)
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;
93116µs218µs
# spent 15µs (11+3) within Config::BEGIN@9 which was called: # once (11µs+3µs) by DynaLoader::BEGIN@25 at line 9
use strict;
# spent 15µs making 1 call to Config::BEGIN@9 # spent 3µs making 1 call to strict::import
10# use warnings; Pulls in Carp
11# use vars pulls in Carp
1211µs@Config::EXPORT = qw(%Config);
131900ns@Config::EXPORT_OK = qw(myconfig config_sh config_vars config_re);
14
15# Need to stub all the functions to make code such as print Config::config_sh
16# keep working
17
18sub myconfig;
19sub config_sh;
20sub config_vars;
21sub config_re;
22
2316µsmy %Export_Cache = map {($_ => 1)} (@Config::EXPORT, @Config::EXPORT_OK);
24
251200nsour %Config;
26
27# Define our own import method to avoid pulling in the full Exporter:
28
# spent 65µs within Config::import which was called 5 times, avg 13µs/call: # once (14µs+0s) by Test::Builder::BEGIN@19 at line 19 of Test/Builder.pm # once (14µs+0s) by Time::Local::BEGIN@5 at line 5 of Time/Local.pm # once (14µs+0s) by Errno::BEGIN@8 at line 8 of Errno.pm # once (13µs+0s) by Memoize::BEGIN@28 at line 28 of Memoize.pm # once (9µs+0s) by DynaLoader::BEGIN@25 at line 25 of DynaLoader.pm
sub import {
294077µs my $pkg = shift;
30 @_ = @Config::EXPORT unless @_;
31
32 my @funcs = grep $_ ne '%Config', @_;
33 my $export_Config = @funcs < @_ ? 1 : 0;
34
353239µs272µs
# spent 39µs (6+33) within Config::BEGIN@35 which was called: # once (6µs+33µs) by DynaLoader::BEGIN@25 at line 35
no strict 'refs';
# spent 39µs making 1 call to Config::BEGIN@35 # spent 33µs making 1 call to strict::unimport
36 my $callpkg = caller(0);
37 foreach my $func (@funcs) {
38 die sprintf qq{"%s" is not exported by the %s module\n},
39 $func, __PACKAGE__ unless $Export_Cache{$func};
40 *{$callpkg.'::'.$func} = \&{$func};
41 }
42
43 *{"$callpkg\::Config"} = \%Config if $export_Config;
44 return;
45}
46
47120µs110µsdie "Perl lib version (5.12.3) doesn't match executable version ($])"
# spent 10µs making 1 call to version::(bool
48 unless $^V;
49
50110µs16µs$^V eq 5.12.3
# spent 6µs making 1 call to version::(cmp
51 or die "Perl lib version (5.12.3) doesn't match executable version (" .
52 sprintf("v%vd",$^V) . ")";
53
54
55
# spent 1.93ms (65µs+1.87) within Config::FETCH which was called 13 times, avg 149µs/call: # 3 times (30µs+1.81ms) by Data::OptList::BEGIN@10 at line 43 of DynaLoader.pm, avg 613µs/call # 2 times (7µs+0s) by File::Slurp::BEGIN@12 at line 11 of Errno.pm, avg 3µs/call # once (7µs+60µs) by Memoize::memoize at line 71 of Memoize.pm # once (6µs+0s) by Module::Find::BEGIN@8 at line 1337 of File/Find.pm # once (5µs+0s) by Data::Compare::BEGIN@24 at line 378 of Cwd.pm # once (4µs+0s) by Test::Builder::BEGIN@18 at line 22 of Test/Builder.pm # once (2µs+0s) by Data::OptList::BEGIN@10 at line 65 of DynaLoader.pm # once (2µs+0s) by Data::OptList::BEGIN@10 at line 68 of DynaLoader.pm # once (1µs+0s) by Data::OptList::BEGIN@10 at line 70 of DynaLoader.pm # once (1µs+0s) by Data::OptList::BEGIN@10 at line 69 of DynaLoader.pm
sub FETCH {
562994µs my($self, $key) = @_;
57
58 # check for cached value (which may be undef so we use exists not defined)
59 return $self->{$key} if exists $self->{$key};
60
6131.82ms return $self->fetch_string($key);
# spent 1.72ms making 1 call to Config::AUTOLOAD # spent 108µs making 2 calls to Config::fetch_string, avg 54µs/call
62}
63
# spent 6µs within Config::TIEHASH which was called: # once (6µs+0s) by DynaLoader::BEGIN@25 at line 76
sub TIEHASH {
6418µs bless $_[1], $_[0];
65}
66
67sub DESTROY { }
68
69
# spent 1.72ms (1.62+94µs) within Config::AUTOLOAD which was called: # once (1.62ms+94µs) by Config::FETCH at line 61
sub AUTOLOAD {
70263µs require 'Config_heavy.pl';
7129µs goto \&launcher unless $Config::AUTOLOAD =~ /launcher$/;
# spent 7µs making 1 call to Config::launcher # spent 2µs making 1 call to Config::CORE:match
72 die "&Config::AUTOLOAD failed on $Config::AUTOLOAD";
73}
74
75# tie returns the object, so the value returned to require will be true.
76128µs16µstie %Config, 'Config', {
# spent 6µs making 1 call to Config::TIEHASH
77 archlibexp => '/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux',
78 archname => 'x86_64-linux',
79 cc => 'cc',
80 d_readlink => 'define',
81 d_symlink => 'define',
82 dlsrc => 'dl_dlopen.xs',
83 dont_use_nlink => undef,
84 exe_ext => '',
85 inc_version_list => ' ',
86 intsize => '4',
87 ldlibpthname => 'LD_LIBRARY_PATH',
88 libpth => '/usr/local/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib',
89 osname => 'linux',
90 osvers => '3.0.0-14-generic',
91 path_sep => ':',
92 privlibexp => '/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3',
93 scriptdir => '/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/bin',
94 sitearchexp => '/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux',
95 sitelibexp => '/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3',
96 useithreads => undef,
97 usevendorprefix => undef,
98 version => '5.12.3',
99};
 
# spent 2µs within Config::CORE:match which was called: # once (2µs+0s) by Config::AUTOLOAD at line 71
sub Config::CORE:match; # opcode
# spent 12µs within Config::CORE:pack which was called: # once (12µs+0s) by Config::AUTOLOAD at line 1210 of Config_heavy.pl
sub Config::CORE:pack; # opcode
# spent 36µs within Config::CORE:subst which was called: # once (36µs+0s) by Config::AUTOLOAD at line 1211 of Config_heavy.pl
sub Config::CORE:subst; # opcode
# spent 29µs within Config::CORE:substcont which was called 2 times, avg 15µs/call: # 2 times (29µs+0s) by Config::AUTOLOAD at line 1211 of Config_heavy.pl, avg 15µs/call
sub Config::CORE:substcont; # opcode
# spent 6µs within Config::CORE:unpack which was called: # once (6µs+0s) by Config::AUTOLOAD at line 1210 of Config_heavy.pl
sub Config::CORE:unpack; # opcode