← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 10:04:38 2014
Reported on Tue Jun 24 10:05:11 2014

Filename/usr/share/perl/5.14/integer.pm
StatementsExecuted 14 statements in 78µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1010325µs25µsinteger::::importinteger::import
1113µs3µsinteger::::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
31500nsour $VERSION = '1.00';
4
51100ns$integer::hint_bits = 0x1;
6
7
# spent 25µs within integer::import which was called 10 times, avg 2µs/call: # once (3µs+0s) by DateTime::BEGIN@718 at line 718 of DateTime.pm # once (3µs+0s) by Math::BigInt::Calc::BEGIN@137 at line 137 of Math/BigInt/Calc.pm # once (3µs+0s) by DateTime::BEGIN@1871 at line 1871 of DateTime.pm # once (3µs+0s) by Math::BigInt::Calc::BEGIN@475 at line 475 of Math/BigInt/Calc.pm # once (3µs+0s) by Math::BigInt::Calc::BEGIN@2115 at line 2115 of Math/BigInt/Calc.pm # once (2µs+0s) by Math::BigInt::Calc::BEGIN@792 at line 792 of Math/BigInt/Calc.pm # once (2µs+0s) by Math::BigInt::Calc::BEGIN@154 at line 154 of Math/BigInt/Calc.pm # once (2µs+0s) by Math::BigInt::Calc::BEGIN@2186 at line 2186 of Math/BigInt/Calc.pm # once (2µs+0s) by Math::BigInt::Calc::BEGIN@2150 at line 2150 of Math/BigInt/Calc.pm # once (1µs+0s) by Tie::IxHash::BEGIN@13 at line 13 of Tie/IxHash.pm
sub import {
81070µs $^H |= $integer::hint_bits;
9}
10
11
# spent 3µs within integer::unimport which was called: # once (3µs+0s) by Math::BigInt::Calc::BEGIN@165 at line 165 of Math/BigInt/Calc.pm
sub unimport {
1215µs $^H &= ~$integer::hint_bits;
13}
14
1513µs1;