← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Sun Aug 5 15:24:32 2012
Reported on Sun Aug 5 15:24:49 2012

Filename/usr/lib/perl5/vendor_perl/5.12.4/i686-linux/File/Spec.pm
StatementsExecuted 13 statements in 1.20ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11177µs101µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11153µs290µ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
33146µs2125µs
# spent 101µs (77+24) within File::Spec::BEGIN@3 which was called: # once (77µs+24µs) by DateTime::TimeZone::Local::BEGIN@10 at line 3
use strict;
# spent 101µs making 1 call to File::Spec::BEGIN@3 # spent 24µs making 1 call to strict::import
43491µs2528µs
# spent 290µs (53+237) within File::Spec::BEGIN@4 which was called: # once (53µs+237µs) by DateTime::TimeZone::Local::BEGIN@10 at line 4
use vars qw(@ISA $VERSION);
# spent 290µs making 1 call to File::Spec::BEGIN@4 # spent 237µs making 1 call to vars::import
5
616µs$VERSION = '3.31';
7169µs$VERSION = eval $VERSION;
# spent 13µs executing statements in string eval
8
9126µ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
20112µsmy $module = $module{$^O} || 'Unix';
21
221355µsrequire "File/Spec/$module.pm";
23151µs@ISA = ("File::Spec::$module");
24
25142µs1;
26
27__END__