| Filename | /home/ss5/perl5/perlbrew/perls/tapper-perl/lib/5.16.3/x86_64-linux/Time/HiRes.pm |
| Statements | Executed 22 statements in 400µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 35µs | 35µs | Time::HiRes::bootstrap (xsub) |
| 2 | 2 | 1 | 15µs | 15µs | Time::HiRes::gettimeofday (xsub) |
| 1 | 1 | 1 | 14µs | 14µs | Time::HiRes::BEGIN@3 |
| 1 | 1 | 1 | 13µs | 22µs | Time::HiRes::BEGIN@43 |
| 1 | 1 | 1 | 12µs | 160µs | Time::HiRes::import |
| 1 | 1 | 1 | 8µs | 19µs | Time::HiRes::BEGIN@4 |
| 0 | 0 | 0 | 0s | 0s | Time::HiRes::AUTOLOAD |
| 0 | 0 | 0 | 0s | 0s | Time::HiRes::__ANON__[:44] |
| 0 | 0 | 0 | 0s | 0s | Time::HiRes::tv_interval |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package Time::HiRes; | ||||
| 2 | |||||
| 3 | 3 | 40µs | 1 | 14µs | # spent 14µs within Time::HiRes::BEGIN@3 which was called:
# once (14µs+0s) by Benchmark::Perl::Formance::BEGIN@14 at line 3 # spent 14µs making 1 call to Time::HiRes::BEGIN@3 |
| 4 | 2 | 133µs | 2 | 30µs | # spent 19µs (8+11) within Time::HiRes::BEGIN@4 which was called:
# once (8µs+11µs) by Benchmark::Perl::Formance::BEGIN@14 at line 4 # spent 19µs making 1 call to Time::HiRes::BEGIN@4
# spent 11µs making 1 call to strict::import |
| 5 | |||||
| 6 | 1 | 600ns | require Exporter; | ||
| 7 | 1 | 300ns | require DynaLoader; | ||
| 8 | |||||
| 9 | 1 | 6µs | our @ISA = qw(Exporter DynaLoader); | ||
| 10 | |||||
| 11 | 1 | 300ns | our @EXPORT = qw( ); | ||
| 12 | 1 | 4µs | our @EXPORT_OK = qw (usleep sleep ualarm alarm gettimeofday time tv_interval | ||
| 13 | getitimer setitimer nanosleep clock_gettime clock_getres | ||||
| 14 | clock clock_nanosleep | ||||
| 15 | CLOCK_HIGHRES CLOCK_MONOTONIC CLOCK_PROCESS_CPUTIME_ID | ||||
| 16 | CLOCK_REALTIME CLOCK_SOFTTIME CLOCK_THREAD_CPUTIME_ID | ||||
| 17 | CLOCK_TIMEOFDAY CLOCKS_PER_SEC | ||||
| 18 | ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF ITIMER_REALPROF | ||||
| 19 | TIMER_ABSTIME | ||||
| 20 | d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer | ||||
| 21 | d_nanosleep d_clock_gettime d_clock_getres | ||||
| 22 | d_clock d_clock_nanosleep | ||||
| 23 | stat | ||||
| 24 | ); | ||||
| 25 | |||||
| 26 | 1 | 200ns | our $VERSION = '1.9725'; | ||
| 27 | 1 | 200ns | our $XS_VERSION = $VERSION; | ||
| 28 | 1 | 11µs | $VERSION = eval $VERSION; # spent 2µs executing statements in string eval | ||
| 29 | |||||
| 30 | 1 | 100ns | our $AUTOLOAD; | ||
| 31 | sub AUTOLOAD { | ||||
| 32 | my $constname; | ||||
| 33 | ($constname = $AUTOLOAD) =~ s/.*:://; | ||||
| 34 | # print "AUTOLOAD: constname = $constname ($AUTOLOAD)\n"; | ||||
| 35 | die "&Time::HiRes::constant not defined" if $constname eq 'constant'; | ||||
| 36 | my ($error, $val) = constant($constname); | ||||
| 37 | # print "AUTOLOAD: error = $error, val = $val\n"; | ||||
| 38 | if ($error) { | ||||
| 39 | my (undef,$file,$line) = caller; | ||||
| 40 | die "$error at $file line $line.\n"; | ||||
| 41 | } | ||||
| 42 | { | ||||
| 43 | 2 | 184µs | 2 | 31µs | # spent 22µs (13+9) within Time::HiRes::BEGIN@43 which was called:
# once (13µs+9µs) by Benchmark::Perl::Formance::BEGIN@14 at line 43 # spent 22µs making 1 call to Time::HiRes::BEGIN@43
# spent 9µs making 1 call to strict::unimport |
| 44 | *$AUTOLOAD = sub { $val }; | ||||
| 45 | } | ||||
| 46 | goto &$AUTOLOAD; | ||||
| 47 | } | ||||
| 48 | |||||
| 49 | # spent 160µs (12+148) within Time::HiRes::import which was called:
# once (12µs+148µs) by Benchmark::Perl::Formance::BEGIN@14 at line 14 of lib/Benchmark/Perl/Formance.pm | ||||
| 50 | 1 | 400ns | my $this = shift; | ||
| 51 | 1 | 800ns | for my $i (@_) { | ||
| 52 | 1 | 2µs | if (($i eq 'clock_getres' && !&d_clock_getres) || | ||
| 53 | ($i eq 'clock_gettime' && !&d_clock_gettime) || | ||||
| 54 | ($i eq 'clock_nanosleep' && !&d_clock_nanosleep) || | ||||
| 55 | ($i eq 'clock' && !&d_clock) || | ||||
| 56 | ($i eq 'nanosleep' && !&d_nanosleep) || | ||||
| 57 | ($i eq 'usleep' && !&d_usleep) || | ||||
| 58 | ($i eq 'ualarm' && !&d_ualarm)) { | ||||
| 59 | require Carp; | ||||
| 60 | Carp::croak("Time::HiRes::$i(): unimplemented in this platform"); | ||||
| 61 | } | ||||
| 62 | } | ||||
| 63 | 1 | 6µs | 1 | 18µs | Time::HiRes->export_to_level(1, $this, @_); # spent 18µs making 1 call to Exporter::export_to_level |
| 64 | } | ||||
| 65 | |||||
| 66 | 1 | 5µs | 1 | 174µs | bootstrap Time::HiRes; # spent 174µs making 1 call to DynaLoader::bootstrap |
| 67 | |||||
| 68 | # Preloaded methods go here. | ||||
| 69 | |||||
| 70 | sub tv_interval { | ||||
| 71 | # probably could have been done in C | ||||
| 72 | my ($a, $b) = @_; | ||||
| 73 | $b = [gettimeofday()] unless defined($b); | ||||
| 74 | (${$b}[0] - ${$a}[0]) + ((${$b}[1] - ${$a}[1]) / 1_000_000); | ||||
| 75 | } | ||||
| 76 | |||||
| 77 | # Autoload methods go after =cut, and are processed by the autosplit program. | ||||
| 78 | |||||
| 79 | 1 | 7µs | 1; | ||
| 80 | __END__ | ||||
# spent 35µs within Time::HiRes::bootstrap which was called:
# once (35µs+0s) by DynaLoader::bootstrap at line 213 of DynaLoader.pm | |||||
# spent 15µs within Time::HiRes::gettimeofday which was called 2 times, avg 8µs/call:
# once (12µs+0s) by Benchmark::Perl::Formance::run at line 613 of lib/Benchmark/Perl/Formance.pm
# once (3µs+0s) by Benchmark::Perl::Formance::run at line 626 of lib/Benchmark/Perl/Formance.pm |