← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 18:42:36 2015
Reported on Fri Jul 31 18:48:15 2015

Filename/usr/lib64/perl5/PerlIO/encoding.pm
StatementsExecuted 9 statements in 306µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs28µsPerlIO::encoding::::BEGIN@3PerlIO::encoding::BEGIN@3
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package PerlIO::encoding;
2
3297µs242µs
# spent 28µs (14+14) within PerlIO::encoding::BEGIN@3 which was called: # once (14µs+14µs) by PerlIO::import at line 3
use strict;
# spent 28µs making 1 call to PerlIO::encoding::BEGIN@3 # spent 14µs making 1 call to strict::import
41600nsour $VERSION = '0.15';
51200nsour $DEBUG = 0;
61200ns$DEBUG and warn __PACKAGE__, " called by ", join(", ", caller), "\n";
7
8#
9# Equivalent of this is done in encoding.xs - do not uncomment.
10#
11# use Encode ();
12
131900nsrequire XSLoader;
141189µs1182µsXSLoader::load();
# spent 182µs making 1 call to XSLoader::load
15
16112µs32µsour $fallback =
# spent 800ns making 1 call to Encode::PERLQQ # spent 700ns making 1 call to Encode::WARN_ON_ERR # spent 600ns making 1 call to Encode::STOP_AT_PARTIAL
17 Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::STOP_AT_PARTIAL();
18
1916µs1;
20__END__