← Index
NYTProf Performance Profile   « line view »
For /usr/sbin/pkg_info
  Run on Mon Aug 7 09:39:31 2017
Reported on Mon Aug 7 09:40:21 2017

Filename/usr/libdata/perl5/amd64-openbsd/IO.pm
StatementsExecuted 11 statements in 658µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs16µsIO::::BEGIN@7IO::BEGIN@7
11111µs11µsIO::::BEGIN@5IO::BEGIN@5
11110µs67µsIO::::BEGIN@6IO::BEGIN@6
1119µs16µ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
5233µs111µs
# spent 11µs within IO::BEGIN@5 which was called: # once (11µs+0s) by IO::Handle::BEGIN@269 at line 5
use XSLoader ();
# spent 11µs making 1 call to IO::BEGIN@5
6228µs2124µs
# spent 67µs (10+57) within IO::BEGIN@6 which was called: # once (10µs+57µs) by IO::Handle::BEGIN@269 at line 6
use Carp;
# spent 67µs making 1 call to IO::BEGIN@6 # spent 57µs making 1 call to Exporter::import
7223µs219µs
# spent 16µs (12+3) within IO::BEGIN@7 which was called: # once (12µs+3µs) by IO::Handle::BEGIN@269 at line 7
use strict;
# spent 16µs making 1 call to IO::BEGIN@7 # spent 3µs making 1 call to strict::import
82162µs224µs
# spent 16µs (9+7) within IO::BEGIN@8 which was called: # once (9µs+7µs) by IO::Handle::BEGIN@269 at line 8
use warnings;
# spent 16µs making 1 call to IO::BEGIN@8 # spent 7µs making 1 call to warnings::import
9
101900nsour $VERSION = "1.36_01";
111400µs1389µsXSLoader::load 'IO', $VERSION;
# spent 389µ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
27112µs1;
28
29__END__