← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 02:36:06 2017
Reported on Sun Nov 5 02:56:17 2017

Filename/usr/local/lib/perl5/5.24/mach/File/Spec.pm
StatementsExecuted 11 statements in 670µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11143µs68µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11126µs158µ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
3277µs292µs
# spent 68µs (43+25) within File::Spec::BEGIN@3 which was called: # once (43µs+25µs) by Pod::Usage::BEGIN@22 at line 3
use strict;
# spent 68µs making 1 call to File::Spec::BEGIN@3 # spent 25µs making 1 call to strict::import
42248µs2289µs
# spent 158µs (26+131) within File::Spec::BEGIN@4 which was called: # once (26µs+131µs) by Pod::Usage::BEGIN@22 at line 4
use vars qw(@ISA $VERSION);
# spent 158µs making 1 call to File::Spec::BEGIN@4 # spent 131µs making 1 call to vars::import
5
612µs$VERSION = '3.63_01';
7113µs$VERSION =~ tr/_//d;
8
9113µ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
231266µsrequire "File/Spec/$module.pm";
24121µs@ISA = ("File::Spec::$module");
25
26125µs1;
27
28__END__