← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 03:09:29 2017
Reported on Mon Nov 6 13:20:45 2017

Filename/usr/local/lib/perl5/5.24/mach/File/Spec.pm
StatementsExecuted 11 statements in 601µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11141µs51µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11120µs134µ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
3262µs261µs
# spent 51µs (41+10) within File::Spec::BEGIN@3 which was called: # once (41µs+10µs) by Pod::Usage::BEGIN@22 at line 3
use strict;
# spent 51µs making 1 call to File::Spec::BEGIN@3 # spent 10µs making 1 call to strict::import
42226µs2247µs
# spent 134µs (20+114) within File::Spec::BEGIN@4 which was called: # once (20µs+114µs) by Pod::Usage::BEGIN@22 at line 4
use vars qw(@ISA $VERSION);
# spent 134µs making 1 call to File::Spec::BEGIN@4 # spent 114µs making 1 call to vars::import
5
612µs$VERSION = '3.63_01';
713µs$VERSION =~ tr/_//d;
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 amigaos => 'AmigaOS');
19
20
2114µsmy $module = $module{$^O} || 'Unix';
22
231241µsrequire "File/Spec/$module.pm";
24120µs@ISA = ("File::Spec::$module");
25
26131µs1;
27
28__END__