← Index
NYTProf Performance Profile   « line view »
For script/ponapi
  Run on Wed Feb 10 15:51:26 2016
Reported on Thu Feb 11 09:43:11 2016

Filename/usr/local/lib/perl/5.18.2/Moose/Meta/Method/Accessor/Native/Hash/keys.pm
StatementsExecuted 23 statements in 209µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11122µs39µsMoose::Meta::Method::Accessor::Native::Hash::keys::::BEGIN@4Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@4
31112µs12µsMoose::Meta::Method::Accessor::Native::Hash::keys::::_return_valueMoose::Meta::Method::Accessor::Native::Hash::keys::_return_value
1119µs2.28msMoose::Meta::Method::Accessor::Native::Hash::keys::::BEGIN@7Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@7
1118µs16µsMoose::Meta::Method::Accessor::Native::Hash::keys::::BEGIN@5Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@5
1118µs91µsMoose::Meta::Method::Accessor::Native::Hash::keys::::BEGIN@20Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@20
3116µs6µsMoose::Meta::Method::Accessor::Native::Hash::keys::::_maximum_argumentsMoose::Meta::Method::Accessor::Native::Hash::keys::_maximum_arguments
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Moose::Meta::Method::Accessor::Native::Hash::keys;
21400nsour $VERSION = '2.1604';
3
4226µs256µs
# spent 39µs (22+17) within Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@4 which was called: # once (22µs+17µs) by Module::Runtime::require_module at line 4
use strict;
# spent 39µs making 1 call to Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@4 # spent 17µs making 1 call to strict::import
5223µs225µs
# spent 16µs (8+8) within Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@5 which was called: # once (8µs+8µs) by Module::Runtime::require_module at line 5
use warnings;
# spent 16µs making 1 call to Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@5 # spent 8µs making 1 call to warnings::import
6
7298µs24.56ms
# spent 2.28ms (9µs+2.27) within Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@7 which was called: # once (9µs+2.27ms) by Module::Runtime::require_module at line 7
use Moose::Role;
# spent 2.28ms making 1 call to Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@7 # spent 2.27ms making 1 call to Moose::Role::import
8
912µs11.86mswith 'Moose::Meta::Method::Accessor::Native::Reader';
# spent 1.86ms making 1 call to Moose::Role::with
10
1139µs
# spent 6µs within Moose::Meta::Method::Accessor::Native::Hash::keys::_maximum_arguments which was called 3 times, avg 2µs/call: # 3 times (6µs+0s) by Moose::Meta::Method::Accessor::Native::_inline_check_argument_count at line 85 of Moose/Meta/Method/Accessor/Native.pm, avg 2µs/call
sub _maximum_arguments { 0 }
12
13
# spent 12µs within Moose::Meta::Method::Accessor::Native::Hash::keys::_return_value which was called 3 times, avg 4µs/call: # 3 times (12µs+0s) by Moose::Meta::Method::Accessor::Native::_inline_return_value at line 103 of Moose/Meta/Method/Accessor/Native.pm, avg 4µs/call
sub _return_value {
1432µs my $self = shift;
1532µs my ($slot_access) = @_;
16
17311µs return 'keys %{ (' . $slot_access . ') }';
18}
19
20230µs2174µs
# spent 91µs (8+83) within Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@20 which was called: # once (8µs+83µs) by Module::Runtime::require_module at line 20
no Moose::Role;
# spent 91µs making 1 call to Moose::Meta::Method::Accessor::Native::Hash::keys::BEGIN@20 # spent 83µs making 1 call to Moose::Role::unimport
21
2216µs1;