← 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:25 2013

Filename/usr/lib64/perl5/5.16.0/bytes.pm
StatementsExecuted 6 statements in 137µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
33353µs53µ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
313µsour $VERSION = '1.04';
4
51900ns$bytes::hint_bits = 0x00000008;
6
7
# spent 53µs within bytes::import which was called 3 times, avg 18µs/call: # once (18µs+0s) by File::MimeInfo::BEGIN@123 at line 123 of File/MimeInfo.pm # once (18µs+0s) by Data::Dumper::BEGIN@718 at line 718 of Data/Dumper.pm # once (17µs+0s) by Encode::utf8::BEGIN@324 at line 324 of Encode.pm
sub import {
83120µ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
29113µs1;
30__END__