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

Filename/usr/share/perl/5.10/utf8.pm
StatementsExecuted 17 statements in 198µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.92ms2.12msutf8::::AUTOLOADutf8::AUTOLOAD
66630µs30µ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
311µs$utf8::hint_bits = 0x00800000;
4
51800nsour $VERSION = '1.07';
6
7
# spent 30µs within utf8::import which was called 6 times, avg 5µs/call: # once (10µs+0s) by XML::Simple::BEGIN@1687 at line 1687 of XML/Simple.pm # once (6µs+0s) by C4::Search::BEGIN@39 at line 39 of /usr/share/koha/lib/C4/Search.pm # once (5µs+0s) by DateTime::Locale::en_US::BEGIN@23 at line 23 of DateTime/Locale/en_US.pm # once (4µs+0s) by DateTime::Locale::Catalog::BEGIN@19 at line 19 of DateTime/Locale/Catalog.pm # once (3µs+0s) by DateTime::Locale::root::BEGIN@23 at line 23 of DateTime/Locale/root.pm # once (3µs+0s) by DateTime::Locale::en::BEGIN@23 at line 23 of DateTime/Locale/en.pm
sub import {
8612µs $^H |= $utf8::hint_bits;
9648µs $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 2.12ms (1.92+201µs) within utf8::AUTOLOAD which was called: # once (1.92ms+201µs) by XML::Simple::CORE:match at line 1023 of XML/Simple.pm
sub AUTOLOAD {
171117µs require "utf8_heavy.pl";
18113µs16.58ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 6.58ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2316µs1;
24__END__