← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 09:58:41 2014
Reported on Tue Jun 24 09:59:17 2014

Filename/usr/share/perl/5.14/integer.pm
StatementsExecuted 14 statements in 168µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1010355µs55µsinteger::::importinteger::import
1116µs6µ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
311µsour $VERSION = '1.00';
4
51400ns$integer::hint_bits = 0x1;
6
7
# spent 55µs within integer::import which was called 10 times, avg 6µs/call: # once (7µs+0s) by DateTime::BEGIN@718 at line 718 of DateTime.pm # once (7µs+0s) by DateTime::BEGIN@1871 at line 1871 of DateTime.pm # once (6µs+0s) by Math::BigInt::Calc::BEGIN@475 at line 475 of Math/BigInt/Calc.pm # once (6µs+0s) by Math::BigInt::Calc::BEGIN@2115 at line 2115 of Math/BigInt/Calc.pm # once (6µs+0s) by Math::BigInt::Calc::BEGIN@137 at line 137 of Math/BigInt/Calc.pm # once (6µs+0s) by Math::BigInt::Calc::BEGIN@792 at line 792 of Math/BigInt/Calc.pm # once (5µs+0s) by Math::BigInt::Calc::BEGIN@2150 at line 2150 of Math/BigInt/Calc.pm # once (5µs+0s) by Math::BigInt::Calc::BEGIN@154 at line 154 of Math/BigInt/Calc.pm # once (5µs+0s) by Math::BigInt::Calc::BEGIN@2186 at line 2186 of Math/BigInt/Calc.pm # once (2µs+0s) by Tie::IxHash::BEGIN@13 at line 13 of Tie/IxHash.pm
sub import {
810148µs $^H |= $integer::hint_bits;
9}
10
11
# spent 6µs within integer::unimport which was called: # once (6µs+0s) by Math::BigInt::Calc::BEGIN@165 at line 165 of Math/BigInt/Calc.pm
sub unimport {
12112µs $^H &= ~$integer::hint_bits;
13}
14
1517µs1;