← Index
NYTProf Performance Profile   « line view »
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:10 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/5.18.2/darwin-2level/File/Spec.pm
StatementsExecuted 11 statements in 183µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs23µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
1116µs34µ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
3221µs235µs
# spent 23µs (11+12) within File::Spec::BEGIN@3 which was called: # once (11µs+12µs) by Pod::Usage::BEGIN@21 at line 3
use strict;
# spent 23µs making 1 call to File::Spec::BEGIN@3 # spent 12µs making 1 call to strict::import
4276µs262µs
# spent 34µs (6+28) within File::Spec::BEGIN@4 which was called: # once (6µs+28µs) by Pod::Usage::BEGIN@21 at line 4
use vars qw(@ISA $VERSION);
# spent 34µs making 1 call to File::Spec::BEGIN@4 # spent 28µs making 1 call to vars::import
5
61500ns$VERSION = '3.47';
714µs$VERSION =~ tr/_//;
8
914µ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
2011µsmy $module = $module{$^O} || 'Unix';
21
22160µsrequire "File/Spec/$module.pm";
2316µs@ISA = ("File::Spec::$module");
24
25110µs1;
26
27__END__