Filename | /Users/ether/perl5/perlbrew/perls/36.0/lib/5.36.0/bytes.pm |
Statements | Executed 23 statements in 229µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
16 | 16 | 15 | 29µs | 29µs | import | bytes::
1 | 1 | 1 | 19µs | 21µs | BEGIN@3 | bytes::
1 | 1 | 1 | 3µs | 23µs | BEGIN@4 | bytes::
0 | 0 | 0 | 0s | 0s | AUTOLOAD | bytes::
0 | 0 | 0 | 0s | 0s | unimport | bytes::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package bytes; | ||||
2 | |||||
3 | 2 | 24µs | 2 | 23µs | # spent 21µs (19+2) within bytes::BEGIN@3 which was called:
# once (19µs+2µs) by Encode::utf8::BEGIN@229 at line 3 # spent 21µs making 1 call to bytes::BEGIN@3
# spent 2µs making 1 call to strict::import |
4 | 2 | 146µs | 2 | 43µs | # spent 23µs (3+20) within bytes::BEGIN@4 which was called:
# once (3µs+20µs) by Encode::utf8::BEGIN@229 at line 4 # spent 23µs making 1 call to bytes::BEGIN@4
# spent 20µs making 1 call to warnings::import |
5 | |||||
6 | 1 | 1µs | our $VERSION = '1.08'; | ||
7 | |||||
8 | 1 | 0s | $bytes::hint_bits = 0x00000008; | ||
9 | |||||
10 | # spent 29µs within bytes::import which was called 16 times, avg 2µs/call:
# once (4µs+0s) by Data::Dumper::BEGIN@762 at line 762 of Data/Dumper.pm
# once (3µs+0s) by Unicode::Normalize::BEGIN@57 at line 57 of Unicode/Normalize.pm
# once (3µs+0s) by IO::Compress::Gzip::Constants::BEGIN@5 at line 5 of IO/Compress/Gzip/Constants.pm
# once (3µs+0s) by JSON::PP::IncrParser::BEGIN@1658 at line 1658 of JSON/PP.pm
# once (3µs+0s) by Compress::Raw::Zlib::BEGIN@10 at line 10 of Compress/Raw/Zlib.pm
# once (2µs+0s) by IO::Compress::Gzip::BEGIN@7 at line 7 of IO/Compress/Gzip.pm
# once (2µs+0s) by JSON::PP::BEGIN@799 at line 799 of JSON/PP.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::Uncompress::RawInflate::BEGIN@6 at line 6 of IO/Uncompress/RawInflate.pm
# once (2µs+0s) by IO::Uncompress::Adapter::Inflate::BEGIN@5 at line 5 of IO/Uncompress/Adapter/Inflate.pm
# once (1µs+0s) by Encode::utf8::BEGIN@229 at line 229 of Encode.pm
# once (1µs+0s) by IO::Compress::Adapter::Deflate::BEGIN@5 at line 5 of IO/Compress/Adapter/Deflate.pm
# once (1µs+0s) by IO::Compress::Base::Common::BEGIN@5 at line 5 of IO/Compress/Base/Common.pm
# once (0s+0s) by IO::Compress::Zlib::Extra::BEGIN@7 at line 7 of IO/Compress/Zlib/Extra.pm
# once (0s+0s) by IO::Compress::RawDeflate::BEGIN@7 at line 7 of IO/Compress/RawDeflate.pm
# once (0s+0s) by IO::Uncompress::Base::BEGIN@6 at line 6 of IO/Uncompress/Base.pm | ||||
11 | 16 | 55µs | $^H |= $bytes::hint_bits; | ||
12 | } | ||||
13 | |||||
14 | sub unimport { | ||||
15 | $^H &= ~$bytes::hint_bits; | ||||
16 | } | ||||
17 | |||||
18 | our $AUTOLOAD; | ||||
19 | sub AUTOLOAD { | ||||
20 | require "bytes_heavy.pl"; | ||||
21 | goto &$AUTOLOAD if defined &$AUTOLOAD; | ||||
22 | require Carp; | ||||
23 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
24 | } | ||||
25 | |||||
26 | sub length (_); | ||||
27 | sub chr (_); | ||||
28 | sub ord (_); | ||||
29 | sub substr ($$;$$); | ||||
30 | sub index ($$;$); | ||||
31 | sub rindex ($$;$); | ||||
32 | |||||
33 | 1 | 3µs | 1; | ||
34 | __END__ |