← Index
NYTProf Performance Profile   « line view »
For webmerge/scripts/webmerge.pl
  Run on Mon Oct 7 02:42:42 2013
Reported on Mon Oct 7 03:03:17 2013

Filename/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/File/Spec.pm
StatementsExecuted 11 statements in 1.23ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11178µs177µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11150µs292µ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
32206µs2276µs
# spent 177µs (78+99) within File::Spec::BEGIN@3 which was called: # once (78µs+99µs) by FindBin::BEGIN@85 at line 3
use strict;
# spent 177µs making 1 call to File::Spec::BEGIN@3 # spent 99µs making 1 call to strict::import
42497µs2535µs
# spent 292µs (50+243) within File::Spec::BEGIN@4 which was called: # once (50µs+243µs) by FindBin::BEGIN@85 at line 4
use vars qw(@ISA $VERSION);
# spent 292µs making 1 call to File::Spec::BEGIN@4 # spent 243µs making 1 call to vars::import
5
614µs$VERSION = '3.40';
713µs$VERSION =~ tr/_//;
8
9124µ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
20110µsmy $module = $module{$^O} || 'Unix';
21
221394µsrequire "File/Spec/$module.pm";
23145µs@ISA = ("File::Spec::$module");
24
25151µs1;
26
27__END__