← Index
NYTProf Performance Profile   « line view »
For split.pl
  Run on Thu Apr 20 02:05:47 2023
Reported on Thu Apr 20 18:31:09 2023

Filename/home/hejohns/perl5/lib/perl5/x86_64-linux-gnu-thread-multi/File/Spec.pm
StatementsExecuted 9 statements in 144µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1118µs9µ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
3278µs211µs
# spent 9µs (8+1) within File::Spec::BEGIN@3 which was called: # once (8µs+1µs) by main::BEGIN@16 at line 3
use strict;
# spent 9µs making 1 call to File::Spec::BEGIN@3 # spent 2µs making 1 call to strict::import
4
51300nsour $VERSION = '3.75';
61600ns$VERSION =~ tr/_//d;
7
813µ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
191800nsmy $module = $module{$^O} || 'Unix';
20
21145µsrequire "File/Spec/$module.pm";
2218µsour @ISA = ("File::Spec::$module");
23
2418µs1;
25
26__END__