← 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:38 2014

Filename/usr/lib/perl/5.14/MIME/QuotedPrint.pm
StatementsExecuted 13 statements in 203µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111294µs523µsMIME::QuotedPrint::::BEGIN@12MIME::QuotedPrint::BEGIN@12
11117µs20µsMIME::QuotedPrint::::BEGIN@3MIME::QuotedPrint::BEGIN@3
1117µs44µsMIME::QuotedPrint::::BEGIN@4MIME::QuotedPrint::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package MIME::QuotedPrint;
2
3228µs223µs
# spent 20µs (17+3) within MIME::QuotedPrint::BEGIN@3 which was called: # once (17µs+3µs) by Mail::Sendmail::BEGIN@2 at line 3
use strict;
# spent 20µs making 1 call to MIME::QuotedPrint::BEGIN@3 # spent 3µs making 1 call to strict::import
4250µs282µs
# spent 44µs (7+38) within MIME::QuotedPrint::BEGIN@4 which was called: # once (7µs+38µs) by Mail::Sendmail::BEGIN@2 at line 4
use vars qw(@ISA @EXPORT $VERSION);
# spent 44µs making 1 call to MIME::QuotedPrint::BEGIN@4 # spent 38µs making 1 call to vars::import
5
61600nsrequire Exporter;
715µs@ISA = qw(Exporter);
81600ns@EXPORT = qw(encode_qp decode_qp);
9
101200ns$VERSION = "3.13";
11
122113µs2554µs
# spent 523µs (294+229) within MIME::QuotedPrint::BEGIN@12 which was called: # once (294µs+229µs) by Mail::Sendmail::BEGIN@2 at line 12
use MIME::Base64; # will load XS version of {en,de}code_qp()
# spent 523µs making 1 call to MIME::QuotedPrint::BEGIN@12 # spent 31µs making 1 call to Exporter::import
13
1411µs*encode = \&encode_qp;
151200ns*decode = \&decode_qp;
16
1715µs1;
18
19__END__