← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 11:58:52 2013
Reported on Tue Oct 15 12:01:09 2013

Filename/usr/share/perl/5.10/warnings/register.pm
StatementsExecuted 402 statements in 843µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
666714µs822µswarnings::register::::importwarnings::register::import
1221109µs109µ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
51700nsrequire warnings;
6
7sub mkMask
8
# spent 109µs within warnings::register::mkMask which was called 12 times, avg 9µs/call: # 6 times (72µs+0s) by warnings::register::import at line 21, avg 12µs/call # 6 times (37µs+0s) by warnings::register::import at line 27, avg 6µs/call
{
948155µs my ($bit) = @_;
10 my $mask = "";
11
12 vec($mask, $bit, 1) = 1;
13 return $mask;
14}
15
16sub import
17
# spent 822µs (714+109) within warnings::register::import which was called 6 times, avg 137µs/call: # once (144µs+21µs) by Tie::Hash::BEGIN@6 at line 6 of Tie/Hash.pm # once (140µs+24µs) by overload::BEGIN@139 at line 139 of overload.pm # once (138µs+21µs) by constant::BEGIN@4 at line 4 of constant.pm # once (124µs+15µs) by vars::BEGIN@7 at line 7 of vars.pm # once (91µs+14µs) by IO::Select::BEGIN@10 at line 10 of IO/Select.pm # once (77µs+12µs) by Socket::BEGIN@7 at line 7 of Socket.pm
{
181894µs shift;
19 my $package = (caller(0))[0];
2036226µs if (! defined $warnings::Bits{$package}) {
21672µs $warnings::Bits{$package} = mkMask($warnings::LAST_BIT);
# spent 72µs making 6 calls to warnings::register::mkMask, avg 12µ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) {
25297359µs vec($warnings::Bits{$k}, $warnings::LAST_BIT, 1) = 0;
26 }
27637µs $warnings::DeadBits{$package} = mkMask($warnings::LAST_BIT);
# spent 37µs making 6 calls to warnings::register::mkMask, avg 6µs/call
28 vec($warnings::DeadBits{'all'}, $warnings::LAST_BIT++, 1) = 1;
29 }
30}
31
3215µs1;