← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mongo_pain.pl
  Run on Fri Mar 25 17:00:29 2011
Reported on Fri Mar 25 17:07:08 2011

Filename/usr/share/perl/5.10/feature.pm
StatementsExecuted 28 statements in 100µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11164µs81µsfeature::::importfeature::import
1118µs8µsfeature::::CORE:substfeature::CORE:subst (opcode)
2118µs8µsfeature::::CORE:substcontfeature::CORE:substcont (opcode)
0000s0sfeature::::croakfeature::croak
0000s0sfeature::::unimportfeature::unimport
0000s0sfeature::::unknown_featurefeature::unknown_feature
0000s0sfeature::::unknown_feature_bundlefeature::unknown_feature_bundle
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package feature;
2
31800nsour $VERSION = '1.13';
4
5# (feature name) => (internal name, used in %^H)
613µsmy %feature = (
7 switch => 'feature_switch',
8 say => "feature_say",
9 state => "feature_state",
10);
11
12# NB. the latest bundle must be loaded by the -E switch (see toke.c)
13
1415µsmy %feature_bundle = (
15 "5.10" => [qw(switch say state)],
16### "5.11" => [qw(switch say state)],
17);
18
19# special case
201800ns$feature_bundle{"5.9.5"} = $feature_bundle{"5.10"};
21
22# TODO:
23# - think about versioned features (use feature switch => 2)
24
25=head1 NAME
26
- -
145
# spent 81µs (64+17) within feature::import which was called: # once (64µs+17µs) by main::BEGIN@3.1 at line 3 of mongo_pain.pl
sub import {
14611µs my $class = shift;
14711µs if (@_ == 0) {
148 croak("No features specified");
149 }
15015µs while (@_) {
15142µs my $name = shift(@_);
152410µs if (substr($name, 0, 1) eq ":") {
1531800ns my $v = substr($name, 1);
15412µs if (!exists $feature_bundle{$v}) {
155144µs317µs $v =~ s/^([0-9]+)\.([0-9]+).[0-9]+$/$1.$2/;
# spent 8µs making 1 call to feature::CORE:subst # spent 8µs making 2 calls to feature::CORE:substcont, avg 4µs/call
1561900ns if (!exists $feature_bundle{$v}) {
157 unknown_feature_bundle(substr($name, 1));
158 }
159 }
16014µs unshift @_, @{$feature_bundle{$v}};
16113µs next;
162 }
1633900ns if (!exists $feature{$name}) {
164 unknown_feature($name);
165 }
16639µs $^H{$feature{$name}} = 1;
167 }
168}
169
170sub unimport {
171 my $class = shift;
172
173 # A bare C<no feature> should disable *all* features
174 if (!@_) {
175 delete @^H{ values(%feature) };
176 return;
177 }
178
179 while (@_) {
180 my $name = shift;
181 if (substr($name, 0, 1) eq ":") {
182 my $v = substr($name, 1);
183 if (!exists $feature_bundle{$v}) {
184 $v =~ s/^([0-9]+)\.([0-9]+).[0-9]+$/$1.$2/;
185 if (!exists $feature_bundle{$v}) {
186 unknown_feature_bundle(substr($name, 1));
187 }
188 }
189 unshift @_, @{$feature_bundle{$v}};
190 next;
191 }
192 if (!exists($feature{$name})) {
193 unknown_feature($name);
194 }
195 else {
196 delete $^H{$feature{$name}};
197 }
198 }
199}
200
201sub unknown_feature {
202 my $feature = shift;
203 croak(sprintf('Feature "%s" is not supported by Perl %vd',
204 $feature, $^V));
205}
206
207sub unknown_feature_bundle {
208 my $feature = shift;
209 croak(sprintf('Feature bundle "%s" is not supported by Perl %vd',
210 $feature, $^V));
211}
212
213sub croak {
214 require Carp;
215 Carp::croak(@_);
216}
217
21817µs1;
 
# spent 8µs within feature::CORE:subst which was called: # once (8µs+0s) by feature::import at line 155
sub feature::CORE:subst; # opcode
# spent 8µs within feature::CORE:substcont which was called 2 times, avg 4µs/call: # 2 times (8µs+0s) by feature::import at line 155, avg 4µs/call
sub feature::CORE:substcont; # opcode