← 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 13:01:18 2016
Reported on Fri Jan 8 13:01:34 2016

Filename/usr/share/perl5/Devel/GlobalDestruction.pm
StatementsExecuted 12 statements in 851µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11133µs174µsDevel::GlobalDestruction::::BEGIN@8Devel::GlobalDestruction::BEGIN@8
11126µs43µsDevel::GlobalDestruction::::BEGIN@3Devel::GlobalDestruction::BEGIN@3
11114µs36µsDevel::GlobalDestruction::::BEGIN@23Devel::GlobalDestruction::BEGIN@23
11112µs25µ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
3271µs261µs
# spent 43µs (26+18) within Devel::GlobalDestruction::BEGIN@3 which was called: # once (26µs+18µs) by Moo::_Utils::BEGIN@14 at line 3
use strict;
# spent 43µs making 1 call to Devel::GlobalDestruction::BEGIN@3 # spent 18µs making 1 call to strict::import
42119µs237µs
# spent 25µs (12+13) within Devel::GlobalDestruction::BEGIN@4 which was called: # once (12µs+13µs) by Moo::_Utils::BEGIN@14 at line 4
use warnings;
# spent 25µs making 1 call to Devel::GlobalDestruction::BEGIN@4 # spent 13µs making 1 call to warnings::import
5
611µsour $VERSION = '0.13';
7
81172µs1141µs
# spent 174µs (33+141) within Devel::GlobalDestruction::BEGIN@8 which was called: # once (33µs+141µs) by Moo::_Utils::BEGIN@14 at line 11
use Sub::Exporter::Progressive -setup => {
# spent 141µs making 1 call to Sub::Exporter::Progressive::import
9 exports => [ qw(in_global_destruction) ],
10 groups => { default => [ -all ] },
111123µs1174µs};
# spent 174µs making 1 call to Devel::GlobalDestruction::BEGIN@8
12
13# we run 5.14+ - everything is in core
14#
15155µsif (defined ${^GLOBAL_PHASE}) {
161107µs eval 'sub in_global_destruction () { ${^GLOBAL_PHASE} eq q[DESTRUCT] }; 1'
# spent 544µs executing statements in string eval
# includes 294µ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;
232154µs259µs
# spent 36µs (14+22) within Devel::GlobalDestruction::BEGIN@23 which was called: # once (14µs+22µs) by Moo::_Utils::BEGIN@14 at line 23
no warnings 'once';
# spent 36µs making 1 call to Devel::GlobalDestruction::BEGIN@23 # spent 22µ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
38150µs1; # keep require happy
39
40
41__END__