[project @ 2000-02-24 17:45:53 by simonmar]
authorsimonmar <unknown>
Thu, 24 Feb 2000 17:45:53 +0000 (17:45 +0000)
committersimonmar <unknown>
Thu, 24 Feb 2000 17:45:53 +0000 (17:45 +0000)
update for format changes in cacheprof.out.summary.

glafp-utils/runstdtest/runstdtest.prl

index 55a8281..9aa7ac9 100644 (file)
@@ -436,8 +436,13 @@ sub process_stats_file {
 sub process_cacheprof_files {
 
     open(STATS, "< $CacheProfStats") || die("Can't open $CacheProfStats\n");
+
+    # the format of the info in this file is:
+    #    OTHER(intrs,reads,writes,read-misses,write-misses)
+    # where read-misses and write-misses will both be zero if we're
+    # just counting instructions.
     while (<STATS>) {
-       /OTHER\(\s*([0-9]+),\s*([0-9]+),\s*([0-9]+)\)/ && do {
+       /OTHER\(\s*([0-9]+),\s*([0-9]+),\s*([0-9]+),\s*([0-9]+),\s*([0-9]+)\)/ && do {
           $TotInstrs = $1;
           $TotReads  = $2;
           $TotWrites = $3;