Filename | /usr/lib/x86_64-linux-gnu/perl-base/utf8.pm |
Statements | Executed 11 statements in 1.90ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 1.86ms | 1.88ms | BEGIN@4 | utf8::
1 | 1 | 1 | 8µs | 10µs | BEGIN@3 | utf8::
4 | 4 | 4 | 7µs | 7µs | import | utf8::
4 | 2 | 2 | 2µs | 2µs | encode (xsub) | utf8::
0 | 0 | 0 | 0s | 0s | AUTOLOAD | utf8::
0 | 0 | 0 | 0s | 0s | unimport | utf8::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package utf8; | ||||
2 | |||||
3 | 2 | 20µs | 2 | 11µs | # spent 10µs (8+2) within utf8::BEGIN@3 which was called:
# once (8µs+2µs) by main::BEGIN@4 at line 3 # spent 10µs making 1 call to utf8::BEGIN@3
# spent 2µs making 1 call to strict::import |
4 | 2 | 1.87ms | 2 | 1.90ms | # spent 1.88ms (1.86+21µs) within utf8::BEGIN@4 which was called:
# once (1.86ms+21µs) by main::BEGIN@4 at line 4 # spent 1.88ms making 1 call to utf8::BEGIN@4
# spent 16µs making 1 call to warnings::import |
5 | |||||
6 | 1 | 100ns | our $hint_bits = 0x00800000; | ||
7 | |||||
8 | 1 | 100ns | our $VERSION = '1.24'; | ||
9 | our $AUTOLOAD; | ||||
10 | |||||
11 | # spent 7µs within utf8::import which was called 4 times, avg 2µs/call:
# once (3µs+0s) by IO::Prompter::BEGIN@3 at line 3 of IO/Prompter.pm
# once (2µs+0s) by Gradescope::Translate::BEGIN@3 at line 3 of /home/hejohns/documentsNoSync/22f/490/gradescope-utils/lib/Gradescope/Translate.pm
# once (2µs+0s) by Gradescope::Color::BEGIN@3 at line 3 of /home/hejohns/documentsNoSync/22f/490/gradescope-utils/lib/Gradescope/Color.pm
# once (1µs+0s) by main::BEGIN@4 at line 4 of /home/hejohns/documentsNoSync/22f/490/gradescope-utils/bin/split.pl | ||||
12 | 4 | 12µs | $^H |= $hint_bits; | ||
13 | } | ||||
14 | |||||
15 | sub unimport { | ||||
16 | $^H &= ~$hint_bits; | ||||
17 | } | ||||
18 | |||||
19 | sub AUTOLOAD { | ||||
20 | goto &$AUTOLOAD if defined &$AUTOLOAD; | ||||
21 | require Carp; | ||||
22 | Carp::croak("Undefined subroutine $AUTOLOAD called"); | ||||
23 | } | ||||
24 | |||||
25 | 1 | 2µs | 1; | ||
26 | __END__ | ||||
# spent 2µs within utf8::encode which was called 4 times, avg 625ns/call:
# 3 times (2µs+0s) by base::__ANON__[/usr/lib/x86_64-linux-gnu/perl-base/base.pm:75] at line 73 of base.pm, avg 600ns/call
# once (700ns+0s) by Pod::Simple::LinkSection::BEGIN@7 at line 98 of Pod/Simple/BlackBox.pm |