← 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:10 2023

Filename/usr/lib/x86_64-linux-gnu/perl-base/lib.pm
StatementsExecuted 47 statements in 366µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs44µslib::::importlib::import
84110µs10µslib::::CORE:ftdirlib::CORE:ftdir (opcode)
11110µs16µslib::::BEGIN@6lib::BEGIN@6
2114µs4µslib::::CORE:ftislib::CORE:ftis (opcode)
1114µs6µslib::::BEGIN@8lib::BEGIN@8
2114µs4µslib::::_get_dirslib::_get_dirs
211500ns500nslib::::CORE:matchlib::CORE:match (opcode)
0000s0slib::::unimportlib::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package lib;
2
3# THIS FILE IS AUTOMATICALLY GENERATED FROM lib_pm.PL.
4# ANY CHANGES TO THIS FILE WILL BE OVERWRITTEN BY THE NEXT PERL BUILD.
5
6217µs223µs
# spent 16µs (10+7) within lib::BEGIN@6 which was called: # once (10µs+7µs) by main::BEGIN@35 at line 6
use Config;
# spent 16µs making 1 call to lib::BEGIN@6 # spent 7µs making 1 call to Config::import
7
82290µs28µs
# spent 6µs (4+2) within lib::BEGIN@8 which was called: # once (4µs+2µs) by main::BEGIN@35 at line 8
use strict;
# spent 6µs making 1 call to lib::BEGIN@8 # spent 2µs making 1 call to strict::import
9
1014µs13µsmy $archname = $Config{archname};
# spent 3µs making 1 call to Config::FETCH
1111µs1900nsmy $version = $Config{version};
# spent 900ns making 1 call to Config::FETCH
1212µs1700nsmy @inc_version_list = reverse split / /, $Config{inc_version_list};
# spent 700ns making 1 call to Config::FETCH
13
1411µsour @ORIG_INC = @INC; # take a handy copy of 'original' value
151200nsour $VERSION = '0.65';
16
17
# spent 44µs (26+18) within lib::import which was called: # once (26µs+18µs) by main::BEGIN@35 at line 36 of /home/hejohns/documentsNoSync/22f/490/gradescope-utils/bin/split.pl
sub import {
181100ns shift;
19
201100ns my %names;
211300ns foreach (reverse @_) {
222300ns my $path = $_; # we'll be modifying it, so break the alias
232200ns if ($path eq '') {
24 require Carp;
25 Carp::carp("Empty compile time value given to use lib");
26 }
27
28211µs65µs if ($path !~ /\.par$/i && -e $path && ! -d _) {
# spent 4µs making 2 calls to lib::CORE:ftis, avg 2µs/call # spent 500ns making 2 calls to lib::CORE:match, avg 250ns/call # spent 200ns making 2 calls to lib::CORE:ftdir, avg 100ns/call
29 require Carp;
30 Carp::carp("Parameter to use lib must be directory, not file");
31 }
3221µs unshift(@INC, $path);
33 # Add any previous version directories we found at configure time
342500ns foreach my $incver (@inc_version_list)
35 {
36 my $dir = "$path/$incver";
37 unshift(@INC, $dir) if -d $dir;
38 }
39 # Put a corresponding archlib directory in front of $path if it
40 # looks like $path has an archlib directory below it.
4122µs24µs my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir)
# spent 4µs making 2 calls to lib::_get_dirs, avg 2µs/call
42 = _get_dirs($path);
4325µs24µs unshift(@INC, $arch_dir) if -d $arch_auto_dir;
# spent 4µs making 2 calls to lib::CORE:ftdir, avg 2µs/call
4425µs23µs unshift(@INC, $version_dir) if -d $version_dir;
# spent 3µs making 2 calls to lib::CORE:ftdir, avg 2µs/call
4525µs23µs unshift(@INC, $version_arch_dir) if -d $version_arch_dir;
# spent 3µs making 2 calls to lib::CORE:ftdir, avg 1µs/call
46 }
47
48 # remove trailing duplicates
4917µs @INC = grep { ++$names{$_} == 1 } @INC;
5012µs return;
51}
52
53sub unimport {
54 shift;
55
56 my %names;
57 foreach my $path (@_) {
58 my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir)
59 = _get_dirs($path);
60 ++$names{$path};
61 ++$names{$arch_dir} if -d $arch_auto_dir;
62 ++$names{$version_dir} if -d $version_dir;
63 ++$names{$version_arch_dir} if -d $version_arch_dir;
64 }
65
66 # Remove ALL instances of each named directory.
67 @INC = grep { !exists $names{$_} } @INC;
68 return;
69}
70
71
# spent 4µs within lib::_get_dirs which was called 2 times, avg 2µs/call: # 2 times (4µs+0s) by lib::import at line 41, avg 2µs/call
sub _get_dirs {
722300ns my($dir) = @_;
732200ns my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir);
74
752600ns $arch_auto_dir = "$dir/$archname/auto";
762500ns $arch_dir = "$dir/$archname";
772400ns $version_dir = "$dir/$version";
782400ns $version_arch_dir = "$dir/$version/$archname";
79
8023µs return($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir);
81}
82
8315µs1;
84__END__
 
# spent 10µs within lib::CORE:ftdir which was called 8 times, avg 1µs/call: # 2 times (4µs+0s) by lib::import at line 43, avg 2µs/call # 2 times (3µs+0s) by lib::import at line 44, avg 2µs/call # 2 times (3µs+0s) by lib::import at line 45, avg 1µs/call # 2 times (200ns+0s) by lib::import at line 28, avg 100ns/call
sub lib::CORE:ftdir; # opcode
# spent 4µs within lib::CORE:ftis which was called 2 times, avg 2µs/call: # 2 times (4µs+0s) by lib::import at line 28, avg 2µs/call
sub lib::CORE:ftis; # opcode
# spent 500ns within lib::CORE:match which was called 2 times, avg 250ns/call: # 2 times (500ns+0s) by lib::import at line 28, avg 250ns/call
sub lib::CORE:match; # opcode