| Filename | /Users/ap13/perl5/perlbrew/perls/perl-5.16.2/lib/5.16.2/warnings/register.pm |
| Statements | Executed 28 statements in 97µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 5 | 5 | 5 | 86µs | 733µs | warnings::register::import |
| 0 | 0 | 0 | 0s | 0s | warnings::register::mkMask |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package warnings::register; | ||||
| 2 | |||||
| 3 | 1 | 1µs | our $VERSION = '1.02'; | ||
| 4 | |||||
| 5 | =pod | ||||
| 6 | |||||
| 7 | =head1 NAME | ||||
| 8 | |||||
| 9 | warnings::register - warnings import function | ||||
| 10 | |||||
| 11 | =head1 SYNOPSIS | ||||
| 12 | |||||
| 13 | use warnings::register; | ||||
| 14 | |||||
| 15 | =head1 DESCRIPTION | ||||
| 16 | |||||
| 17 | Creates a warnings category with the same name as the current package. | ||||
| 18 | |||||
| 19 | See L<warnings> and L<perllexwarn> for more information on this module's | ||||
| 20 | usage. | ||||
| 21 | |||||
| 22 | =cut | ||||
| 23 | |||||
| 24 | 1 | 500ns | require warnings; | ||
| 25 | |||||
| 26 | # left here as cruft in case other users were using this undocumented routine | ||||
| 27 | # -- rjbs, 2010-09-08 | ||||
| 28 | sub mkMask | ||||
| 29 | { | ||||
| 30 | my ($bit) = @_; | ||||
| 31 | my $mask = ""; | ||||
| 32 | |||||
| 33 | vec($mask, $bit, 1) = 1; | ||||
| 34 | return $mask; | ||||
| 35 | } | ||||
| 36 | |||||
| 37 | sub import | ||||
| 38 | # spent 733µs (86+646) within warnings::register::import which was called 5 times, avg 147µs/call:
# once (17µs+166µs) by constant::BEGIN@4 at line 4 of constant.pm
# once (20µs+163µs) by vars::BEGIN@7 at line 7 of vars.pm
# once (23µs+128µs) by Tie::Hash::BEGIN@189 at line 189 of Tie/Hash.pm
# once (15µs+110µs) by overload::BEGIN@146 at line 146 of overload.pm
# once (11µs+78µs) by File::Find::BEGIN@5 at line 5 of File/Find.pm | ||||
| 39 | 25 | 90µs | shift; | ||
| 40 | my @categories = @_; | ||||
| 41 | |||||
| 42 | my $package = (caller(0))[0]; | ||||
| 43 | 5 | 646µs | warnings::register_categories($package); # spent 646µs making 5 calls to warnings::register_categories, avg 129µs/call | ||
| 44 | |||||
| 45 | warnings::register_categories($package . "::$_") for @categories; | ||||
| 46 | } | ||||
| 47 | |||||
| 48 | 1 | 6µs | 1; |