← Index
NYTProf Performance Profile   « line view »
For split.pl
  Run on Thu Apr 20 02:05:47 2023
Reported on Thu Apr 20 18:31:09 2023

Filename/usr/lib/x86_64-linux-gnu/perl-base/bytes.pm
StatementsExecuted 9 statements in 128µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1117µs9µsbytes::::BEGIN@3bytes::BEGIN@3
1114µs21µsbytes::::BEGIN@4bytes::BEGIN@4
2223µs3µ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
3218µs211µs
# spent 9µs (7+2) within bytes::BEGIN@3 which was called: # once (7µs+2µs) by IPC::Run::BEGIN@2 at line 3
use strict;
# spent 9µs making 1 call to bytes::BEGIN@3 # spent 2µs making 1 call to strict::import
42102µs238µs
# spent 21µs (4+17) within bytes::BEGIN@4 which was called: # once (4µs+17µs) by IPC::Run::BEGIN@2 at line 4
use warnings;
# spent 21µs making 1 call to bytes::BEGIN@4 # spent 17µs making 1 call to warnings::import
5
61200nsour $VERSION = '1.08';
7
81100ns$bytes::hint_bits = 0x00000008;
9
10
# spent 3µs within bytes::import which was called 2 times, avg 2µs/call: # once (2µs+0s) by Encode::utf8::BEGIN@229 at line 229 of Encode.pm # once (1µs+0s) by IPC::Run::BEGIN@2 at line 2 of IPC/Run.pm
sub import {
1126µs $^H |= $bytes::hint_bits;
12}
13
14sub unimport {
15 $^H &= ~$bytes::hint_bits;
16}
17
18our $AUTOLOAD;
19sub AUTOLOAD {
20 require "bytes_heavy.pl";
21 goto &$AUTOLOAD if defined &$AUTOLOAD;
22 require Carp;
23 Carp::croak("Undefined subroutine $AUTOLOAD called");
24}
25
26sub length (_);
27sub chr (_);
28sub ord (_);
29sub substr ($$;$$);
30sub index ($$;$);
31sub rindex ($$;$);
32
3312µs1;
34__END__