← Index
NYTProf Performance Profile   « line view »
For /usr/local/bin/sa-learn
  Run on Sun Nov 5 03:09:29 2017
Reported on Mon Nov 6 13:20:46 2017

Filename/usr/local/lib/perl5/5.24/mach/File/Glob.pm
StatementsExecuted 20 statements in 1.46ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11151µs64µsFile::Glob::::BEGIN@3File::Glob::BEGIN@3
11123µs88µsFile::Glob::::BEGIN@54File::Glob::BEGIN@54
11120µs36µsFile::Glob::::BEGIN@58File::Glob::BEGIN@58
1118µs8µsFile::Glob::::CORE:matchFile::Glob::CORE:match (opcode)
1113µs3µsFile::Glob::::GLOB_CSHFile::Glob::GLOB_CSH (xsub)
0000s0sFile::Glob::::globFile::Glob::glob
0000s0sFile::Glob::::importFile::Glob::import
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package File::Glob;
2
32423µs277µs
# spent 64µs (51+13) within File::Glob::BEGIN@3 which was called: # once (51µs+13µs) by Mail::SpamAssassin::Util::BEGIN@1750 at line 3
use strict;
# spent 64µs making 1 call to File::Glob::BEGIN@3 # spent 13µs making 1 call to strict::import
4our($VERSION, @ISA, @EXPORT_OK, @EXPORT_FAIL, %EXPORT_TAGS, $DEFAULT_FLAGS);
5
613µsrequire XSLoader;
7
8119µs@ISA = qw(Exporter);
9
10# NOTE: The glob() export is only here for compatibility with 5.6.0.
11# csh_glob() should not be used directly, unless you know what you're doing.
12
1317µs%EXPORT_TAGS = (
14 'glob' => [ qw(
15 GLOB_ABEND
16 GLOB_ALPHASORT
17 GLOB_ALTDIRFUNC
18 GLOB_BRACE
19 GLOB_CSH
20 GLOB_ERR
21 GLOB_ERROR
22 GLOB_LIMIT
23 GLOB_MARK
24 GLOB_NOCASE
25 GLOB_NOCHECK
26 GLOB_NOMAGIC
27 GLOB_NOSORT
28 GLOB_NOSPACE
29 GLOB_QUOTE
30 GLOB_TILDE
31 bsd_glob
32 glob
33 ) ],
34);
35210µs$EXPORT_TAGS{bsd_glob} = [@{$EXPORT_TAGS{glob}}];
36210µspop @{$EXPORT_TAGS{bsd_glob}}; # no "glob"
37
3829µs@EXPORT_OK = (@{$EXPORT_TAGS{'glob'}}, 'csh_glob');
39
4012µs$VERSION = '1.26';
41
42sub import {
43 require Exporter;
44 local $Exporter::ExportLevel = $Exporter::ExportLevel + 1;
45 Exporter::import(grep {
46 my $passthrough;
47 if ($_ eq ':case') {
48 $DEFAULT_FLAGS &= ~GLOB_NOCASE()
49 }
50 elsif ($_ eq ':nocase') {
51 $DEFAULT_FLAGS |= GLOB_NOCASE();
52 }
53 elsif ($_ eq ':globally') {
54293µs2154µs
# spent 88µs (23+65) within File::Glob::BEGIN@54 which was called: # once (23µs+65µs) by Mail::SpamAssassin::Util::BEGIN@1750 at line 54
no warnings 'redefine';
# spent 88µs making 1 call to File::Glob::BEGIN@54 # spent 65µs making 1 call to warnings::unimport
55 *CORE::GLOBAL::glob = \&File::Glob::csh_glob;
56 }
57 elsif ($_ eq ':bsd_glob') {
582380µs251µs
# spent 36µs (20+15) within File::Glob::BEGIN@58 which was called: # once (20µs+15µs) by Mail::SpamAssassin::Util::BEGIN@1750 at line 58
no strict; *{caller."::glob"} = \&bsd_glob_override;
# spent 36µs making 1 call to File::Glob::BEGIN@58 # spent 15µs making 1 call to strict::unimport
59 $passthrough = 1;
60 }
61 else {
62 $passthrough = 1;
63 }
64 $passthrough;
65 } @_);
66}
67
681432µs1414µsXSLoader::load();
# spent 414µs making 1 call to XSLoader::load
69
70115µs13µs$DEFAULT_FLAGS = GLOB_CSH();
# spent 3µs making 1 call to File::Glob::GLOB_CSH
71129µs18µsif ($^O =~ /^(?:MSWin32|VMS|os2|dos|riscos)$/) {
# spent 8µs making 1 call to File::Glob::CORE:match
72 $DEFAULT_FLAGS |= GLOB_NOCASE();
73}
74
75# File::Glob::glob() is deprecated because its prototype is different from
76# CORE::glob() (use bsd_glob() instead)
77sub glob {
78 splice @_, 1; # no flags
79 goto &bsd_glob;
80}
81
82131µs1;
83__END__
 
# spent 8µs within File::Glob::CORE:match which was called: # once (8µs+0s) by Mail::SpamAssassin::Util::BEGIN@1750 at line 71
sub File::Glob::CORE:match; # opcode
# spent 3µs within File::Glob::GLOB_CSH which was called: # once (3µs+0s) by Mail::SpamAssassin::Util::BEGIN@1750 at line 70
sub File::Glob::GLOB_CSH; # xsub