← Index
NYTProf Performance Profile   « block view • line view • sub view »
For bin/pan_genome_post_analysis
  Run on Fri Mar 27 11:43:32 2015
Reported on Fri Mar 27 11:45:25 2015

Filename/Users/ap13/perl5/perlbrew/perls/perl-5.16.2/lib/5.16.2/utf8.pm
StatementsExecuted 5 statements in 183µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1114.68ms4.96msutf8::::AUTOLOADutf8::AUTOLOAD
0000s0sutf8::::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
31600ns$utf8::hint_bits = 0x00800000;
4
51800nsour $VERSION = '1.09';
6
7sub import {
8 $^H |= $utf8::hint_bits;
9 $enc{caller()} = $_[1] if $_[1];
10}
11
12sub unimport {
13 $^H &= ~$utf8::hint_bits;
14}
15
16
# spent 4.96ms (4.68+285µs) within utf8::AUTOLOAD which was called: # once (4.68ms+285µs) by constant::BEGIN@25 at line 36 of constant.pm
sub AUTOLOAD {
172175µs require "utf8_heavy.pl";
18115.9ms goto &$AUTOLOAD if defined &$AUTOLOAD;
# spent 15.9ms making 1 call to utf8::SWASHNEW
19 require Carp;
20 Carp::croak("Undefined subroutine $AUTOLOAD called");
21}
22
2316µs1;
24__END__