← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mongo_pain.pl
  Run on Fri Mar 25 17:00:29 2011
Reported on Fri Mar 25 17:07:06 2011

Filename/usr/share/perl/5.10/integer.pm
StatementsExecuted 7 statements in 33µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
44314µs14µ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
31800nsour $VERSION = '1.00';
4
51200ns$integer::hint_bits = 0x1;
6
7
# spent 14µs within integer::import which was called 4 times, avg 3µs/call: # once (4µs+0s) by Time::Local::BEGIN@7 at line 7 of Time/Local.pm # once (4µs+0s) by DateTime::BEGIN@1871 at line 1871 of DateTime.pm # once (3µs+0s) by Tie::IxHash::BEGIN@13 at line 13 of Tie/IxHash.pm # once (3µs+0s) by DateTime::BEGIN@697 at line 697 of DateTime.pm
sub import {
8428µs $^H |= $integer::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$integer::hint_bits;
13}
14
1514µs1;