← 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:16:49 2016
Reported on Fri Jan 8 14:23:07 2016

Filename/usr/share/perl5/Devel/GlobalDestruction.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11133µs168µsDevel::GlobalDestruction::::BEGIN@8Devel::GlobalDestruction::BEGIN@8
11121µs32µsDevel::GlobalDestruction::::BEGIN@3Devel::GlobalDestruction::BEGIN@3
11115µs31µsDevel::GlobalDestruction::::BEGIN@23Devel::GlobalDestruction::BEGIN@23
11113µs19µsDevel::GlobalDestruction::::BEGIN@4Devel::GlobalDestruction::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Devel::GlobalDestruction;
2
3242µs
# spent 32µs (21+10) within Devel::GlobalDestruction::BEGIN@3 which was called: # once (21µs+10µs) by Moo::_Utils::BEGIN@14 at line 3
use strict;
# spent 32µs making 1 call to Devel::GlobalDestruction::BEGIN@3 # spent 10µs making 1 call to strict::import
4225µs
# spent 19µs (13+6) within Devel::GlobalDestruction::BEGIN@4 which was called: # once (13µs+6µs) by Moo::_Utils::BEGIN@14 at line 4
use warnings;
# spent 19µs making 1 call to Devel::GlobalDestruction::BEGIN@4 # spent 6µs making 1 call to warnings::import
5
6our $VERSION = '0.13';
7
81135µs
# spent 168µs (33+135) within Devel::GlobalDestruction::BEGIN@8 which was called: # once (33µs+135µs) by Moo::_Utils::BEGIN@14 at line 11
use Sub::Exporter::Progressive -setup => {
# spent 135µs making 1 call to Sub::Exporter::Progressive::import
9 exports => [ qw(in_global_destruction) ],
10 groups => { default => [ -all ] },
111168µs};
# spent 168µs making 1 call to Devel::GlobalDestruction::BEGIN@8
12
13# we run 5.14+ - everything is in core
14#
15if (defined ${^GLOBAL_PHASE}) {
16 eval 'sub in_global_destruction () { ${^GLOBAL_PHASE} eq q[DESTRUCT] }; 1'
# spent 0s executing statements in string eval
# includes 323µs spent executing 174 calls to 1 sub defined therein.
17 or die $@;
18}
19# try to load the xs version if it was compiled
20#
21elsif (eval {
22 require Devel::GlobalDestruction::XS;
23247µs
# spent 31µs (15+16) within Devel::GlobalDestruction::BEGIN@23 which was called: # once (15µs+16µs) by Moo::_Utils::BEGIN@14 at line 23
no warnings 'once';
# spent 31µs making 1 call to Devel::GlobalDestruction::BEGIN@23 # spent 16µs making 1 call to warnings::unimport
24 *in_global_destruction = \&Devel::GlobalDestruction::XS::in_global_destruction;
25 1;
26}) {
27 # the eval already installed everything, nothing to do
28}
29else {
30 # internally, PL_main_cv is set to Nullcv immediately before entering
31 # global destruction and we can use B to detect that. B::main_cv will
32 # only ever be a B::CV or a B::SPECIAL that is a reference to 0
33 require B;
34 eval 'sub in_global_destruction () { ${B::main_cv()} == 0 }; 1'
35 or die $@;
36}
37
381; # keep require happy
39
40
41__END__