← 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/bytes.pm
StatementsExecuted 6 statements in 23µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
33310µs10µ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
31300nsour $VERSION = '1.04';
4
51100ns$bytes::hint_bits = 0x00000008;
6
7
# spent 10µs within bytes::import which was called 3 times, avg 3µs/call: # once (4µs+0s) by Template::Provider::BEGIN@1089 at line 1089 of Template/Provider.pm # once (3µs+0s) by Data::Dumper::BEGIN@731 at line 731 of Data/Dumper.pm # once (2µs+0s) by Encode::utf8::BEGIN@323 at line 323 of Encode.pm
sub import {
8321µ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
2912µs1;
30__END__