← 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 17:10:45 2013
Reported on Tue Oct 15 17:11:21 2013

Filename/usr/share/perl/5.10/utf8.pm
StatementsExecuted 19 statements in 246µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1112.88ms3.13msutf8::::AUTOLOADutf8::AUTOLOAD
77734µs34µsutf8::::importutf8::import
0000s0sutf8::::unimportutf8::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package utf8;
2
31500ns$utf8::hint_bits = 0x00800000;
4
51400nsour $VERSION = '1.07';
6
7
# spent 34µs within utf8::import which was called 7 times, avg 5µs/call: # once (9µs+0s) by XML::Simple::BEGIN@1687 at line 1687 of XML/Simple.pm # once (5µs+0s) by C4::Search::BEGIN@39 at line 39 of /usr/share/koha/lib/C4/Search.pm # once (5µs+0s) by IO::Compress::Base::Common::BEGIN@101 at line 101 of IO/Compress/Base/Common.pm # once (5µs+0s) by DateTime::Locale::Catalog::BEGIN@19 at line 19 of DateTime/Locale/Catalog.pm # once (4µs+0s) by DateTime::Locale::en_US::BEGIN@23 at line 23 of DateTime/Locale/en_US.pm # once (3µs+0s) by DateTime::Locale::en::BEGIN@23 at line 23 of DateTime/Locale/en.pm # once (3µs+0s) by DateTime::Locale::root::BEGIN@23 at line 23 of DateTime/Locale/root.pm
sub import {
81460µs $^H |= $utf8::hint_bits;
9 $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 3.13ms (2.88+246µs) within utf8::AUTOLOAD which was called: # once (2.88ms+246µs) by DBI::CORE:subst at line 600 of DBI.pm
sub AUTOLOAD {
172182µs require "utf8_heavy.pl";
18131.2ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 31.2ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2313µs1;
24__END__