← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 09:58:41 2014
Reported on Tue Jun 24 09:59:19 2014

Filename/usr/local/lib/perl/5.14.2/Class/MOP/Mixin.pm
StatementsExecuted 46 statements in 256µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1117µs7µsClass::MOP::Mixin::::BEGIN@2Class::MOP::Mixin::BEGIN@2
1117µs10µsClass::MOP::Mixin::::BEGIN@9Class::MOP::Mixin::BEGIN@9
1116µs11µsClass::MOP::Mixin::::BEGIN@10Class::MOP::Mixin::BEGIN@10
1116µs30µsClass::MOP::Mixin::::BEGIN@12Class::MOP::Mixin::BEGIN@12
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Class::MOP::Mixin;
2
# spent 7µs within Class::MOP::Mixin::BEGIN@2 which was called: # once (7µs+0s) by base::import at line 4
BEGIN {
315µs $Class::MOP::Mixin::AUTHORITY = 'cpan:STEVAN';
4130µs17µs}
# spent 7µs making 1 call to Class::MOP::Mixin::BEGIN@2
5{
621µs $Class::MOP::Mixin::VERSION = '2.1005';
7}
8
9220µs212µs
# spent 10µs (7+3) within Class::MOP::Mixin::BEGIN@9 which was called: # once (7µs+3µs) by base::import at line 9
use strict;
# spent 10µs making 1 call to Class::MOP::Mixin::BEGIN@9 # spent 3µs making 1 call to strict::import
10220µs215µs
# spent 11µs (6+5) within Class::MOP::Mixin::BEGIN@10 which was called: # once (6µs+5µs) by base::import at line 10
use warnings;
# spent 11µs making 1 call to Class::MOP::Mixin::BEGIN@10 # spent 5µs making 1 call to warnings::import
11
12258µs254µs
# spent 30µs (6+24) within Class::MOP::Mixin::BEGIN@12 which was called: # once (6µs+24µs) by base::import at line 12
use Scalar::Util 'blessed';
# spent 30µs making 1 call to Class::MOP::Mixin::BEGIN@12 # spent 24µs making 1 call to Exporter::import
13
14sub meta {
1536120µs require Class::MOP::Class;
16361.13ms Class::MOP::Class->initialize( blessed( $_[0] ) || $_[0] );
# spent 1.12ms making 18 calls to Class::MOP::Class::initialize, avg 62µs/call # spent 10µs making 18 calls to Scalar::Util::blessed, avg 572ns/call
17}
18
1912µs1;
20
21# ABSTRACT: Base class for mixin classes
22
23__END__