← Index
NYTProf Performance Profile   « line view »
For webmerge/scripts/webmerge.pl
  Run on Mon Oct 7 02:42:42 2013
Reported on Mon Oct 7 03:03:20 2013

Filename/usr/lib64/perl5/5.16.0/utf8.pm
StatementsExecuted 7 statements in 530µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11119.6ms20.6msutf8::::AUTOLOADutf8::AUTOLOAD
11120µs20µ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 20µs within utf8::import which was called: # once (20µs+0s) by XML::Simple::BEGIN@1712 at line 1712 of XML/Simple.pm
sub import {
817µs $^H |= $utf8::hint_bits;
9137µs $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 20.6ms (19.6+987µs) within utf8::AUTOLOAD which was called: # once (19.6ms+987µs) by constant::BEGIN@25 at line 36 of constant.pm
sub AUTOLOAD {
171404µs require "utf8_heavy.pl";
18164µs161.5ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 61.5ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
23113µs1;
24__END__