← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:23:06 2012

Filename/2home/ss5/local/projects/Tapper/src/Tapper-MCP/lib/Tapper/MCP.pm
StatementsExecuted 14 statements in 175µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11124µs40µsTapper::MCP::::BEGIN@4Tapper::MCP::BEGIN@4
11110µs4.56msTapper::MCP::::BEGIN@8Tapper::MCP::BEGIN@8
1118µs11µsTapper::MCP::::BEGIN@5Tapper::MCP::BEGIN@5
1116µs6µsTapper::MCP::::BEGIN@7Tapper::MCP::BEGIN@7
0000s0sTapper::MCP::::cfgTapper::MCP::cfg
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Tapper::MCP;
2# ABSTRACT: Tapper - Central master control program of Tapper automation
3
4320µs255µs
# spent 40µs (24+15) within Tapper::MCP::BEGIN@4 which was called: # once (24µs+15µs) by Module::Runtime::require_module at line 4
use warnings;
# spent 40µs making 1 call to Tapper::MCP::BEGIN@4 # spent 15µs making 1 call to warnings::import
5317µs214µs
# spent 11µs (8+3) within Tapper::MCP::BEGIN@5 which was called: # once (8µs+3µs) by Module::Runtime::require_module at line 5
use strict;
# spent 11µs making 1 call to Tapper::MCP::BEGIN@5 # spent 3µs making 1 call to strict::import
6
7319µs16µs
# spent 6µs within Tapper::MCP::BEGIN@7 which was called: # once (6µs+0s) by Module::Runtime::require_module at line 7
use Tapper::Config;
# spent 6µs making 1 call to Tapper::MCP::BEGIN@7
83113µs29.11ms
# spent 4.56ms (10µs+4.55) within Tapper::MCP::BEGIN@8 which was called: # once (10µs+4.55ms) by Module::Runtime::require_module at line 8
use Moose;
# spent 4.56ms making 1 call to Tapper::MCP::BEGIN@8 # spent 4.55ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:492]
9
1012µs1817µsextends 'Tapper::Base';
# spent 817µs making 1 call to Moose::extends
11
12sub cfg
13{
14 my ($self) = @_;
15 return Tapper::Config->subconfig();
16}
17
1814µs1;