← Index
NYTProf Performance Profile   « line view »
For examples/Atom-timer.pl
  Run on Mon Aug 12 14:45:28 2013
Reported on Mon Aug 12 14:46:14 2013

Filename/Users/dde/perl5/perlbrew/perls/5.18.0t/lib/site_perl/5.18.0/darwin-thread-multi-2level/Class/MOP/Mixin.pm
StatementsExecuted 46 statements in 229µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1118µs11µsClass::MOP::Mixin::::BEGIN@10Class::MOP::Mixin::BEGIN@10
1117µs7µsClass::MOP::Mixin::::BEGIN@2Class::MOP::Mixin::BEGIN@2
1116µs25µsClass::MOP::Mixin::::BEGIN@12Class::MOP::Mixin::BEGIN@12
1115µs15µsClass::MOP::Mixin::::BEGIN@9Class::MOP::Mixin::BEGIN@9
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 {
314µs $Class::MOP::Mixin::AUTHORITY = 'cpan:STEVAN';
4125µs17µs}
# spent 7µs making 1 call to Class::MOP::Mixin::BEGIN@2
5{
62800ns $Class::MOP::Mixin::VERSION = '2.1005';
7}
8
9221µs224µs
# spent 15µs (5+10) within Class::MOP::Mixin::BEGIN@9 which was called: # once (5µs+10µs) by base::import at line 9
use strict;
# spent 15µs making 1 call to Class::MOP::Mixin::BEGIN@9 # spent 10µs making 1 call to strict::import
10220µs214µs
# spent 11µs (8+3) within Class::MOP::Mixin::BEGIN@10 which was called: # once (8µs+3µs) by base::import at line 10
use warnings;
# spent 11µs making 1 call to Class::MOP::Mixin::BEGIN@10 # spent 3µs making 1 call to warnings::import
11
12256µs244µs
# spent 25µs (6+19) within Class::MOP::Mixin::BEGIN@12 which was called: # once (6µs+19µs) by base::import at line 12
use Scalar::Util 'blessed';
# spent 25µs making 1 call to Class::MOP::Mixin::BEGIN@12 # spent 19µs making 1 call to Exporter::import
13
14sub meta {
15185µs require Class::MOP::Class;
161895µs36980µs Class::MOP::Class->initialize( blessed( $_[0] ) || $_[0] );
# spent 974µs making 18 calls to Class::MOP::Class::initialize, avg 54µs/call # spent 7µs making 18 calls to Scalar::Util::blessed, avg 389ns/call
17}
18
1912µs1;
20
21# ABSTRACT: Base class for mixin classes
22
23__END__