← 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:10 2023

Filename/usr/lib/x86_64-linux-gnu/perl-base/integer.pm
StatementsExecuted 6 statements in 14µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1112µs2µsinteger::::unimportinteger::unimport
2222µs2µsinteger::::importinteger::import
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package integer;
2
31200nsour $VERSION = '1.01';
4
51200ns$integer::hint_bits = 0x1;
6
7
# spent 2µs within integer::import which was called 2 times, avg 1µs/call: # once (1µs+0s) by Pod::Simple::BEGIN@7 at line 7 of Pod/Simple.pm # once (900ns+0s) by Pod::Simple::BlackBox::BEGIN@21 at line 21 of Pod/Simple/BlackBox.pm
sub import {
825µs $^H |= $integer::hint_bits;
9}
10
11
# spent 2µs within integer::unimport which was called: # once (2µs+0s) by Pod::Simple::BlackBox::BEGIN@1520 at line 1520 of Pod/Simple/BlackBox.pm
sub unimport {
1216µs $^H &= ~$integer::hint_bits;
13}
14
1512µs1;