← Index
NYTProf Performance Profile   « block view • line view • sub view »
For t/app_dpath.t
  Run on Tue Jun 5 15:25:28 2012
Reported on Tue Jun 5 15:26:11 2012

Filename/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/x86_64-linux-thread-multi/IO.pm
StatementsExecuted 11 statements in 1.98ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11137µs37µsIO::::BEGIN@5IO::BEGIN@5
11129µs59µsIO::::BEGIN@8IO::BEGIN@8
11128µs39µsIO::::BEGIN@7IO::BEGIN@7
11126µs163µ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
52113µs137µs
# spent 37µs within IO::BEGIN@5 which was called: # once (37µs+0s) by IO::Handle::BEGIN@266 at line 5
use XSLoader ();
# spent 37µs making 1 call to IO::BEGIN@5
6288µs2299µs
# spent 163µs (26+136) within IO::BEGIN@6 which was called: # once (26µs+136µs) by IO::Handle::BEGIN@266 at line 6
use Carp;
# spent 163µs making 1 call to IO::BEGIN@6 # spent 136µs making 1 call to Exporter::import
7285µs249µs
# spent 39µs (28+11) within IO::BEGIN@7 which was called: # once (28µs+11µs) by IO::Handle::BEGIN@266 at line 7
use strict;
# spent 39µs making 1 call to IO::BEGIN@7 # spent 11µs making 1 call to strict::import
82602µs288µs
# spent 59µs (29+29) within IO::BEGIN@8 which was called: # once (29µs+29µs) by IO::Handle::BEGIN@266 at line 8
use warnings;
# spent 59µs making 1 call to IO::BEGIN@8 # spent 30µs making 1 call to warnings::import
9
1013µsour $VERSION = "1.25_04";
1111.06ms11.03msXSLoader::load 'IO', $VERSION;
# spent 1.03ms 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 eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l)
22 or croak $@;
23}
24
25122µs1;
26
27__END__