← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:46 2015

Filename/usr/lib/x86_64-linux-gnu/perl/5.20/IO.pm
StatementsExecuted 11 statements in 545µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs14µsIO::::BEGIN@5IO::BEGIN@5
11110µs59µsIO::::BEGIN@6IO::BEGIN@6
1119µs15µsIO::::BEGIN@8IO::BEGIN@8
1118µs23µsIO::::BEGIN@7IO::BEGIN@7
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
5234µs114µs
# spent 14µs within IO::BEGIN@5 which was called: # once (14µs+0s) by IO::Handle::BEGIN@9 at line 5
use XSLoader ();
# spent 14µs making 1 call to IO::BEGIN@5
6235µs2107µs
# spent 59µs (10+49) within IO::BEGIN@6 which was called: # once (10µs+49µs) by IO::Handle::BEGIN@9 at line 6
use Carp;
# spent 59µs making 1 call to IO::BEGIN@6 # spent 49µs making 1 call to Exporter::import
7227µs237µs
# spent 23µs (8+15) within IO::BEGIN@7 which was called: # once (8µs+15µs) by IO::Handle::BEGIN@9 at line 7
use strict;
# spent 23µs making 1 call to IO::BEGIN@7 # spent 15µs making 1 call to strict::import
82187µs221µs
# spent 15µs (9+6) within IO::BEGIN@8 which was called: # once (9µs+6µs) by IO::Handle::BEGIN@9 at line 8
use warnings;
# spent 15µs making 1 call to IO::BEGIN@8 # spent 6µs making 1 call to warnings::import
9
101600nsour $VERSION = "1.31";
111255µs1246µsXSLoader::load 'IO', $VERSION;
# spent 246µ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 eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l)
22 or croak $@;
23}
24
2515µs1;
26
27__END__