← Index
NYTProf Performance Profile   « line view »
For ../prof.pl
  Run on Wed Dec 14 15:33:55 2022
Reported on Wed Dec 14 15:40:03 2022

Filename/Users/ether/perl5/perlbrew/perls/36.0/lib/5.36.0/darwin-2level/File/Spec.pm
StatementsExecuted 9 statements in 776µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11120µs23µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
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
32149µs226µs
# spent 23µs (20+3) within File::Spec::BEGIN@3 which was called: # once (20µs+3µs) by Pod::Usage::BEGIN@19 at line 3
use strict;
# spent 23µs making 1 call to File::Spec::BEGIN@3 # spent 3µs making 1 call to strict::import
4
510sour $VERSION = '3.84';
612µs$VERSION =~ tr/_//d;
7
815µsmy %module = (
9 MSWin32 => 'Win32',
10 os2 => 'OS2',
11 VMS => 'VMS',
12 NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare.
13 symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian.
14 dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP.
15 cygwin => 'Cygwin',
16 amigaos => 'AmigaOS');
17
18
1911µsmy $module = $module{$^O} || 'Unix';
20
211594µsrequire "File/Spec/$module.pm";
22110µsour @ISA = ("File::Spec::$module");
23
24115µs1;
25
26__END__