← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 20:36:06 2020
Reported on Wed Feb 12 21:42:25 2020

Filename/usr/share/perl/5.28/integer.pm
StatementsExecuted 5 statements in 14µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1112µs2µsinteger::::unimportinteger::unimport
1112µs2µsinteger::::importinteger::import
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
31300nsour $VERSION = '1.01';
4
51100ns$integer::hint_bits = 0x1;
6
7
# spent 2µs within integer::import which was called: # once (2µs+0s) by Digest::SHA::BEGIN@9 at line 9 of Digest/SHA.pm
sub import {
815µs $^H |= $integer::hint_bits;
9}
10
11
# spent 2µs within integer::unimport which was called: # once (2µs+0s) by Digest::SHA::BEGIN@192 at line 192 of Digest/SHA.pm
sub unimport {
1216µs $^H &= ~$integer::hint_bits;
13}
14
1513µs1;