← Index
NYTProf Performance Profile   « block view • line view • sub view »
For bin/hailo
  Run on Thu Oct 21 22:50:37 2010
Reported on Thu Oct 21 22:52:14 2010

Filename/home/hinrik/perl5/perlbrew/perls/perl-5.13.5/lib/5.13.5/utf8.pm
StatementsExecuted 9 statements in 114µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.96ms2.12msutf8::::AUTOLOADutf8::AUTOLOAD
22212µs12µ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 12µs within utf8::import which was called 2 times, avg 6µs/call: # once (6µs+0s) by Hailo::Tokenizer::Words::BEGIN@4 at line 4 of lib/Hailo/Tokenizer/Words.pm # once (6µ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.12ms (1.96+160µs) within utf8::AUTOLOAD which was called: # once (1.96ms+160µs) by Getopt::Long::FindOption at line 931 of Getopt/Long.pm
sub AUTOLOAD {
17181µs require "utf8_heavy.pl";
18110µs139.0ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 39.0ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2314µs1;
24__END__