← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 03:09:29 2017
Reported on Mon Nov 6 13:20:46 2017

Filename/usr/local/lib/perl5/5.24/mach/IO.pm
StatementsExecuted 11 statements in 919µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs26µsIO::::BEGIN@5IO::BEGIN@5
11120µs44µsIO::::BEGIN@8IO::BEGIN@8
11119µs27µsIO::::BEGIN@7IO::BEGIN@7
11118µs148µsIO::::BEGIN@6IO::BEGIN@6
0000s0sIO::::importIO::import
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1#
2
3package IO;
4
5255µs126µs
# spent 26µs within IO::BEGIN@5 which was called: # once (26µs+0s) by IO::Handle::BEGIN@269 at line 5
use XSLoader ();
# spent 26µs making 1 call to IO::BEGIN@5
6249µs2279µs
# spent 148µs (18+130) within IO::BEGIN@6 which was called: # once (18µs+130µs) by IO::Handle::BEGIN@269 at line 6
use Carp;
# spent 148µs making 1 call to IO::BEGIN@6 # spent 130µs making 1 call to Exporter::import
7249µs235µs
# spent 27µs (19+8) within IO::BEGIN@7 which was called: # once (19µs+8µs) by IO::Handle::BEGIN@269 at line 7
use strict;
# spent 27µs making 1 call to IO::BEGIN@7 # spent 8µs making 1 call to strict::import
82308µs268µs
# spent 44µs (20+24) within IO::BEGIN@8 which was called: # once (20µs+24µs) by IO::Handle::BEGIN@269 at line 8
use warnings;
# spent 44µs making 1 call to IO::BEGIN@8 # spent 24µs making 1 call to warnings::import
9
1012µsour $VERSION = "1.36_01";
111448µs1430µsXSLoader::load 'IO', $VERSION;
# spent 430µs making 1 call to XSLoader::load
12
13sub import {
14 shift;
15
16 warnings::warnif('deprecated', qq{Parameterless "use IO" deprecated})
17 if @_ == 0 ;
18
19 my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir);
20
21 local @INC = @INC;
22 pop @INC if $INC[-1] eq '.';
23 eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l)
24 or croak $@;
25}
26
2719µs1;
28
29__END__