← Index
NYTProf Performance Profile   « line view »
For rbm/rbm
  Run on Wed Feb 12 03:38:15 2020
Reported on Wed Feb 12 04:56:36 2020

Filename/usr/share/perl/5.28/integer.pm
StatementsExecuted 5 statements in 17µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1112µs2µsinteger::::importinteger::import
1112µs2µ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
31300nsour $VERSION = '1.01';
4
51200ns$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 {
817µ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;