← Index
NYTProf Performance Profile   « line view »
For /Users/brian/bin/perls/cpan5.26.1
  Run on Sat Dec 30 01:41:10 2017
Reported on Sat Dec 30 01:44:15 2017

Filename/usr/local/perls/perl-5.26.1/lib/5.26.1/bytes.pm
StatementsExecuted 17 statements in 113µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
17171754µs54µsbytes::::importbytes::import
0000s0sbytes::::AUTOLOADbytes::AUTOLOAD
0000s0sbytes::::unimportbytes::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package bytes;
2
3our $VERSION = '1.05';
4
5$bytes::hint_bits = 0x00000008;
6
7
# spent 54µs within bytes::import which was called 17 times, avg 3µs/call: # once (8µs+0s) by IO::Compress::Base::Common::BEGIN@5 at line 5 of IO/Compress/Base/Common.pm # once (8µs+0s) by IO::Uncompress::Bunzip2::BEGIN@5 at line 5 of IO/Uncompress/Bunzip2.pm # once (4µs+0s) by Compress::Raw::Zlib::BEGIN@10 at line 10 of Compress/Raw/Zlib.pm # once (3µs+0s) by IO::Compress::Bzip2::BEGIN@5 at line 5 of IO/Compress/Bzip2.pm # once (3µs+0s) by IO::Uncompress::Base::BEGIN@6 at line 6 of IO/Uncompress/Base.pm # once (3µs+0s) by IO::Compress::Gzip::BEGIN@7 at line 7 of IO/Compress/Gzip.pm # once (3µs+0s) by Compress::Raw::Bzip2::BEGIN@11 at line 11 of Compress/Raw/Bzip2.pm # once (3µs+0s) by IO::Uncompress::RawInflate::BEGIN@6 at line 6 of IO/Uncompress/RawInflate.pm # once (3µs+0s) by IO::Compress::Adapter::Deflate::BEGIN@5 at line 5 of IO/Compress/Adapter/Deflate.pm # once (2µs+0s) by Compress::Zlib::BEGIN@17 at line 17 of Compress/Zlib.pm # once (2µs+0s) by IO::Uncompress::Adapter::Bunzip2::BEGIN@5 at line 5 of IO/Uncompress/Adapter/Bunzip2.pm # once (2µs+0s) by IO::Compress::Adapter::Bzip2::BEGIN@5 at line 5 of IO/Compress/Adapter/Bzip2.pm # once (2µs+0s) by IO::Uncompress::Adapter::Inflate::BEGIN@5 at line 5 of IO/Uncompress/Adapter/Inflate.pm # once (2µs+0s) by IO::Compress::Gzip::Constants::BEGIN@5 at line 5 of IO/Compress/Gzip/Constants.pm # once (2µs+0s) by IO::Compress::RawDeflate::BEGIN@7 at line 7 of IO/Compress/RawDeflate.pm # once (2µs+0s) by IO::Uncompress::Gunzip::BEGIN@10 at line 10 of IO/Uncompress/Gunzip.pm # once (2µs+0s) by IO::Compress::Zlib::Extra::BEGIN@7 at line 7 of IO/Compress/Zlib/Extra.pm
sub import {
817113µs $^H |= $bytes::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$bytes::hint_bits;
13}
14
15sub AUTOLOAD {
16 require "bytes_heavy.pl";
17 goto &$AUTOLOAD if defined &$AUTOLOAD;
18 require Carp;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
20}
21
22sub length (_);
23sub chr (_);
24sub ord (_);
25sub substr ($$;$$);
26sub index ($$;$);
27sub rindex ($$;$);
28
291;
30__END__