| Filename | /usr/share/perl/5.10/File/Spec.pm |
| Statements | Executed 13 statements in 316µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 16µs | 20µs | File::Spec::BEGIN@3 |
| 1 | 1 | 1 | 9µs | 52µs | File::Spec::BEGIN@4 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package File::Spec; | ||||
| 2 | |||||
| 3 | 3 | 35µs | 2 | 23µs | # spent 20µs (16+4) within File::Spec::BEGIN@3 which was called:
# once (16µs+4µs) by Class::Load::BEGIN@5 at line 3 # spent 20µs making 1 call to File::Spec::BEGIN@3
# spent 4µs making 1 call to strict::import |
| 4 | 3 | 113µs | 2 | 95µs | # spent 52µs (9+43) within File::Spec::BEGIN@4 which was called:
# once (9µs+43µs) by Class::Load::BEGIN@5 at line 4 # spent 52µs making 1 call to File::Spec::BEGIN@4
# spent 43µs making 1 call to vars::import |
| 5 | |||||
| 6 | 1 | 800ns | $VERSION = '3.30'; | ||
| 7 | 1 | 18µs | $VERSION = eval $VERSION; # spent 4µs executing statements in string eval | ||
| 8 | |||||
| 9 | 1 | 8µs | my %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 | 1 | 2µs | my $module = $module{$^O} || 'Unix'; | ||
| 20 | |||||
| 21 | 1 | 116µs | require "File/Spec/$module.pm"; | ||
| 22 | 1 | 12µs | @ISA = ("File::Spec::$module"); | ||
| 23 | |||||
| 24 | 1 | 11µs | 1; | ||
| 25 | |||||
| 26 | __END__ |