← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 09:58:41 2014
Reported on Tue Jun 24 09:59:12 2014

Filename/usr/lib/perl/5.14/File/Spec.pm
StatementsExecuted 11 statements in 470µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11127µs34µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11114µs87µ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
3257µs242µs
# spent 34µs (27+7) within File::Spec::BEGIN@3 which was called: # once (27µs+7µs) by DateTime::TimeZone::Local::BEGIN@14 at line 3
use strict;
# spent 34µs making 1 call to File::Spec::BEGIN@3 # spent 7µs making 1 call to strict::import
42184µs2159µs
# spent 87µs (14+73) within File::Spec::BEGIN@4 which was called: # once (14µs+73µs) by DateTime::TimeZone::Local::BEGIN@14 at line 4
use vars qw(@ISA $VERSION);
# spent 87µs making 1 call to File::Spec::BEGIN@4 # spent 73µs making 1 call to vars::import
5
612µs$VERSION = '3.33';
7131µs$VERSION = eval $VERSION;
# spent 5µs executing statements in string eval
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
1913µsmy $module = $module{$^O} || 'Unix';
20
211149µsrequire "File/Spec/$module.pm";
22116µs@ISA = ("File::Spec::$module");
23
24117µs1;
25
26__END__