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

Filename/var/www/foswikidev/core/lib/AssertOff.pm
StatementsExecuted 26700 statements in 71.3ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
266931124.2ms24.2msAssert::::ASSERTAssert::ASSERT
11122µs46µsAssert::::BEGIN@7Assert::BEGIN@7
4118µs8µsAssert::::TAINTAssert::TAINT
0000s0sAssert::::UNTAINTEDAssert::UNTAINTED
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# This file is required from Assert.pm (or FastAssert.pm) when
4# asserts are inactive; it loads the runtme implementations of the
5# Assert module functions.
6
72119µs271µs
# spent 46µs (22+24) within Assert::BEGIN@7 which was called: # once (22µs+24µs) by Foswiki::BEGIN@46 at line 7
use strict;
# spent 46µs making 1 call to Assert::BEGIN@7 # spent 24µs making 1 call to strict::import
8
92669371.1ms
# spent 24.2ms within Assert::ASSERT which was called 26693 times, avg 908ns/call: # 26693 times (24.2ms+0s) by Foswiki::Store::Rcs::Handler::new at line 89 of /var/www/foswikidev/core/lib/Foswiki/Store/Rcs/Handler.pm, avg 908ns/call
sub ASSERT { }
10
11sub UNTAINTED {
12 return 1;
13}
14
15
# spent 8µs within Assert::TAINT which was called 4 times, avg 2µs/call: # 4 times (8µs+0s) by Foswiki::Engine::CLI::run at line 41 of /var/www/foswikidev/core/lib/Foswiki/Engine/CLI.pm, avg 2µs/call
sub TAINT {
16415µs return $_[0];
17}
18
1914µs1;
20__END__