← 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:35 2012

Filename/usr/lib/perl5/5.14/i686-cygwin-threads-64int/File/Spec.pm
StatementsExecuted 11 statements in 3.13ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111190µs196µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11117µs93µsFile::Spec::::BEGIN@4File::Spec::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package File::Spec;
2
3268µs2202µs
# spent 196µs (190+6) within File::Spec::BEGIN@3 which was called: # once (190µs+6µs) by File::Copy::BEGIN@13 at line 3
use strict;
# spent 196µs making 1 call to File::Spec::BEGIN@3 # spent 6µs making 1 call to strict::import
42232µs2170µs
# spent 93µs (17+77) within File::Spec::BEGIN@4 which was called: # once (17µs+77µs) by File::Copy::BEGIN@13 at line 4
use vars qw(@ISA $VERSION);
# spent 93µs making 1 call to File::Spec::BEGIN@4 # spent 77µs making 1 call to vars::import
5
611µs$VERSION = '3.33';
7128µs$VERSION = eval $VERSION;
# spent 6µs executing statements in string eval
8
9112µsmy %module = (MacOS => 'Mac',
10 MSWin32 => 'Win32',
11 os2 => 'OS2',
12 VMS => 'VMS',
13 epoc => 'Epoc',
14 NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare.
15 symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian.
16 dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP.
17 cygwin => 'Cygwin');
18
19
2012µsmy $module = $module{$^O} || 'Unix';
21
2212.73msrequire "File/Spec/$module.pm";
2319µs@ISA = ("File::Spec::$module");
24
25152µs1;
26
27__END__