← Index
NYTProf Performance Profile   « line view »
For /usr/sbin/pkg_info
  Run on Fri Aug 4 10:12:01 2017
Reported on Fri Aug 4 10:12:17 2017

Filename/usr/libdata/perl5/Exporter/Heavy.pm
StatementsExecuted 335 statements in 2.87ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
8111.18ms1.40msExporter::Heavy::::heavy_exportExporter::Heavy::heavy_export
1021111µs111µsExporter::Heavy::::CORE:matchExporter::Heavy::CORE:match (opcode)
10531110µs110µsExporter::Heavy::::CORE:substExporter::Heavy::CORE:subst (opcode)
21126µs26µsExporter::Heavy::::_push_tagsExporter::Heavy::_push_tags
21119µs46µsExporter::Heavy::::heavy_export_ok_tagsExporter::Heavy::heavy_export_ok_tags
11117µs21µsExporter::Heavy::::BEGIN@3Exporter::Heavy::BEGIN@3
11113µs31µsExporter::Heavy::::BEGIN@202Exporter::Heavy::BEGIN@202
1119µs26µsExporter::Heavy::::BEGIN@4Exporter::Heavy::BEGIN@4
0000s0sExporter::Heavy::::__ANON__[:57]Exporter::Heavy::__ANON__[:57]
0000s0sExporter::Heavy::::__ANON__[:63]Exporter::Heavy::__ANON__[:63]
0000s0sExporter::Heavy::::_rebuild_cacheExporter::Heavy::_rebuild_cache
0000s0sExporter::Heavy::::heavy_export_tagsExporter::Heavy::heavy_export_tags
0000s0sExporter::Heavy::::heavy_export_to_levelExporter::Heavy::heavy_export_to_level
0000s0sExporter::Heavy::::heavy_require_versionExporter::Heavy::heavy_require_version
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Exporter::Heavy;
2
3231µs225µs
# spent 21µs (17+4) within Exporter::Heavy::BEGIN@3 which was called: # once (17µs+4µs) by Exporter::as_heavy at line 3
use strict;
# spent 21µs making 1 call to Exporter::Heavy::BEGIN@3 # spent 4µs making 1 call to strict::import
42999µs243µs
# spent 26µs (9+17) within Exporter::Heavy::BEGIN@4 which was called: # once (9µs+17µs) by Exporter::as_heavy at line 4
no strict 'refs';
# spent 26µs making 1 call to Exporter::Heavy::BEGIN@4 # spent 17µs making 1 call to strict::unimport
5
6# On one line so MakeMaker will see it.
722µsrequire Exporter; our $VERSION = $Exporter::VERSION;
8
9=head1 NAME
10
11Exporter::Heavy - Exporter guts
12
13=head1 SYNOPSIS
14
15(internal use only)
16
17=head1 DESCRIPTION
18
19No user-serviceable parts inside.
20
21=cut
22
23#
24# We go to a lot of trouble not to 'require Carp' at file scope,
25# because Carp requires Exporter, and something has to give.
26#
27
28sub _rebuild_cache {
29 my ($pkg, $exports, $cache) = @_;
30 s/^&// foreach @$exports;
31 @{$cache}{@$exports} = (1) x @$exports;
32 my $ok = \@{"${pkg}::EXPORT_OK"};
33 if (@$ok) {
34 s/^&// foreach @$ok;
35 @{$cache}{@$ok} = (1) x @$ok;
36 }
37}
38
39
# spent 1.40ms (1.18+221µs) within Exporter::Heavy::heavy_export which was called 8 times, avg 175µs/call: # 8 times (1.18ms+221µs) by Exporter::import at line 25 of Exporter.pm, avg 175µs/call
sub heavy_export {
40
41 # Save the old __WARN__ handler in case it was defined
42810µs my $oldwarn = $SIG{__WARN__};
43
44 # First make import warnings look like they're coming from the "use".
45 local $SIG{__WARN__} = sub {
46 # restore it back so proper stacking occurs
47 local $SIG{__WARN__} = $oldwarn;
48 my $text = shift;
49 if ($text =~ s/ at \S*Exporter\S*.pm line \d+.*\n//) {
50 require Carp;
51 local $Carp::CarpLevel = 1; # ignore package calling us too.
52 Carp::carp($text);
53 }
54 else {
55 warn $text;
56 }
57848µs };
58 local $SIG{__DIE__} = sub {
59 require Carp;
60 local $Carp::CarpLevel = 1; # ignore package calling us too.
61 Carp::croak("$_[0]Illegal null symbol in \@${1}::EXPORT")
62 if $_[0] =~ /^Unable to create sub named "(.*?)::"/;
63842µs };
64
65817µs my($pkg, $callpkg, @imports) = @_;
6686µs my($type, $sym, $cache_is_current, $oops);
67 my($exports, $export_cache) = (\@{"${pkg}::EXPORT"},
68824µs $Exporter::Cache{$pkg} ||= {});
69
70813µs if (@imports) {
71522µs if (!%$export_cache) {
72 _rebuild_cache ($pkg, $exports, $export_cache);
73 $cache_is_current = 1;
74 }
75
76550µs512µs if (grep m{^[/!:]}, @imports) {
# spent 12µs making 5 calls to Exporter::Heavy::CORE:match, avg 2µs/call
77516µs my $tagsref = \%{"${pkg}::EXPORT_TAGS"};
7854µs my $tagdata;
79 my %imports;
80 my($remove, $spec, @names, @allexports);
81 # negated first item implies starting with default set:
825116µs599µs unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/;
# spent 99µs making 5 calls to Exporter::Heavy::CORE:match, avg 20µs/call
8359µs foreach $spec (@imports){
84524µs55µs $remove = $spec =~ s/^!//;
# spent 5µs making 5 calls to Exporter::Heavy::CORE:subst, avg 940ns/call
85
86546µs521µs if ($spec =~ s/^://){
# spent 21µs making 5 calls to Exporter::Heavy::CORE:subst, avg 4µs/call
87519µs if ($spec eq 'DEFAULT'){
88 @names = @$exports;
89 }
90 elsif ($tagdata = $tagsref->{$spec}) {
91 @names = @$tagdata;
92 }
93 else {
94 warn qq["$spec" is not defined in %${pkg}::EXPORT_TAGS];
95 ++$oops;
96 next;
97 }
98 }
99 elsif ($spec =~ m:^/(.*)/$:){
100 my $patn = $1;
101 @allexports = keys %$export_cache unless @allexports; # only do keys once
102 @names = grep(/$patn/, @allexports); # not anchored by default
103 }
104 else {
105 @names = ($spec); # is a normal symbol name
106 }
107
10854µs warn "Import ".($remove ? "del":"add").": @names "
109 if $Exporter::Verbose;
110
111513µs if ($remove) {
112 foreach $sym (@names) { delete $imports{$sym} }
113 }
114 else {
115541µs @imports{@names} = (1) x @names;
116 }
117 }
118529µs @imports = keys %imports;
119 }
120
12154µs my @carp;
12258µs foreach $sym (@imports) {
1233452µs if (!$export_cache->{$sym}) {
124 if ($sym =~ m/^\d/) {
125 $pkg->VERSION($sym); # inherit from UNIVERSAL
126 # If the version number was the only thing specified
127 # then we should act as if nothing was specified:
128 if (@imports == 1) {
129 @imports = @$exports;
130 last;
131 }
132 # We need a way to emulate 'use Foo ()' but still
133 # allow an easy version check: "use Foo 1.23, ''";
134 if (@imports == 2 and !$imports[1]) {
135 @imports = ();
136 last;
137 }
138 } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) {
139 # Last chance - see if they've updated EXPORT_OK since we
140 # cached it.
141
142 unless ($cache_is_current) {
143 %$export_cache = ();
144 _rebuild_cache ($pkg, $exports, $export_cache);
145 $cache_is_current = 1;
146 }
147
148 if (!$export_cache->{$sym}) {
149 # accumulate the non-exports
150 push @carp,
151 qq["$sym" is not exported by the $pkg module\n];
152 $oops++;
153 }
154 }
155 }
156 }
15754µs if ($oops) {
158 require Carp;
159 Carp::croak("@{carp}Can't continue after import errors");
160 }
161 }
162 else {
163313µs @imports = @$exports;
164 }
165
166 my($fail, $fail_cache) = (\@{"${pkg}::EXPORT_FAIL"},
167838µs $Exporter::FailCache{$pkg} ||= {});
168
16987µs if (@$fail) {
170 if (!%$fail_cache) {
171 # Build cache of symbols. Optimise the lookup by adding
172 # barewords twice... both with and without a leading &.
173 # (Technique could be applied to $export_cache at cost of memory)
174 my @expanded = map { /^\w/ ? ($_, '&'.$_) : $_ } @$fail;
175 warn "${pkg}::EXPORT_FAIL cached: @expanded" if $Exporter::Verbose;
176 @{$fail_cache}{@expanded} = (1) x @expanded;
177 }
178 my @failed;
179 foreach $sym (@imports) { push(@failed, $sym) if $fail_cache->{$sym} }
180 if (@failed) {
181 @failed = $pkg->export_fail(@failed);
182 foreach $sym (@failed) {
183 require Carp;
184 Carp::carp(qq["$sym" is not implemented by the $pkg module ],
185 "on this architecture");
186 }
187 if (@failed) {
188 require Carp;
189 Carp::croak("Can't continue after import errors");
190 }
191 }
192 }
193
19486µs warn "Importing into $callpkg from $pkg: ",
195 join(", ",sort @imports) if $Exporter::Verbose;
196
1978174µs foreach $sym (@imports) {
198 # shortcut for the common case of no type character
19995501µs9584µs (*{"${callpkg}::$sym"} = \&{"${pkg}::$sym"}, next)
# spent 84µs making 95 calls to Exporter::Heavy::CORE:subst, avg 883ns/call
200 unless $sym =~ s/^(\W)//;
201714µs $type = $1;
2022367µs249µs
# spent 31µs (13+18) within Exporter::Heavy::BEGIN@202 which was called: # once (13µs+18µs) by Exporter::as_heavy at line 202
no warnings 'once';
# spent 31µs making 1 call to Exporter::Heavy::BEGIN@202 # spent 18µs making 1 call to warnings::unimport
203 *{"${callpkg}::$sym"} =
204 $type eq '&' ? \&{"${pkg}::$sym"} :
205 $type eq '$' ? \${"${pkg}::$sym"} :
206 $type eq '@' ? \@{"${pkg}::$sym"} :
207 $type eq '%' ? \%{"${pkg}::$sym"} :
208 $type eq '*' ? *{"${pkg}::$sym"} :
209740µs do { require Carp; Carp::croak("Can't export symbol: $type$sym") };
210 }
211}
212
213sub heavy_export_to_level
214{
215 my $pkg = shift;
216 my $level = shift;
217 (undef) = shift; # XXX redundant arg
218 my $callpkg = caller($level);
219 $pkg->export($callpkg, @_);
220}
221
222# Utility functions
223
224
# spent 26µs within Exporter::Heavy::_push_tags which was called 2 times, avg 13µs/call: # 2 times (26µs+0s) by Exporter::Heavy::heavy_export_ok_tags at line 250, avg 13µs/call
sub _push_tags {
22522µs my($pkg, $var, $syms) = @_;
22622µs my @nontag = ();
22725µs my $export_tags = \%{"${pkg}::EXPORT_TAGS"};
228 push(@{"${pkg}::$var"},
229211µs map { $export_tags->{$_} ? @{$export_tags->{$_}}
230 : scalar(push(@nontag,$_),$_) }
231 (@$syms) ? @$syms : keys %$export_tags);
232212µs if (@nontag and $^W) {
233 # This may change to a die one day
234 require Carp;
235 Carp::carp(join(", ", @nontag)." are not tags of $pkg");
236 }
237}
238
239sub heavy_require_version {
240 my($self, $wanted) = @_;
241 my $pkg = ref $self || $self;
242 return ${pkg}->VERSION($wanted);
243}
244
245sub heavy_export_tags {
246 _push_tags((caller)[0], "EXPORT", \@_);
247}
248
249
# spent 46µs (19+26) within Exporter::Heavy::heavy_export_ok_tags which was called 2 times, avg 23µs/call: # 2 times (19µs+26µs) by IO::Uncompress::Gunzip::BEGIN@12 or OpenBSD::PackageRepository::uncompress at line 89 of Exporter.pm, avg 23µs/call
sub heavy_export_ok_tags {
250217µs226µs _push_tags((caller)[0], "EXPORT_OK", \@_);
# spent 26µs making 2 calls to Exporter::Heavy::_push_tags, avg 13µs/call
251}
252
25314µs1;
 
# spent 111µs within Exporter::Heavy::CORE:match which was called 10 times, avg 11µs/call: # 5 times (99µs+0s) by Exporter::Heavy::heavy_export at line 82, avg 20µs/call # 5 times (12µs+0s) by Exporter::Heavy::heavy_export at line 76, avg 2µs/call
sub Exporter::Heavy::CORE:match; # opcode
# spent 110µs within Exporter::Heavy::CORE:subst which was called 105 times, avg 1µs/call: # 95 times (84µs+0s) by Exporter::Heavy::heavy_export at line 199, avg 883ns/call # 5 times (21µs+0s) by Exporter::Heavy::heavy_export at line 86, avg 4µs/call # 5 times (5µs+0s) by Exporter::Heavy::heavy_export at line 84, avg 940ns/call
sub Exporter::Heavy::CORE:subst; # opcode