Filename | /Users/ether/perl5/perlbrew/perls/36.0/lib/5.36.0/PerlIO.pm |
Statements | Executed 10 statements in 622µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 725µs | 1.99ms | import | PerlIO::
1 | 1 | 1 | 4µs | 4µs | CORE:subst (opcode) | PerlIO::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package PerlIO; | ||||
2 | |||||
3 | 1 | 0s | our $VERSION = '1.12'; | ||
4 | |||||
5 | # Map layer name to package that defines it | ||||
6 | our %alias; | ||||
7 | |||||
8 | sub import | ||||
9 | # spent 1.99ms (725µs+1.26) within PerlIO::import which was called:
# once (725µs+1.26ms) by YAML::PP::Reader::File::BEGIN@56 at line 56 of YAML/PP/Reader.pm | ||||
10 | 1 | 0s | my $class = shift; | ||
11 | 1 | 5µs | while (@_) | ||
12 | { | ||||
13 | 1 | 0s | my $layer = shift; | ||
14 | 1 | 0s | if (exists $alias{$layer}) | ||
15 | { | ||||
16 | $layer = $alias{$layer} | ||||
17 | } | ||||
18 | else | ||||
19 | { | ||||
20 | 1 | 2µs | $layer = "${class}::$layer"; | ||
21 | } | ||||
22 | 2 | 608µs | 1 | 4µs | eval { require $layer =~ s{::}{/}gr . '.pm' }; # spent 4µs making 1 call to PerlIO::CORE:subst |
23 | 1 | 2µs | warn $@ if $@; | ||
24 | } | ||||
25 | } | ||||
26 | |||||
27 | sub F_UTF8 () { 0x8000 } | ||||
28 | |||||
29 | 1 | 5µs | 1; | ||
30 | __END__ | ||||
# spent 4µs within PerlIO::CORE:subst which was called:
# once (4µs+0s) by PerlIO::import at line 22 |