← Index
NYTProf Performance Profile   « block view • line view • sub view »
For conv.pl
  Run on Sun Nov 14 22:50:31 2010
Reported on Sun Nov 14 22:51:22 2010

Filename/usr/lib/perl5/File/Spec.pm
StatementsExecuted 13 statements in 479µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11132µs38µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11114µs85µ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
3342µs244µs
# spent 38µs (32+6) within File::Spec::BEGIN@3 which was called: # once (32µs+6µs) by charnames::BEGIN@4 at line 3
use strict;
# spent 38µs making 1 call to File::Spec::BEGIN@3 # spent 6µs making 1 call to strict::import
43130µs2156µs
# spent 85µs (14+71) within File::Spec::BEGIN@4 which was called: # once (14µs+71µs) by charnames::BEGIN@4 at line 4
use vars qw(@ISA $VERSION);
# spent 85µs making 1 call to File::Spec::BEGIN@4 # spent 71µs making 1 call to vars::import
5
611µs$VERSION = '3.2701';
71152µs$VERSION = eval $VERSION;
# spent 5µs executing statements in string eval
8
919µ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";
23117µs@ISA = ("File::Spec::$module");
24
25114µs1;
26
27__END__