← 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:46:12 2015

Filename/Users/ap13/perl5/perlbrew/perls/perl-5.16.2/lib/5.16.2/bytes.pm
StatementsExecuted 5 statements in 32µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
2227µs7µsbytes::::importbytes::import
0000s0sbytes::::AUTOLOADbytes::AUTOLOAD
0000s0sbytes::::unimportbytes::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package bytes;
2
31700nsour $VERSION = '1.04';
4
51100ns$bytes::hint_bits = 0x00000008;
6
7
# spent 7µs within bytes::import which was called 2 times, avg 3µs/call: # once (4µs+0s) by Text::CSV_PP::BEGIN@328 at line 328 of Text/CSV_PP.pm # once (3µs+0s) by Data::Dumper::BEGIN@731 at line 731 of Data/Dumper.pm
sub import {
8228µs $^H |= $bytes::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$bytes::hint_bits;
13}
14
15sub AUTOLOAD {
16 require "bytes_heavy.pl";
17 goto &$AUTOLOAD if defined &$AUTOLOAD;
18 require Carp;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
20}
21
22sub length (_);
23sub chr (_);
24sub ord (_);
25sub substr ($$;$$);
26sub index ($$;$);
27sub rindex ($$;$);
28
2914µs1;
30__END__