← Index
NYTProf Performance Profile   « block view • line view • sub view »
For reply.pl
  Run on Thu Oct 21 22:40:13 2010
Reported on Thu Oct 21 22:44:43 2010

Filename/home/hinrik/perl5/perlbrew/perls/perl-5.13.5/lib/5.13.5/utf8.pm
StatementsExecuted 9 statements in 181µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.97ms2.14msutf8::::AUTOLOADutf8::AUTOLOAD
22211µs11µ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
511µsour $VERSION = '1.08';
6
7
# spent 11µs within utf8::import which was called 2 times, avg 6µs/call: # once (6µs+0s) by Hailo::Tokenizer::Words::BEGIN@10 at line 10 of Hailo/Tokenizer/Words.pm # once (5µs+0s) by Text::Unidecode::BEGIN@4 at line 4 of Text/Unidecode.pm
sub import {
824µs $^H |= $utf8::hint_bits;
9212µs $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 2.14ms (1.97+165µs) within utf8::AUTOLOAD which was called: # once (1.97ms+165µs) by Hailo::Tokenizer::Words::CORE:subst at line 188 of Hailo/Tokenizer/Words.pm
sub AUTOLOAD {
171146µs require "utf8_heavy.pl";
18112µs18.03ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 8.03ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2314µs1;
24__END__