← Index
NYTProf Performance Profile   « line view »
For script/ponapi
  Run on Wed Feb 10 15:51:26 2016
Reported on Thu Feb 11 09:43:12 2016

Filename/usr/share/perl/5.18/integer.pm
StatementsExecuted 4 statements in 18µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1114µs4µ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
31600nsour $VERSION = '1.00';
4
51200ns$integer::hint_bits = 0x1;
6
7
# spent 4µs within integer::import which was called: # once (4µs+0s) by Time::Piece::BEGIN@422 at line 422 of Time/Piece.pm
sub import {
8114µs $^H |= $integer::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$integer::hint_bits;
13}
14
1514µs1;