← Index
NYTProf Performance Profile   « line view »
For split.pl
  Run on Thu Apr 20 02:05:47 2023
Reported on Thu Apr 20 18:31:09 2023

Filename/usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm
StatementsExecuted 15 statements in 413µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1118µs10µsFile::Glob::::BEGIN@3File::Glob::BEGIN@3
1114µs13µsFile::Glob::::BEGIN@50File::Glob::BEGIN@50
1114µs6µsFile::Glob::::BEGIN@54File::Glob::BEGIN@54
1112µs2µsFile::Glob::::CORE:matchFile::Glob::CORE:match (opcode)
111400ns400nsFile::Glob::::GLOB_CSHFile::Glob::GLOB_CSH (xsub)
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
32119µs212µs
# spent 10µs (8+2) within File::Glob::BEGIN@3 which was called: # once (8µs+2µs) by IO::Prompter::BEGIN@334 at line 3
use strict;
# spent 10µs making 1 call to File::Glob::BEGIN@3 # spent 2µs making 1 call to strict::import
4our($DEFAULT_FLAGS);
5
61300nsrequire 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
1112µ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);
3211µs$EXPORT_TAGS{bsd_glob} = [@{$EXPORT_TAGS{glob}}];
33
3412µsour @EXPORT_OK = (@{$EXPORT_TAGS{'glob'}}, 'csh_glob');
35
361200nsour $VERSION = '1.37';
37
38sub import {
39 require Exporter;
40 local $Exporter::ExportLevel = $Exporter::ExportLevel + 1;
41 Exporter::import(grep {
42 my $passthrough;
43 if ($_ eq ':case') {
44 $DEFAULT_FLAGS &= ~GLOB_NOCASE()
45 }
46 elsif ($_ eq ':nocase') {
47 $DEFAULT_FLAGS |= GLOB_NOCASE();
48 }
49 elsif ($_ eq ':globally') {
50233µs222µs
# spent 13µs (4+9) within File::Glob::BEGIN@50 which was called: # once (4µs+9µs) by IO::Prompter::BEGIN@334 at line 50
no warnings 'redefine';
# spent 13µs making 1 call to File::Glob::BEGIN@50 # spent 9µs making 1 call to warnings::unimport
51 *CORE::GLOBAL::glob = \&File::Glob::csh_glob;
52 }
53 elsif ($_ eq ':bsd_glob') {
542109µs27µs
# spent 6µs (4+2) within File::Glob::BEGIN@54 which was called: # once (4µs+2µs) by IO::Prompter::BEGIN@334 at line 54
no strict; *{caller."::glob"} = \&bsd_glob_override;
# spent 6µs making 1 call to File::Glob::BEGIN@54 # spent 2µs making 1 call to strict::unimport
55 $passthrough = 1;
56 }
57 else {
58 $passthrough = 1;
59 }
60 $passthrough;
61 } @_);
62}
63
641132µs1127µsXSLoader::load();
# spent 127µs making 1 call to XSLoader::load
65
6613µs1400ns$DEFAULT_FLAGS = GLOB_CSH();
# spent 400ns making 1 call to File::Glob::GLOB_CSH
6714µs12µsif ($^O =~ /^(?:MSWin32|VMS|os2|riscos)$/) {
# spent 2µs making 1 call to File::Glob::CORE:match
68 $DEFAULT_FLAGS |= GLOB_NOCASE();
69}
70
7119µs1;
72__END__
 
# spent 2µs within File::Glob::CORE:match which was called: # once (2µs+0s) by IO::Prompter::BEGIN@334 at line 67
sub File::Glob::CORE:match; # opcode
# spent 400ns within File::Glob::GLOB_CSH which was called: # once (400ns+0s) by IO::Prompter::BEGIN@334 at line 66
sub File::Glob::GLOB_CSH; # xsub