X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=utils%2Frunstdtest%2Frunstdtest.prl;h=385a9fb907a10200c83ad7650f758183def2932c;hb=09d76f81a7b77139901a73f9f241d26a5bdd3796;hp=379c89564a3b8eb9a8cba207c43e11f13b432b14;hpb=03d716b3191301dad808d6ad861bc7343fc409d4;p=ghc-hetmet.git diff --git a/utils/runstdtest/runstdtest.prl b/utils/runstdtest/runstdtest.prl index 379c895..385a9fb 100644 --- a/utils/runstdtest/runstdtest.prl +++ b/utils/runstdtest/runstdtest.prl @@ -96,7 +96,7 @@ arg: while ($_ = $ARGV[0]) { /^-accept-output$/ && do { $SaveStdout = 1; $SaveStderr = 1; next arg; }; /^-stdout-binary/ && do { $StdoutBinary=1; next arg; }; - /^-stdout-binary/ && do { $StderrBinary=1; next arg; }; + /^-stderr-binary/ && do { $StderrBinary=1; next arg; }; /^-O(.*)/ && do { push(@PgmArgs, &grab_arg_arg('-O',$1)); next arg; }; /^-i(.*)/ && do { $PgmStdinFile = &grab_arg_arg('-i',$1); @@ -323,9 +323,9 @@ if ( $SysSpecificTiming eq '' ) { # print out what we found print STDERR "<<$SysSpecificTiming: "; if ( $Cachegrind ne 'yes') { - print STDERR "$BytesAlloc bytes, $GCs GCs, $AvgResidency/$MaxResidency avg/max bytes residency ($ResidencySamples samples), $GCWork bytes GC work, ${TotMem}M in use, $InitTime INIT ($InitElapsed elapsed), $MutTime MUT ($MutElapsed elapsed), $GcTime GC ($GcElapsed elapsed)$Counters"; + print STDERR "$BytesAlloc bytes, $GCs GCs, $AvgResidency/$MaxResidency avg/max bytes residency ($ResidencySamples samples), $GCWork bytes GC work, ${TotMem}M in use, $InitTime INIT ($InitElapsed elapsed), $MutTime MUT ($MutElapsed elapsed), $GcTime GC ($GcElapsed elapsed), $Gc0Time GC(0) ($Gc0Elapsed elapsed), $Gc1Time GC(1) ($Gc1Elapsed elapsed), $Balance balance$Counters"; } else { - print STDERR "$BytesAlloc bytes, $GCs GCs, $AvgResidency/$MaxResidency avg/max bytes residency ($ResidencySamples samples), $GCWork bytes GC work, ${TotMem}M in use, $InitTime INIT ($InitElapsed elapsed), $MutTime MUT ($MutElapsed elapsed), $GcTime GC ($GcElapsed elapsed), $TotInstrs instructions, $TotReads memory reads, $TotWrites memory writes, $TotMisses L2 cache misses"; + print STDERR "$BytesAlloc bytes, $GCs GCs, $AvgResidency/$MaxResidency avg/max bytes residency ($ResidencySamples samples), $GCWork bytes GC work, ${TotMem}M in use, $InitTime INIT ($InitElapsed elapsed), $MutTime MUT ($MutElapsed elapsed), $GcTime GC ($GcElapsed elapsed), $Gc0Time GC(0) ($Gc0Elapsed elapsed), $Gc1Time GC(1) ($Gc1Elapsed elapsed), $Balance balance, $TotInstrs instructions, $TotReads memory reads, $TotWrites memory writes, $TotMisses L2 cache misses"; }; print STDERR " :$SysSpecificTiming>>\n"; @@ -388,6 +388,8 @@ sub process_stats_file { local($count) = 0; $GCWork = 0; + $GCs = 0; + $Balance = 1; while () { if (! /Gen:\s+0/ && /^\s*\d+\s+\d+\s+(\d+)\s+\d+\.\d+/ ) { $max_live = $1 if $max_live < $1; @@ -407,9 +409,9 @@ sub process_stats_file { # $MaxResidency = $1; $ResidencySamples = $2; # } - $GCs = $1 if /^\s*([0-9,]+) collections? in generation 0/; + $GCs += $1 if /^\s*Generation\s*\d+:\s*([0-9,]+) collections/; - if ( /^\s+([0-9]+)\s+Mb total memory/ ) { + if ( /^\s+([0-9]+)\s+M[Bb] total memory/ ) { $TotMem = $1; } @@ -421,6 +423,19 @@ sub process_stats_file { $GcTime = $1; $GcElapsed = $2; } + if (/Generation (\d+):\s*\d+ collections,\s*\d+ parallel,\s*(-*\d+\.\d\d)s\s*,\s*(-*\d+\.\d\d)s elapsed/) { + if ($1 == 0) { + $Gc0Time = $2; $Gc0Elapsed = $3; + } elsif ($1 == 1) { + $Gc1Time = $2; $Gc1Elapsed = $3; + } + } + + if (/work balance: ([0-9.]+)/) { + $Balance = $1; + } + + if ( /CPU GC counters/ ) { # Counters that follow correspond to GC $into_gc_counters = 1; @@ -501,6 +516,11 @@ sub process_stats_file { print STDERR "Warning: GcElapsed not found in stats file\n" unless defined($GcElapsed); print STDERR "Warning: total memory not found in stats file\n" unless defined($TotMem); print STDERR "Warning: GC work not found in stats file\n" unless defined($GCWork); + print STDERR "Warning: Gc0Time not found in stats file\n" unless defined($Gc0Time); + print STDERR "Warning: Gc0Elapsed not found in stats file\n" unless defined($Gc0Elapsed); + print STDERR "Warning: Gc1Time not found in stats file\n" unless defined($Gc1Time); + print STDERR "Warning: Gc1Elapsed not found in stats file\n" unless defined($Gc1Elapsed); + print STDERR "Warning: Balance not found in stats file\n" unless defined($Gc1Elapsed); # things we didn't necessarily expect to find $MaxResidency = 0 unless defined($MaxResidency);