← Index
NYTProf Performance Profile   « block view • line view • sub view »
For t/app_dpath.t
  Run on Tue Jun 5 15:25:28 2012
Reported on Tue Jun 5 15:26:11 2012

Filename/home/ss5/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/x86_64-linux-thread-multi/File/Spec.pm
StatementsExecuted 11 statements in 978µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11163µs79µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11126µs175µ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
32114µs296µs
# spent 79µs (63+16) within File::Spec::BEGIN@3 which was called: # once (63µs+16µs) by IO::File::BEGIN@134 at line 3
use strict;
# spent 79µs making 1 call to File::Spec::BEGIN@3 # spent 16µs making 1 call to strict::import
42384µs2324µs
# spent 175µs (26+149) within File::Spec::BEGIN@4 which was called: # once (26µs+149µs) by IO::File::BEGIN@134 at line 4
use vars qw(@ISA $VERSION);
# spent 175µs making 1 call to File::Spec::BEGIN@4 # spent 149µs making 1 call to vars::import
5
613µs$VERSION = '3.33';
7162µs$VERSION = eval $VERSION;
# spent 8µs executing statements in string eval
8
9122µ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
2016µsmy $module = $module{$^O} || 'Unix';
21
221300µsrequire "File/Spec/$module.pm";
23139µs@ISA = ("File::Spec::$module");
24
25148µs1;
26
27__END__