← Index
NYTProf Performance Profile   « line view »
For t/optimization.t
  Run on Thu Jan 8 22:47:42 2015
Reported on Thu Jan 8 22:48:05 2015

Filename/home/ss5/perl5/perlbrew/perls/tapper-perl/lib/5.16.3/warnings/register.pm
StatementsExecuted 23 statements in 56µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
44447µs413µ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
31600nsour $VERSION = '1.02';
4
5=pod
6
7=head1 NAME
8
9warnings::register - warnings import function
10
11=head1 SYNOPSIS
12
13 use warnings::register;
14
15=head1 DESCRIPTION
16
17Creates a warnings category with the same name as the current package.
18
19See L<warnings> and L<perllexwarn> for more information on this module's
20usage.
21
22=cut
23
241300nsrequire warnings;
25
26# left here as cruft in case other users were using this undocumented routine
27# -- rjbs, 2010-09-08
28sub mkMask
29{
30 my ($bit) = @_;
31 my $mask = "";
32
33 vec($mask, $bit, 1) = 1;
34 return $mask;
35}
36
37sub import
38
# spent 413µs (47+365) within warnings::register::import which was called 4 times, avg 103µs/call: # once (12µs+126µs) by constant::BEGIN@4 at line 4 of constant.pm # once (12µs+84µs) by overload::BEGIN@146 at line 146 of overload.pm # once (11µs+79µs) by Tie::Hash::BEGIN@189 at line 189 of Tie/Hash.pm # once (12µs+77µs) by vars::BEGIN@7 at line 7 of vars.pm
{
3941µs shift;
4044µs my @categories = @_;
41
42415µs my $package = (caller(0))[0];
4348µs4365µs warnings::register_categories($package);
# spent 365µs making 4 calls to warnings::register_categories, avg 91µs/call
44
45424µs warnings::register_categories($package . "::$_") for @categories;
46}
47
4813µs1;