← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 03:38:15 2020
Reported on Wed Feb 12 04:56:35 2020

Filename/usr/share/perl/5.28/bytes.pm
StatementsExecuted 5 statements in 20µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
2226µs6µ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
31400nsour $VERSION = '1.06';
4
51100ns$bytes::hint_bits = 0x00000008;
6
7
# spent 6µs within bytes::import which was called 2 times, avg 3µs/call: # once (4µs+0s) by Template::Provider::BEGIN@1092 at line 1092 of Template/Provider.pm # once (2µs+0s) by Encode::utf8::BEGIN@368 at line 368 of Encode.pm
sub import {
8217µ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
2913µs1;
30__END__