← Index
NYTProf Performance Profile   « line view »
For v11.pl
  Run on Sun Jan 5 19:10:15 2020
Reported on Sun Jan 5 19:10:28 2020

Filename/usr/share/perl/5.26/warnings/register.pm
StatementsExecuted 8 statements in 13µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1118µs88µswarnings::register::::importwarnings::register::import
0000s0swarnings::register::::mkMaskwarnings::register::mkMask
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package warnings::register;
2
31500nsour $VERSION = '1.04';
41500nsrequire warnings;
5
6# left here as cruft in case other users were using this undocumented routine
7# -- rjbs, 2010-09-08
8sub mkMask
9{
10 my ($bit) = @_;
11 my $mask = "";
12
13 vec($mask, $bit, 1) = 1;
14 return $mask;
15}
16
17sub import
18
# spent 88µs (8+80) within warnings::register::import which was called: # once (8µs+80µs) by constant::BEGIN@4 at line 4 of constant.pm
{
191300ns shift;
201500ns my @categories = @_;
21
2213µs my $package = (caller(0))[0];
2311µs180µs warnings::register_categories($package);
# spent 80µs making 1 call to warnings::register_categories
24
2514µs warnings::register_categories($package . "::$_") for @categories;
26}
2714µs1;
28__END__