← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:31:06 2016
Reported on Fri Jan 8 14:33:30 2016

Filename/usr/lib/x86_64-linux-gnu/perl/5.20/PerlIO/encoding.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11135µs53µ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
3272µs
# spent 53µs (35+18) within PerlIO::encoding::BEGIN@3 which was called: # once (35µs+18µs) by PerlIO::import at line 3
use strict;
# spent 53µs making 1 call to PerlIO::encoding::BEGIN@3 # spent 18µs making 1 call to strict::import
4our $VERSION = '0.18';
5our $DEBUG = 0;
6$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
13require XSLoader;
141302µsXSLoader::load();
# spent 302µs making 1 call to XSLoader::load
15
1632µsour $fallback =
# spent 700ns making 1 call to Encode::PERLQQ # spent 500ns making 1 call to Encode::STOP_AT_PARTIAL # spent 500ns making 1 call to Encode::WARN_ON_ERR
17 Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::STOP_AT_PARTIAL();
18
191;
20__END__