← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 02:36:06 2017
Reported on Sun Nov 5 02:56:18 2017

Filename/usr/local/lib/perl5/5.24/mach/IO.pm
StatementsExecuted 11 statements in 1.07ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11140µs75µsIO::::BEGIN@8IO::BEGIN@8
11137µs37µsIO::::BEGIN@5IO::BEGIN@5
11132µs40µsIO::::BEGIN@7IO::BEGIN@7
11121µs218µ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
5282µs137µs
# spent 37µs within IO::BEGIN@5 which was called: # once (37µs+0s) by IO::Handle::BEGIN@269 at line 5
use XSLoader ();
# spent 37µs making 1 call to IO::BEGIN@5
6267µs2416µs
# spent 218µs (21+197) within IO::BEGIN@6 which was called: # once (21µs+197µs) by IO::Handle::BEGIN@269 at line 6
use Carp;
# spent 218µs making 1 call to IO::BEGIN@6 # spent 197µs making 1 call to Exporter::import
7272µs247µs
# spent 40µs (32+8) within IO::BEGIN@7 which was called: # once (32µs+8µs) by IO::Handle::BEGIN@269 at line 7
use strict;
# spent 40µs making 1 call to IO::BEGIN@7 # spent 8µs making 1 call to strict::import
82363µs2110µs
# spent 75µs (40+35) within IO::BEGIN@8 which was called: # once (40µs+35µs) by IO::Handle::BEGIN@269 at line 8
use warnings;
# spent 75µs making 1 call to IO::BEGIN@8 # spent 35µs making 1 call to warnings::import
9
1012µsour $VERSION = "1.36_01";
111465µs1444µsXSLoader::load 'IO', $VERSION;
# spent 444µ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
27115µs1;
28
29__END__