← Index
NYTProf Performance Profile   « line view »
For /usr/sbin/pkg_info
  Run on Mon Aug 7 09:39:31 2017
Reported on Mon Aug 7 09:40:21 2017

Filename/usr/libdata/perl5/amd64-openbsd/File/Spec.pm
StatementsExecuted 11 statements in 243µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11117µs21µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
1119µs49µ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
3230µs224µs
# spent 21µs (17+3) within File::Spec::BEGIN@3 which was called: # once (17µs+3µs) by File::Path::BEGIN@8 at line 3
use strict;
# spent 21µs making 1 call to File::Spec::BEGIN@3 # spent 3µs making 1 call to strict::import
42103µs289µs
# spent 49µs (9+40) within File::Spec::BEGIN@4 which was called: # once (9µs+40µs) by File::Path::BEGIN@8 at line 4
use vars qw(@ISA $VERSION);
# spent 49µs making 1 call to File::Spec::BEGIN@4 # spent 40µs making 1 call to vars::import
5
61900ns$VERSION = '3.63_01';
711µs$VERSION =~ tr/_//d;
8
916µ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 amigaos => 'AmigaOS');
19
20
2112µsmy $module = $module{$^O} || 'Unix';
22
23180µsrequire "File/Spec/$module.pm";
2418µs@ISA = ("File::Spec::$module");
25
26113µs1;
27
28__END__