← Index
NYTProf Performance Profile   « block view • line view • sub view »
For C:/lo/libo-master/solenv/bin/make_installer.pl
  Run on Mon Sep 24 00:52:54 2012
Reported on Mon Sep 24 07:34:37 2012

Filename/usr/lib/perl5/5.14/i686-cygwin-threads-64int/IO.pm
StatementsExecuted 11 statements in 1.72ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111231µs231µsIO::::BEGIN@5IO::BEGIN@5
11116µs89µsIO::::BEGIN@6IO::BEGIN@6
11114µs35µsIO::::BEGIN@8IO::BEGIN@8
11113µs19µ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
5280µs1231µs
# spent 231µs within IO::BEGIN@5 which was called: # once (231µs+0s) by IO::Handle::BEGIN@266 at line 5
use XSLoader ();
# spent 231µs making 1 call to IO::BEGIN@5
6255µs2162µs
# spent 89µs (16+73) within IO::BEGIN@6 which was called: # once (16µs+73µs) by IO::Handle::BEGIN@266 at line 6
use Carp;
# spent 89µs making 1 call to IO::BEGIN@6 # spent 73µs making 1 call to Exporter::import
7252µs225µs
# spent 19µs (13+6) within IO::BEGIN@7 which was called: # once (13µs+6µs) by IO::Handle::BEGIN@266 at line 7
use strict;
# spent 19µs making 1 call to IO::BEGIN@7 # spent 6µs making 1 call to strict::import
82321µs256µs
# spent 35µs (14+21) within IO::BEGIN@8 which was called: # once (14µs+21µs) by IO::Handle::BEGIN@266 at line 8
use warnings;
# spent 35µs making 1 call to IO::BEGIN@8 # spent 21µs making 1 call to warnings::import
9
1012µsour $VERSION = "1.25_04";
1111.19ms11.18msXSLoader::load 'IO', $VERSION;
# spent 1.18ms 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
25116µs1;
26
27__END__