← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:23:06 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux/Params/Validate/Constants.pm
StatementsExecuted 9 statements in 181µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs14µsParams::Validate::Constants::::BEGIN@3Params::Validate::Constants::BEGIN@3
1117µs14µsParams::Validate::Constants::::BEGIN@4Params::Validate::Constants::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Params::Validate::Constants;
2
3316µs216µs
# spent 14µs (12+2) within Params::Validate::Constants::BEGIN@3 which was called: # once (12µs+2µs) by Params::Validate::BEGIN@13 at line 3
use strict;
# spent 14µs making 1 call to Params::Validate::Constants::BEGIN@3 # spent 2µs making 1 call to strict::import
43153µs222µs
# spent 14µs (7+8) within Params::Validate::Constants::BEGIN@4 which was called: # once (7µs+8µs) by Params::Validate::BEGIN@13 at line 4
use warnings;
# spent 14µs making 1 call to Params::Validate::Constants::BEGIN@4 # spent 8µs making 1 call to warnings::import
5
616µsour @ISA = 'Exporter';
7
812µsour @EXPORT = qw(
9 SCALAR
10 ARRAYREF
11 HASHREF
12 CODEREF
13 GLOB
14 GLOBREF
15 SCALARREF
16 HANDLE
17 BOOLEAN
18 UNDEF
19 OBJECT
20 UNKNOWN
21);
22
23sub SCALAR () { 1 }
24sub ARRAYREF () { 2 }
25sub HASHREF () { 4 }
26sub CODEREF () { 8 }
27sub GLOB () { 16 }
28sub GLOBREF () { 32 }
29sub SCALARREF () { 64 }
30sub UNKNOWN () { 128 }
31sub UNDEF () { 256 }
32sub OBJECT () { 512 }
33
34sub HANDLE () { 16 | 32 }
35sub BOOLEAN () { 1 | 256 }
36
3714µs1;