← 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 17:10:45 2013
Reported on Tue Oct 15 17:12:54 2013

Filename/usr/share/perl5/YAML/Loader/Base.pm
StatementsExecuted 93 statements in 798µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
3211161µs161µsYAML::Loader::Base::::set_global_optionsYAML::Loader::Base::set_global_options
11128µs34µsYAML::Loader::Base::::BEGIN@3YAML::Loader::Base::BEGIN@3
11117µs87µsYAML::Loader::Base::::BEGIN@5YAML::Loader::Base::BEGIN@5
11116µs36µ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
3343µs240µs
# spent 34µs (28+6) within YAML::Loader::Base::BEGIN@3 which was called: # once (28µs+6µs) by YAML::Loader::BEGIN@6 at line 3
use strict;
# spent 34µs making 1 call to YAML::Loader::Base::BEGIN@3 # spent 6µs making 1 call to strict::import
4345µs257µs
# spent 36µs (16+20) within YAML::Loader::Base::BEGIN@4 which was called: # once (16µs+20µs) by YAML::Loader::BEGIN@6 at line 4
use warnings;
# spent 36µs making 1 call to YAML::Loader::Base::BEGIN@4 # spent 20µs making 1 call to warnings::import
53399µs2156µs
# spent 87µs (17+70) within YAML::Loader::Base::BEGIN@5 which was called: # once (17µs+70µs) by YAML::Loader::BEGIN@6 at line 5
use YAML::Base;
# spent 87µs making 1 call to YAML::Loader::Base::BEGIN@5 # spent 70µs making 1 call to Exporter::import
6
712µsour $VERSION = '0.71';
8120µsour @ISA = 'YAML::Base';
9
1015µs1420µsfield load_code => 0;
# spent 420µs making 1 call to YAML::Base::field
1114µs1300µsfield stream => '';
# spent 300µs making 1 call to YAML::Base::field
1214µs1204µsfield document => 0;
# spent 204µs making 1 call to YAML::Base::field
1319µs1274µsfield line => 0;
# spent 274µs making 1 call to YAML::Base::field
1413µs1113µsfield documents => [];
# spent 113µs making 1 call to YAML::Base::field
1512µs1107µsfield lines => [];
# spent 107µs making 1 call to YAML::Base::field
1612µs1268µsfield eos => 0;
# spent 268µs making 1 call to YAML::Base::field
1715µs1284µsfield done => 0;
# spent 284µs making 1 call to YAML::Base::field
1815µs1263µsfield anchor2node => {};
# spent 263µs making 1 call to YAML::Base::field
1916µs1373µsfield level => 0;
# spent 373µs making 1 call to YAML::Base::field
2017µs1236µsfield offset => [];
# spent 236µs making 1 call to YAML::Base::field
2114µs1298µsfield preface => '';
# spent 298µs making 1 call to YAML::Base::field
2214µs1331µsfield content => '';
# spent 331µs making 1 call to YAML::Base::field
2314µs1354µsfield indent => 0;
# spent 354µs making 1 call to YAML::Base::field
2415µs1310µsfield major_version => 0;
# spent 310µs making 1 call to YAML::Base::field
2514µs1312µsfield minor_version => 0;
# spent 312µs making 1 call to YAML::Base::field
2614µs1307µsfield inline => '';
# spent 307µs making 1 call to YAML::Base::field
27
28
# spent 161µs within YAML::Loader::Base::set_global_options which was called 32 times, avg 5µs/call: # 32 times (161µs+0s) by YAML::init_action_object at line 88 of YAML.pm, avg 5µs/call
sub set_global_options {
293226µs my $self = shift;
3032161µ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
38125µs1;
39
40__END__