← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 19:05:14 2015
Reported on Fri Jul 31 19:08:08 2015

Filename/usr/lib64/perl5/vendor_perl/File/Spec.pm
StatementsExecuted 11 statements in 541µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111789µs1.45msFile::Spec::::BEGIN@4File::Spec::BEGIN@4
11122µs48µ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
3257µs273µs
# spent 48µs (22+25) within File::Spec::BEGIN@3 which was called: # once (22µs+25µs) by CGI::Carp::BEGIN@339 at line 3
use strict;
# spent 48µs making 1 call to File::Spec::BEGIN@3 # spent 25µs making 1 call to strict::import
42298µs21.50ms
# spent 1.45ms (789µs+659µs) within File::Spec::BEGIN@4 which was called: # once (789µs+659µs) by CGI::Carp::BEGIN@339 at line 4
use vars qw(@ISA $VERSION);
# spent 1.45ms making 1 call to File::Spec::BEGIN@4 # spent 52µs making 1 call to vars::import
5
611µs$VERSION = '3.40';
718µs$VERSION =~ tr/_//;
8
9111µ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
2016µsmy $module = $module{$^O} || 'Unix';
21
221129µsrequire "File/Spec/$module.pm";
23115µs@ISA = ("File::Spec::$module");
24
25116µs1;
26
27__END__