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

Filename/usr/share/perl/5.10/warnings/register.pm
StatementsExecuted 265 statements in 755µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
444669µs743µswarnings::register::::importwarnings::register::import
82174µs74µ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
311µsour $VERSION = '1.01';
4
511µsrequire warnings;
6
7sub mkMask
8
# spent 74µs within warnings::register::mkMask which was called 8 times, avg 9µs/call: # 4 times (41µs+0s) by warnings::register::import at line 21, avg 10µs/call # 4 times (33µs+0s) by warnings::register::import at line 27, avg 8µs/call
{
93292µs my ($bit) = @_;
10 my $mask = "";
11
12 vec($mask, $bit, 1) = 1;
13 return $mask;
14}
15
16sub import
17
# spent 743µs (669+74) within warnings::register::import which was called 4 times, avg 186µs/call: # once (193µs+20µs) by overload::BEGIN@139 at line 139 of overload.pm # once (169µs+20µs) by Tie::Hash::BEGIN@6 at line 6 of Tie/Hash.pm # once (154µs+17µs) by vars::BEGIN@7 at line 7 of vars.pm # once (153µs+17µs) by constant::BEGIN@4 at line 4 of constant.pm
{
18230657µs shift;
19 my $package = (caller(0))[0];
20 if (! defined $warnings::Bits{$package}) {
21441µs $warnings::Bits{$package} = mkMask($warnings::LAST_BIT);
# spent 41µs making 4 calls to warnings::register::mkMask, avg 10µ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 }
27433µs $warnings::DeadBits{$package} = mkMask($warnings::LAST_BIT);
# spent 33µs making 4 calls to warnings::register::mkMask, avg 8µs/call
28 vec($warnings::DeadBits{'all'}, $warnings::LAST_BIT++, 1) = 1;
29 }
30}
31
3214µs1;