← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/local/src/github.com/foswiki/core/bin/view
  Run on Sun Dec 4 17:17:59 2011
Reported on Sun Dec 4 17:26:31 2011

Filename/usr/lib/perl5/File/Spec.pm
StatementsExecuted 11 statements in 485µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111630µs1.38msFile::Spec::::BEGIN@4File::Spec::BEGIN@4
11122µs29µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
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
3247µs236µs
# spent 29µs (22+7) within File::Spec::BEGIN@3 which was called: # once (22µs+7µs) by main::BEGIN@6 at line 3
use strict;
# spent 29µs making 1 call to File::Spec::BEGIN@3 # spent 7µs making 1 call to strict::import
42245µs21.48ms
# spent 1.38ms (630µs+752µs) within File::Spec::BEGIN@4 which was called: # once (630µs+752µs) by main::BEGIN@6 at line 4
use vars qw(@ISA $VERSION);
# spent 1.38ms making 1 call to File::Spec::BEGIN@4 # spent 95µs making 1 call to vars::import
5
612µs$VERSION = '3.33';
7123µs$VERSION = eval $VERSION;
# spent 4µs executing statements in string eval
8
9129µ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
2013µsmy $module = $module{$^O} || 'Unix';
21
22198µsrequire "File/Spec/$module.pm";
23114µs@ISA = ("File::Spec::$module");
24
25124µs1;
26
27__END__