← Index
NYTProf Performance Profile   « line view »
For scripts/bench.pl
  Run on Mon Oct 22 16:48:56 2018
Reported on Mon Oct 22 16:49:10 2018

Filename/usr/share/perl/5.26/utf8.pm
StatementsExecuted 4 statements in 16µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1113µs3µsutf8::::importutf8::import
0000s0sutf8::::AUTOLOADutf8::AUTOLOAD
0000s0sutf8::::unimportutf8::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package utf8;
2
31400ns$utf8::hint_bits = 0x00800000;
4
51400nsour $VERSION = '1.19';
6
7
# spent 3µs within utf8::import which was called: # once (3µs+0s) by Game::Collisions::AABB::BEGIN@26 at line 26 of /home/tmurray/proj/Game-Collisions/lib/Game/Collisions/AABB.pm
sub import {
8112µs $^H |= $utf8::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$utf8::hint_bits;
13}
14
15sub AUTOLOAD {
16 require "utf8_heavy.pl";
17 goto &$AUTOLOAD if defined &$AUTOLOAD;
18 require Carp;
19 Carp::croak("Undefined subroutine $AUTOLOAD called");
20}
21
2214µs1;
23__END__