← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:47 2015

Filename/usr/share/perl/5.20/utf8.pm
StatementsExecuted 15 statements in 414µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1113.34ms3.49msutf8::::AUTOLOADutf8::AUTOLOAD
10101019µs19µ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
31500ns$utf8::hint_bits = 0x00800000;
4
51300nsour $VERSION = '1.13_01';
6
7
# spent 19µs within utf8::import which was called 10 times, avg 2µs/call: # once (3µs+0s) by XML::Simple::BEGIN@1712 at line 1712 of XML/Simple.pm # once (2µs+0s) by Date::Manip::Recur::BEGIN@21 at line 21 of Date/Manip/Recur.pm # once (2µs+0s) by Date::Manip::Lang::english::BEGIN@13 at line 13 of Date/Manip/Lang/english.pm # once (2µs+0s) by DateTime::Locale::en_US::BEGIN@23 at line 23 of DateTime/Locale/en_US.pm # once (2µs+0s) by Date::Manip::Delta::BEGIN@20 at line 20 of Date/Manip/Delta.pm # once (2µs+0s) by DateTime::Locale::Catalog::BEGIN@19 at line 19 of DateTime/Locale/Catalog.pm # once (2µs+0s) by Date::Manip::Date::BEGIN@21 at line 21 of Date/Manip/Date.pm # once (2µs+0s) by Date::Manip::Base::BEGIN@22 at line 22 of Date/Manip/Base.pm # once (1µs+0s) by DateTime::Locale::root::BEGIN@23 at line 23 of DateTime/Locale/root.pm # once (1µs+0s) by DateTime::Locale::en::BEGIN@23 at line 23 of DateTime/Locale/en.pm
sub import {
81047µs $^H |= $utf8::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$utf8::hint_bits;
13}
14
15
# spent 3.49ms (3.34+148µs) within utf8::AUTOLOAD which was called: # once (3.34ms+148µs) by charnames::BEGIN@6 at line 177 of _charnames.pm
sub AUTOLOAD {
161355µs require "utf8_heavy.pl";
1718µs110.5ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 10.5ms making 1 call to utf8::SWASHNEW
18 require Carp;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
20}
21
2213µs1;
23__END__