← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/local/src/github.com/foswiki/core/bin/view
  Run on Sun Dec 4 17:17:59 2011
Reported on Sun Dec 4 17:27:12 2011

Filename/usr/share/perl/5.14/utf8.pm
StatementsExecuted 7 statements in 145µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1114.32ms4.63msutf8::::AUTOLOADutf8::AUTOLOAD
11113µs13µ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
312µs$utf8::hint_bits = 0x00800000;
4
512µsour $VERSION = '1.09';
6
7
# spent 13µs within utf8::import which was called: # once (13µs+0s) by Foswiki::Logger::PlainFile::BEGIN@6 at line 6 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Logger/PlainFile.pm
sub import {
813µs $^H |= $utf8::hint_bits;
9122µs $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 4.63ms (4.32+310µs) within utf8::AUTOLOAD which was called: # once (4.32ms+310µs) by Safe::CORE:regcomp at line 69 of Safe.pm
sub AUTOLOAD {
17195µs require "utf8_heavy.pl";
18116µs167.5ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 67.5ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2315µs1;
24__END__