← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Tue Nov 7 05:38:10 2017
Reported on Tue Nov 7 06:16:01 2017

Filename/usr/local/lib/perl5/5.24/mach/IO.pm
StatementsExecuted 11 statements in 1.06ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11136µs44µsIO::::BEGIN@7IO::BEGIN@7
11136µs36µsIO::::BEGIN@5IO::BEGIN@5
11122µs216µsIO::::BEGIN@6IO::BEGIN@6
11118µs60µsIO::::BEGIN@8IO::BEGIN@8
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
5267µs136µs
# spent 36µs within IO::BEGIN@5 which was called: # once (36µs+0s) by IO::Handle::BEGIN@269 at line 5
use XSLoader ();
# spent 36µs making 1 call to IO::BEGIN@5
6259µs2409µs
# spent 216µs (22+193) within IO::BEGIN@6 which was called: # once (22µs+193µs) by IO::Handle::BEGIN@269 at line 6
use Carp;
# spent 216µs making 1 call to IO::BEGIN@6 # spent 193µs making 1 call to Exporter::import
7264µs252µs
# spent 44µs (36+8) within IO::BEGIN@7 which was called: # once (36µs+8µs) by IO::Handle::BEGIN@269 at line 7
use strict;
# spent 44µs making 1 call to IO::BEGIN@7 # spent 8µs making 1 call to strict::import
82369µs2102µs
# spent 60µs (18+42) within IO::BEGIN@8 which was called: # once (18µs+42µs) by IO::Handle::BEGIN@269 at line 8
use warnings;
# spent 60µs making 1 call to IO::BEGIN@8 # spent 42µs making 1 call to warnings::import
9
1012µsour $VERSION = "1.36_01";
111489µs1471µsXSLoader::load 'IO', $VERSION;
# spent 471µ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
27110µs1;
28
29__END__