← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 18:42:36 2015
Reported on Fri Jul 31 18:48:15 2015

Filename/var/www/foswikidev/core/lib/Foswiki/Query/OP_empty.pm
StatementsExecuted 10 statements in 241µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111356µs393µsFoswiki::Query::OP_empty::::BEGIN@14Foswiki::Query::OP_empty::BEGIN@14
11121µs30µsFoswiki::Query::OP_empty::::newFoswiki::Query::OP_empty::new
11113µs26µsFoswiki::Query::OP_empty::::BEGIN@11Foswiki::Query::OP_empty::BEGIN@11
11111µs15µsFoswiki::Query::OP_empty::::BEGIN@12Foswiki::Query::OP_empty::BEGIN@12
0000s0sFoswiki::Query::OP_empty::::evaluateFoswiki::Query::OP_empty::evaluate
0000s0sFoswiki::Query::OP_empty::::evaluatesToConstantFoswiki::Query::OP_empty::evaluatesToConstant
Call graph for these subroutines as a Graphviz dot language file.
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_in
6
7=cut
8
9package Foswiki::Query::OP_empty;
10
11225µs240µs
# spent 26µs (13+14) within Foswiki::Query::OP_empty::BEGIN@11 which was called: # once (13µs+14µs) by Foswiki::Query::Node::BEGIN@75 at line 11
use strict;
# spent 26µs making 1 call to Foswiki::Query::OP_empty::BEGIN@11 # spent 14µs making 1 call to strict::import
12225µs219µs
# spent 15µs (11+4) within Foswiki::Query::OP_empty::BEGIN@12 which was called: # once (11µs+4µs) by Foswiki::Query::Node::BEGIN@75 at line 12
use warnings;
# spent 15µs making 1 call to Foswiki::Query::OP_empty::BEGIN@12 # spent 4µs making 1 call to warnings::import
13
142162µs1393µs
# spent 393µs (356+37) within Foswiki::Query::OP_empty::BEGIN@14 which was called: # once (356µs+37µs) by Foswiki::Query::Node::BEGIN@75 at line 14
use Foswiki::Query::OP ();
# spent 393µs making 1 call to Foswiki::Query::OP_empty::BEGIN@14
1517µsour @ISA = ('Foswiki::Query::OP');
16
17
# spent 30µs (21+10) within Foswiki::Query::OP_empty::new which was called: # once (21µs+10µs) by Foswiki::Query::Node::BEGIN@75 at line 77 of /var/www/foswikidev/core/lib/Foswiki/Query/Node.pm
sub new {
181600ns my $class = shift;
19119µs110µs return $class->SUPER::new( name => '()', prec => 0, arity => 0 );
# spent 10µs making 1 call to Foswiki::Query::OP::new
20}
21
22sub evaluate {
23 my $this = shift;
24 return [];
25}
26
27sub evaluatesToConstant {
28 return 1;
29}
30
3113µs1;
32__END__