← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 11:58:52 2013
Reported on Tue Oct 15 12:02:29 2013

Filename/usr/share/perl5/YAML/Loader/Base.pm
StatementsExecuted 93 statements in 825µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
3211204µs204µsYAML::Loader::Base::::set_global_optionsYAML::Loader::Base::set_global_options
11124µs29µsYAML::Loader::Base::::BEGIN@3YAML::Loader::Base::BEGIN@3
11121µs85µsYAML::Loader::Base::::BEGIN@5YAML::Loader::Base::BEGIN@5
11114µs31µsYAML::Loader::Base::::BEGIN@4YAML::Loader::Base::BEGIN@4
0000s0sYAML::Loader::Base::::loadYAML::Loader::Base::load
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package YAML::Loader::Base;
2
3340µs234µs
# spent 29µs (24+5) within YAML::Loader::Base::BEGIN@3 which was called: # once (24µs+5µs) by YAML::Loader::BEGIN@6 at line 3
use strict;
# spent 29µs making 1 call to YAML::Loader::Base::BEGIN@3 # spent 5µs making 1 call to strict::import
4348µs248µs
# spent 31µs (14+17) within YAML::Loader::Base::BEGIN@4 which was called: # once (14µs+17µs) by YAML::Loader::BEGIN@6 at line 4
use warnings;
# spent 31µs making 1 call to YAML::Loader::Base::BEGIN@4 # spent 17µs making 1 call to warnings::import
53426µs2149µs
# spent 85µs (21+64) within YAML::Loader::Base::BEGIN@5 which was called: # once (21µs+64µs) by YAML::Loader::BEGIN@6 at line 5
use YAML::Base;
# spent 85µs making 1 call to YAML::Loader::Base::BEGIN@5 # spent 64µs making 1 call to Exporter::import
6
712µsour $VERSION = '0.71';
8135µsour @ISA = 'YAML::Base';
9
1014µs1445µsfield load_code => 0;
# spent 445µs making 1 call to YAML::Base::field
1113µs1185µsfield stream => '';
# spent 185µs making 1 call to YAML::Base::field
1212µs1175µsfield document => 0;
# spent 175µs making 1 call to YAML::Base::field
1312µs1296µsfield line => 0;
# spent 296µs making 1 call to YAML::Base::field
1414µs1123µsfield documents => [];
# spent 123µs making 1 call to YAML::Base::field
1513µs1111µsfield lines => [];
# spent 111µs making 1 call to YAML::Base::field
1612µs1216µsfield eos => 0;
# spent 216µs making 1 call to YAML::Base::field
1713µs1242µsfield done => 0;
# spent 242µs making 1 call to YAML::Base::field
1813µs1121µsfield anchor2node => {};
# spent 121µs making 1 call to YAML::Base::field
1913µs1177µsfield level => 0;
# spent 177µs making 1 call to YAML::Base::field
2013µs1162µsfield offset => [];
# spent 162µs making 1 call to YAML::Base::field
2113µs1178µsfield preface => '';
# spent 178µs making 1 call to YAML::Base::field
2213µs1185µsfield content => '';
# spent 185µs making 1 call to YAML::Base::field
2313µs1177µsfield indent => 0;
# spent 177µs making 1 call to YAML::Base::field
2413µs1172µsfield major_version => 0;
# spent 172µs making 1 call to YAML::Base::field
2512µs1175µsfield minor_version => 0;
# spent 175µs making 1 call to YAML::Base::field
2612µs1173µsfield inline => '';
# spent 173µs making 1 call to YAML::Base::field
27
28
# spent 204µs within YAML::Loader::Base::set_global_options which was called 32 times, avg 6µs/call: # 32 times (204µs+0s) by YAML::init_action_object at line 88 of YAML.pm, avg 6µs/call
sub set_global_options {
293228µs my $self = shift;
3032183µs $self->load_code($YAML::LoadCode || $YAML::UseCode)
31 if defined $YAML::LoadCode or defined $YAML::UseCode;
32}
33
34sub load {
35 die 'load() not implemented in this class.';
36}
37
38116µs1;
39
40__END__