← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 20:36:06 2020
Reported on Wed Feb 12 21:42:25 2020

Filename/usr/lib/x86_64-linux-gnu/perl/5.28/File/Spec.pm
StatementsExecuted 9 statements in 195µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs17µ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
32102µs219µs
# spent 17µs (15+2) within File::Spec::BEGIN@3 which was called: # once (15µs+2µs) by Path::Tiny::BEGIN@13 at line 3
use strict;
# spent 17µs making 1 call to File::Spec::BEGIN@3 # spent 2µs making 1 call to strict::import
4
51400nsour $VERSION = '3.74';
611µs$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
1811µsmy $module = $module{$^O} || 'Unix';
19
20170µsrequire "File/Spec/$module.pm";
2118µsour @ISA = ("File::Spec::$module");
22
23110µs1;
24
25__END__