← Index
NYTProf Performance Profile   « block view • line view • sub view »
For conv.pl
  Run on Sun Nov 14 22:50:31 2010
Reported on Sun Nov 14 22:51:23 2010

Filename/usr/share/perl/5.10/integer.pm
StatementsExecuted 8 statements in 45µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
55522µs22µ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
312µsour $VERSION = '1.00';
4
511µs$integer::hint_bits = 0x1;
6
7
# spent 22µs within integer::import which was called 5 times, avg 4µs/call: # once (5µs+0s) by MARC::Batch::BEGIN@27 at line 27 of MARC/Batch.pm # once (5µs+0s) by MARC::File::BEGIN@10 at line 10 of MARC/File.pm # once (5µs+0s) by MARC::Record::BEGIN@10 at line 10 of MARC/Record.pm # once (4µs+0s) by MARC::File::USMARC::BEGIN@10 at line 10 of MARC/File/USMARC.pm # once (3µs+0s) by MARC::Field::BEGIN@4 at line 4 of MARC/Field.pm
sub import {
8537µs $^H |= $integer::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$integer::hint_bits;
13}
14
1515µs1;