← Index
NYTProf Performance Profile   « line view »
For t/optimization.t
  Run on Thu Jan 8 22:47:42 2015
Reported on Thu Jan 8 22:48:06 2015

Filename/home/ss5/perl5/perlbrew/perls/tapper-perl/lib/5.16.3/x86_64-linux/File/Spec.pm
StatementsExecuted 11 statements in 228µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs30µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
1119µs46µ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
3228µs245µs
# spent 30µs (15+15) within File::Spec::BEGIN@3 which was called: # once (15µs+15µs) by Devel::StackTrace::BEGIN@12 at line 3
use strict;
# spent 30µs making 1 call to File::Spec::BEGIN@3 # spent 15µs making 1 call to strict::import
4297µs283µs
# spent 46µs (9+37) within File::Spec::BEGIN@4 which was called: # once (9µs+37µs) by Devel::StackTrace::BEGIN@12 at line 4
use vars qw(@ISA $VERSION);
# spent 46µs making 1 call to File::Spec::BEGIN@4 # spent 37µs making 1 call to vars::import
5
61600ns$VERSION = '3.40';
714µs$VERSION =~ tr/_//;
8
916µ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
2012µsmy $module = $module{$^O} || 'Unix';
21
22173µsrequire "File/Spec/$module.pm";
2319µs@ISA = ("File::Spec::$module");
24
2519µs1;
26
27__END__