← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Tue Nov 7 05:38:10 2017
Reported on Tue Nov 7 06:16:00 2017

Filename/usr/local/lib/perl5/5.24/mach/File/Spec.pm
StatementsExecuted 11 statements in 693µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11136µs54µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11120µs164µ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µs271µs
# spent 54µs (36+18) within File::Spec::BEGIN@3 which was called: # once (36µs+18µs) by Pod::Usage::BEGIN@22 at line 3
use strict;
# spent 54µs making 1 call to File::Spec::BEGIN@3 # spent 18µs making 1 call to strict::import
42284µs2307µs
# spent 164µs (20+143) within File::Spec::BEGIN@4 which was called: # once (20µs+143µs) by Pod::Usage::BEGIN@22 at line 4
use vars qw(@ISA $VERSION);
# spent 164µs making 1 call to File::Spec::BEGIN@4 # spent 143µs making 1 call to vars::import
5
612µs$VERSION = '3.63_01';
7112µ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
2115µsmy $module = $module{$^O} || 'Unix';
22
231254µsrequire "File/Spec/$module.pm";
24118µs@ISA = ("File::Spec::$module");
25
26130µs1;
27
28__END__