← Index
NYTProf Performance Profile   « line view »
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:12 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/5.18.2/darwin-2level/PerlIO/encoding.pm
StatementsExecuted 9 statements in 421µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs31µ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
3286µs248µs
# spent 31µs (14+17) within PerlIO::encoding::BEGIN@3 which was called: # once (14µs+17µs) by PerlIO::import at line 3
use strict;
# spent 31µs making 1 call to PerlIO::encoding::BEGIN@3 # spent 17µs making 1 call to strict::import
41600nsour $VERSION = '0.16';
51100nsour $DEBUG = 0;
61100ns$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;
141315µs1308µsXSLoader::load();
# spent 308µs making 1 call to XSLoader::load
15
16113µs32µsour $fallback =
# spent 800ns making 1 call to Encode::PERLQQ # spent 700ns making 1 call to Encode::STOP_AT_PARTIAL # spent 700ns making 1 call to Encode::WARN_ON_ERR
17 Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::STOP_AT_PARTIAL();
18
1915µs1;
20__END__