← 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/SelectSaver.pm
StatementsExecuted 7 statements in 101µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1118µs34µsSelectSaver::::BEGIN@6SelectSaver::BEGIN@6
1113µs17µsSelectSaver::::BEGIN@7SelectSaver::BEGIN@7
0000s0sSelectSaver::::DESTROYSelectSaver::DESTROY
0000s0sSelectSaver::::newSelectSaver::new
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package SelectSaver;
2
31300nsour $VERSION = '1.02';
4
516µsrequire 5.000;
6221µs261µs
# spent 34µs (8+26) within SelectSaver::BEGIN@6 which was called: # once (8µs+26µs) by IO::Handle::BEGIN@267 at line 6
use Carp;
# spent 34µs making 1 call to SelectSaver::BEGIN@6 # spent 26µs making 1 call to Exporter::import
7272µs230µs
# spent 17µs (3+13) within SelectSaver::BEGIN@7 which was called: # once (3µs+13µs) by IO::Handle::BEGIN@267 at line 7
use Symbol;
# spent 17µs making 1 call to SelectSaver::BEGIN@7 # spent 13µs making 1 call to Exporter::import
8
9sub new {
10 @_ >= 1 && @_ <= 2 or croak 'usage: SelectSaver->new( [FILEHANDLE] )';
11 my $fh = select;
12 my $self = bless \$fh, $_[0];
13 select qualify($_[1], caller) if @_ > 1;
14 $self;
15}
16
17sub DESTROY {
18 my $self = $_[0];
19 select $$self;
20}
21
2212µs1;