← Index
NYTProf Performance Profile   « block view • line view • sub view »
For conv.pl
  Run on Sun Nov 14 21:09:12 2010
Reported on Sun Nov 14 21:13:12 2010

Filename/usr/share/perl/5.10/warnings/register.pm
StatementsExecuted 265 statements in 811µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
444717µs795µswarnings::register::::importwarnings::register::import
82178µs78µswarnings::register::::mkMaskwarnings::register::mkMask
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package warnings::register;
2
312µsour $VERSION = '1.01';
4
511µsrequire warnings;
6
7sub mkMask
8
# spent 78µs within warnings::register::mkMask which was called 8 times, avg 10µs/call: # 4 times (42µs+0s) by warnings::register::import at line 21, avg 11µs/call # 4 times (36µs+0s) by warnings::register::import at line 27, avg 9µs/call
{
93298µs my ($bit) = @_;
10 my $mask = "";
11
12 vec($mask, $bit, 1) = 1;
13 return $mask;
14}
15
16sub import
17
# spent 795µs (717+78) within warnings::register::import which was called 4 times, avg 199µs/call: # once (229µs+21µs) by overload::BEGIN@139 at line 139 of overload.pm # once (174µs+17µs) by Tie::Hash::BEGIN@6 at line 6 of Tie/Hash.pm # once (162µs+21µs) by constant::BEGIN@4 at line 4 of constant.pm # once (152µs+19µs) by vars::BEGIN@7 at line 7 of vars.pm
{
18230705µs shift;
19 my $package = (caller(0))[0];
20 if (! defined $warnings::Bits{$package}) {
21442µs $warnings::Bits{$package} = mkMask($warnings::LAST_BIT);
# spent 42µs making 4 calls to warnings::register::mkMask, avg 11µs/call
22 vec($warnings::Bits{'all'}, $warnings::LAST_BIT, 1) = 1;
23 $warnings::Offsets{$package} = $warnings::LAST_BIT ++;
24 foreach my $k (keys %warnings::Bits) {
25 vec($warnings::Bits{$k}, $warnings::LAST_BIT, 1) = 0;
26 }
27436µs $warnings::DeadBits{$package} = mkMask($warnings::LAST_BIT);
# spent 36µs making 4 calls to warnings::register::mkMask, avg 9µs/call
28 vec($warnings::DeadBits{'all'}, $warnings::LAST_BIT++, 1) = 1;
29 }
30}
31
3215µs1;