← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 19:05:14 2015
Reported on Fri Jul 31 19:08:11 2015

Filename/var/www/foswiki11/lib/Foswiki/Macros/SPACEOUT.pm
StatementsExecuted 15 statements in 212µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs50µsFoswiki::::BEGIN@4.73Foswiki::BEGIN@4.73
21124µs112µsFoswiki::::SPACEOUTFoswiki::SPACEOUT
11120µs30µsFoswiki::::BEGIN@5.74Foswiki::BEGIN@5.74
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
2package Foswiki;
3
4253µs274µs
# spent 50µs (26+24) within Foswiki::BEGIN@4.73 which was called: # once (26µs+24µs) by Foswiki::_expandMacroOnTopicRendering at line 4
use strict;
# spent 50µs making 1 call to Foswiki::BEGIN@4.73 # spent 24µs making 1 call to strict::import
52128µs240µs
# spent 30µs (20+10) within Foswiki::BEGIN@5.74 which was called: # once (20µs+10µs) by Foswiki::_expandMacroOnTopicRendering at line 5
use warnings;
# spent 30µs making 1 call to Foswiki::BEGIN@5.74 # spent 10µs making 1 call to warnings::import
6
7
# spent 112µs (24+88) within Foswiki::SPACEOUT which was called 2 times, avg 56µs/call: # 2 times (24µs+88µs) by Foswiki::_expandMacroOnTopicRendering at line 3160 of /var/www/foswiki11/lib/Foswiki.pm, avg 56µs/call
sub SPACEOUT {
822µs my ( $this, $params ) = @_;
921µs my $spaceOutTopic = $params->{_DEFAULT};
102900ns my $sep = $params->{'separator'};
11214µs288µs $spaceOutTopic = spaceOutWikiWord( $spaceOutTopic, $sep );
# spent 88µs making 2 calls to Foswiki::spaceOutWikiWord, avg 44µs/call
1229µs return $spaceOutTopic;
13}
14
1514µs1;
16__END__