← Index
NYTProf Performance Profile   « block view • line view • sub view »
For conv.pl
  Run on Sun Nov 14 21:14:18 2010
Reported on Sun Nov 14 21:17:54 2010

Filename/usr/lib/perl5/File/Spec.pm
StatementsExecuted 13 statements in 342µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11121µs27µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11114µs79µ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
3344µs233µs
# spent 27µs (21+6) within File::Spec::BEGIN@3 which was called: # once (21µs+6µs) by XML::SAX::BEGIN@16 at line 3
use strict;
# spent 27µs making 1 call to File::Spec::BEGIN@3 # spent 6µs making 1 call to strict::import
43129µs2144µs
# spent 79µs (14+65) within File::Spec::BEGIN@4 which was called: # once (14µs+65µs) by XML::SAX::BEGIN@16 at line 4
use vars qw(@ISA $VERSION);
# spent 79µs making 1 call to File::Spec::BEGIN@4 # spent 65µs making 1 call to vars::import
5
611µs$VERSION = '3.2701';
7121µs$VERSION = eval $VERSION;
# spent 4µs executing statements in string eval
8
918µ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
2013µsmy $module = $module{$^O} || 'Unix';
21
221111µsrequire "File/Spec/$module.pm";
23113µs@ISA = ("File::Spec::$module");
24
25112µs1;
26
27__END__