← Index
NYTProf Performance Profile   « line view »
For ../prof.pl
  Run on Wed Dec 14 16:10:05 2022
Reported on Wed Dec 14 16:12:57 2022

Filename/Users/ether/perl5/perlbrew/perls/36.0/lib/5.36.0/darwin-2level/File/Glob.pm
StatementsExecuted 26 statements in 1.40ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11130µs33µsFile::Glob::::BEGIN@3File::Glob::BEGIN@3
11114µs41µsFile::Glob::::BEGIN@50File::Glob::BEGIN@50
11110µs13µsFile::Glob::::BEGIN@54File::Glob::BEGIN@54
11110µs181µsFile::Glob::::importFile::Glob::import
1113µs3µsFile::Glob::::CORE:matchFile::Glob::CORE:match (opcode)
2221µs1µsFile::Glob::::GLOB_CSHFile::Glob::GLOB_CSH (xsub)
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
32264µs236µs
# spent 33µs (30+3) within File::Glob::BEGIN@3 which was called: # once (30µs+3µs) by File::GlobMapper::BEGIN@10 at line 3
use strict;
# spent 33µs making 1 call to File::Glob::BEGIN@3 # spent 3µs making 1 call to strict::import
4our($DEFAULT_FLAGS);
5
611µsrequire XSLoader;
7
8# NOTE: The glob() export is only here for compatibility with 5.6.0.
9# csh_glob() should not be used directly, unless you know what you're doing.
10
1114µsour %EXPORT_TAGS = (
12 'glob' => [ qw(
13 GLOB_ABEND
14 GLOB_ALPHASORT
15 GLOB_ALTDIRFUNC
16 GLOB_BRACE
17 GLOB_CSH
18 GLOB_ERR
19 GLOB_ERROR
20 GLOB_LIMIT
21 GLOB_MARK
22 GLOB_NOCASE
23 GLOB_NOCHECK
24 GLOB_NOMAGIC
25 GLOB_NOSORT
26 GLOB_NOSPACE
27 GLOB_QUOTE
28 GLOB_TILDE
29 bsd_glob
30 ) ],
31);
32120µs$EXPORT_TAGS{bsd_glob} = [@{$EXPORT_TAGS{glob}}];
33
3412µsour @EXPORT_OK = (@{$EXPORT_TAGS{'glob'}}, 'csh_glob');
35
3610sour $VERSION = '1.37';
37
38
# spent 181µs (10+171) within File::Glob::import which was called: # once (10µs+171µs) by File::GlobMapper::BEGIN@10 at line 19 of File/GlobMapper.pm
sub import {
3911µs require Exporter;
4011µs local $Exporter::ExportLevel = $Exporter::ExportLevel + 1;
41 Exporter::import(grep {
4235µs1171µs my $passthrough;
# spent 171µs making 1 call to Exporter::import
4321µs if ($_ eq ':case') {
44 $DEFAULT_FLAGS &= ~GLOB_NOCASE()
45 }
46 elsif ($_ eq ':nocase') {
47 $DEFAULT_FLAGS |= GLOB_NOCASE();
48 }
49 elsif ($_ eq ':globally') {
50258µs268µs
# spent 41µs (14+27) within File::Glob::BEGIN@50 which was called: # once (14µs+27µs) by File::GlobMapper::BEGIN@10 at line 50
no warnings 'redefine';
# spent 41µs making 1 call to File::Glob::BEGIN@50 # spent 27µs making 1 call to warnings::unimport
51 *CORE::GLOBAL::glob = \&File::Glob::csh_glob;
52 }
53 elsif ($_ eq ':bsd_glob') {
542267µs216µs
# spent 13µs (10+3) within File::Glob::BEGIN@54 which was called: # once (10µs+3µs) by File::GlobMapper::BEGIN@10 at line 54
no strict; *{caller."::glob"} = \&bsd_glob_override;
# spent 13µs making 1 call to File::Glob::BEGIN@54 # spent 3µs making 1 call to strict::unimport
55 $passthrough = 1;
56 }
57 else {
5820s $passthrough = 1;
59 }
6020s $passthrough;
61 } @_);
62}
63
641753µs1744µsXSLoader::load();
# spent 744µs making 1 call to XSLoader::load
65
6615µs11µs$DEFAULT_FLAGS = GLOB_CSH();
# spent 1µs making 1 call to File::Glob::GLOB_CSH
6717µs13µsif ($^O =~ /^(?:MSWin32|VMS|os2|riscos)$/) {
# spent 3µs making 1 call to File::Glob::CORE:match
68 $DEFAULT_FLAGS |= GLOB_NOCASE();
69}
70
71114µs1;
72__END__
 
# spent 3µs within File::Glob::CORE:match which was called: # once (3µs+0s) by File::GlobMapper::BEGIN@10 at line 67
sub File::Glob::CORE:match; # opcode
# spent 1µs within File::Glob::GLOB_CSH which was called 2 times, avg 500ns/call: # once (1µs+0s) by File::GlobMapper::BEGIN@10 at line 66 # once (0s+0s) by File::GlobMapper::BEGIN@10 at line 20 of File/GlobMapper.pm
sub File::Glob::GLOB_CSH; # xsub