← Index
NYTProf Performance Profile   « line view »
For Makefile.PL
  Run on Sun Mar 1 16:04:44 2015
Reported on Sun Mar 1 16:09:02 2015

FilenameC:/tmp64ng/perl/lib/File/Spec.pm
StatementsExecuted 11 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1110s0sFile::Spec::::BEGIN@3File::Spec::BEGIN@3
1110s0sFile::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
320s20s
# spent 0s within File::Spec::BEGIN@3 which was called: # once (0s+0s) by File::Path::BEGIN@8 at line 3
use strict;
# spent 0s making 1 call to File::Spec::BEGIN@3 # spent 0s making 1 call to strict::import
420s20s
# spent 0s within File::Spec::BEGIN@4 which was called: # once (0s+0s) by File::Path::BEGIN@8 at line 4
use vars qw(@ISA $VERSION);
# spent 0s making 1 call to File::Spec::BEGIN@4 # spent 0s making 1 call to vars::import
5
610s$VERSION = '3.48_01';
710s$VERSION =~ tr/_//;
8
910smy %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
2010smy $module = $module{$^O} || 'Unix';
21
2210srequire "File/Spec/$module.pm";
2310s@ISA = ("File::Spec::$module");
24
2510s1;
26
27__END__