← 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:04 2013

Filename/usr/share/perl/5.10/integer.pm
StatementsExecuted 30 statements in 286µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
20201185µs85µsinteger::::importinteger::import
77341µs41µsinteger::::unimportinteger::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package integer;
2
31700nsour $VERSION = '1.00';
4
51300ns$integer::hint_bits = 0x1;
6
7
# spent 85µs within integer::import which was called 20 times, avg 4µs/call: # once (10µs+0s) by Date::Manip::Recur::BEGIN@22 at line 22 of Date/Manip/Recur.pm # once (6µs+0s) by MARC::File::BEGIN@10 at line 10 of MARC/File.pm # once (6µs+0s) by Math::BigInt::Calc::BEGIN@787 at line 787 of Math/BigInt/Calc.pm # once (5µs+0s) by DateTime::BEGIN@1846 at line 1846 of DateTime.pm # once (5µs+0s) by DateTime::BEGIN@672 at line 672 of DateTime.pm # once (5µs+0s) by Math::BigInt::Calc::BEGIN@2080 at line 2080 of Math/BigInt/Calc.pm # once (4µs+0s) by Math::BigInt::Calc::BEGIN@137 at line 137 of Math/BigInt/Calc.pm # once (4µs+0s) by MARC::Record::BEGIN@10 at line 10 of MARC/Record.pm # once (4µs+0s) by Date::Manip::Date::BEGIN@1163 at line 1163 of Date/Manip/Date.pm # once (4µs+0s) by Date::Manip::Date::BEGIN@2900 at line 2900 of Date/Manip/Date.pm # once (4µs+0s) by Math::BigInt::Calc::BEGIN@2115 at line 2115 of Math/BigInt/Calc.pm # once (4µs+0s) by Date::Manip::BEGIN@52 at line 52 of Date/Manip.pm # once (4µs+0s) by MARC::File::USMARC::BEGIN@10 at line 10 of MARC/File/USMARC.pm # once (4µs+0s) by Time::Local::BEGIN@7 at line 7 of Time/Local.pm # once (4µs+0s) by Date::Manip::Date::BEGIN@20 at line 20 of Date/Manip/Date.pm # once (3µs+0s) by Math::BigInt::Calc::BEGIN@470 at line 470 of Math/BigInt/Calc.pm # once (3µs+0s) by Math::BigInt::Calc::BEGIN@2151 at line 2151 of Math/BigInt/Calc.pm # once (3µs+0s) by Date::Manip::Base::BEGIN@20 at line 20 of Date/Manip/Base.pm # once (3µs+0s) by MARC::Field::BEGIN@4 at line 4 of MARC/Field.pm # once (3µs+0s) by Math::BigInt::Calc::BEGIN@154 at line 154 of Math/BigInt/Calc.pm
sub import {
820191µs $^H |= $integer::hint_bits;
9}
10
11
# spent 41µs within integer::unimport which was called 7 times, avg 6µs/call: # once (9µs+0s) by Date::Manip::Date::BEGIN@2890 at line 2890 of Date/Manip/Date.pm # once (8µs+0s) by Date::Manip::Base::BEGIN@2523 at line 2523 of Date/Manip/Base.pm # once (8µs+0s) by Date::Manip::Date::BEGIN@1134 at line 1134 of Date/Manip/Date.pm # once (5µs+0s) by Date::Manip::Base::BEGIN@378 at line 378 of Date/Manip/Base.pm # once (4µs+0s) by Math::BigInt::Calc::BEGIN@165 at line 165 of Math/BigInt/Calc.pm # once (3µs+0s) by Date::Manip::Base::BEGIN@562 at line 562 of Date/Manip/Base.pm # once (3µs+0s) by Date::Manip::Base::BEGIN@2568 at line 2568 of Date/Manip/Base.pm
sub unimport {
12790µs $^H &= ~$integer::hint_bits;
13}
14
1514µs1;