← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/local/src/github.com/foswiki/core/bin/view
  Run on Sun Dec 4 17:17:59 2011
Reported on Sun Dec 4 17:26:44 2011

Filename/usr/share/perl/5.14/integer.pm
StatementsExecuted 5 statements in 29µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
22213µs13µsinteger::::importinteger::import
0000s0sinteger::::unimportinteger::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package integer;
2
312µsour $VERSION = '1.00';
4
511µs$integer::hint_bits = 0x1;
6
7
# spent 13µs within integer::import which was called 2 times, avg 6µs/call: # once (6µs+0s) by Digest::SHA::BEGIN@8 at line 8 of Digest/SHA.pm # once (6µs+0s) by Foswiki::UI::View::BEGIN@15 at line 15 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/UI/View.pm
sub import {
8220µs $^H |= $integer::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$integer::hint_bits;
13}
14
1516µs1;