Filename | /usr/local/src/github.com/foswiki/core/lib/Foswiki/Query/OP_ne.pm |
Statements | Executed 62 statements in 786µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
12 | 1 | 1 | 354µs | 6.31ms | evaluate | Foswiki::Query::OP_ne::
3 | 1 | 1 | 68µs | 156µs | new | Foswiki::Query::OP_ne::
12 | 1 | 1 | 59µs | 59µs | __ANON__[:28] | Foswiki::Query::OP_ne::
1 | 1 | 1 | 24µs | 31µs | BEGIN@11 | Foswiki::Query::OP_ne::
1 | 1 | 1 | 16µs | 34µs | BEGIN@12 | Foswiki::Query::OP_ne::
1 | 1 | 1 | 9µs | 9µs | BEGIN@14 | Foswiki::Query::OP_ne::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # See bottom of file for license and copyright information | ||||
2 | |||||
3 | =begin TML | ||||
4 | |||||
5 | ---+ package Foswiki::Query::OP_ne | ||||
6 | |||||
7 | =cut | ||||
8 | |||||
9 | package Foswiki::Query::OP_ne; | ||||
10 | |||||
11 | 2 | 45µs | 2 | 38µs | # spent 31µs (24+7) within Foswiki::Query::OP_ne::BEGIN@11 which was called:
# once (24µs+7µs) by Foswiki::Query::Parser::BEGIN@42 at line 11 # spent 31µs making 1 call to Foswiki::Query::OP_ne::BEGIN@11
# spent 7µs making 1 call to strict::import |
12 | 2 | 43µs | 2 | 53µs | # spent 34µs (16+18) within Foswiki::Query::OP_ne::BEGIN@12 which was called:
# once (16µs+18µs) by Foswiki::Query::Parser::BEGIN@42 at line 12 # spent 34µs making 1 call to Foswiki::Query::OP_ne::BEGIN@12
# spent 18µs making 1 call to warnings::import |
13 | |||||
14 | 2 | 188µs | 1 | 9µs | # spent 9µs within Foswiki::Query::OP_ne::BEGIN@14 which was called:
# once (9µs+0s) by Foswiki::Query::Parser::BEGIN@42 at line 14 # spent 9µs making 1 call to Foswiki::Query::OP_ne::BEGIN@14 |
15 | 1 | 9µs | our @ISA = ('Foswiki::Query::ConditionalOP'); | ||
16 | |||||
17 | # spent 156µs (68+88) within Foswiki::Query::OP_ne::new which was called 3 times, avg 52µs/call:
# 3 times (68µs+88µs) by Foswiki::Query::Parser::new at line 105 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Query/Parser.pm, avg 52µs/call | ||||
18 | 6 | 57µs | my $class = shift; | ||
19 | 3 | 88µs | return $class->SUPER::new( arity => 2, name => '!=', prec => 500 ); # spent 88µs making 3 calls to Foswiki::Query::ConditionalOP::new, avg 29µs/call | ||
20 | } | ||||
21 | |||||
22 | # spent 6.31ms (354µs+5.96) within Foswiki::Query::OP_ne::evaluate which was called 12 times, avg 526µs/call:
# 12 times (354µs+5.96ms) by Foswiki::Query::Node::evaluate at line 223 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Query/Node.pm, avg 526µs/call | ||||
23 | 36 | 356µs | my $this = shift; | ||
24 | my $node = shift; | ||||
25 | return $this->evalTest( | ||||
26 | $node, \@_, | ||||
27 | \&Foswiki::Query::ConditionalOP::compare, | ||||
28 | 12 | 83µs | # spent 59µs within Foswiki::Query::OP_ne::__ANON__[/usr/local/src/github.com/foswiki/core/lib/Foswiki/Query/OP_ne.pm:28] which was called 12 times, avg 5µs/call:
# 12 times (59µs+0s) by Foswiki::Query::ConditionalOP::compare at line 47 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Query/ConditionalOP.pm, avg 5µs/call | ||
29 | 12 | 5.96ms | ); # spent 5.96ms making 12 calls to Foswiki::Query::ConditionalOP::evalTest, avg 497µs/call | ||
30 | } | ||||
31 | |||||
32 | 1 | 6µs | 1; | ||
33 | __END__ |