← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 02:36:06 2017
Reported on Sun Nov 5 02:56:20 2017

Filename/usr/local/lib/perl5/site_perl/Mail/SpamAssassin/Util/ScopedTimer.pm
StatementsExecuted 10 statements in 510µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11147µs64µsMail::SpamAssassin::Util::ScopedTimer::::BEGIN@22Mail::SpamAssassin::Util::ScopedTimer::BEGIN@22
11131µs59µsMail::SpamAssassin::Util::ScopedTimer::::BEGIN@23Mail::SpamAssassin::Util::ScopedTimer::BEGIN@23
11130µs100µsMail::SpamAssassin::Util::ScopedTimer::::BEGIN@25Mail::SpamAssassin::Util::ScopedTimer::BEGIN@25
11122µs27µsMail::SpamAssassin::Util::ScopedTimer::::BEGIN@24Mail::SpamAssassin::Util::ScopedTimer::BEGIN@24
0000s0sMail::SpamAssassin::Util::ScopedTimer::::DESTROYMail::SpamAssassin::Util::ScopedTimer::DESTROY
0000s0sMail::SpamAssassin::Util::ScopedTimer::::newMail::SpamAssassin::Util::ScopedTimer::new
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# Helper code to debug dependencies and their versions.
2
3# <@LICENSE>
4# Licensed to the Apache Software Foundation (ASF) under one or more
5# contributor license agreements. See the NOTICE file distributed with
6# this work for additional information regarding copyright ownership.
7# The ASF licenses this file to you under the Apache License, Version 2.0
8# (the "License"); you may not use this file except in compliance with
9# the License. You may obtain a copy of the License at:
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# </@LICENSE>
19
20package Mail::SpamAssassin::Util::ScopedTimer;
21
22261µs281µs
# spent 64µs (47+17) within Mail::SpamAssassin::Util::ScopedTimer::BEGIN@22 which was called: # once (47µs+17µs) by Mail::SpamAssassin::BEGIN@80 at line 22
use strict;
# spent 64µs making 1 call to Mail::SpamAssassin::Util::ScopedTimer::BEGIN@22 # spent 17µs making 1 call to strict::import
23260µs287µs
# spent 59µs (31+28) within Mail::SpamAssassin::Util::ScopedTimer::BEGIN@23 which was called: # once (31µs+28µs) by Mail::SpamAssassin::BEGIN@80 at line 23
use warnings;
# spent 59µs making 1 call to Mail::SpamAssassin::Util::ScopedTimer::BEGIN@23 # spent 28µs making 1 call to warnings::import
24285µs232µs
# spent 27µs (22+5) within Mail::SpamAssassin::Util::ScopedTimer::BEGIN@24 which was called: # once (22µs+5µs) by Mail::SpamAssassin::BEGIN@80 at line 24
use bytes;
# spent 27µs making 1 call to Mail::SpamAssassin::Util::ScopedTimer::BEGIN@24 # spent 5µs making 1 call to bytes::import
252277µs2169µs
# spent 100µs (30+70) within Mail::SpamAssassin::Util::ScopedTimer::BEGIN@25 which was called: # once (30µs+70µs) by Mail::SpamAssassin::BEGIN@80 at line 25
use re 'taint';
# spent 100µs making 1 call to Mail::SpamAssassin::Util::ScopedTimer::BEGIN@25 # spent 70µs making 1 call to re::import
26
27114µsour @ISA = qw();
28
29sub new {
30 my $class = shift;
31 my $self = {
32 main => shift,
33 timer => shift,
34 };
35 $self->{main}->timer_start($self->{timer});
36 return bless ($self, $class);
37}
38
39# OO hack: when the object goes out of scope, the timer ends. neat!
40sub DESTROY {
41 my $self = shift;
42 # best practices: prevent potential calls to eval and to system routines
43 # in code of a DESTROY method from clobbering global variables $@ and $!
44 local($@,$!); # keep outer error handling unaffected by DESTROY
45 $self->{main} && $self->{timer} && $self->{main}->timer_end($self->{timer});
46}
47
48113µs1;