Change PRED_LOOP_EXIT from 92 to 85.
authorMartin Liska <mliska@suse.cz>
Fri, 17 Jun 2016 14:28:57 +0000 (16:28 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Fri, 17 Jun 2016 14:28:57 +0000 (14:28 +0000)
* analyze_brprob.py: Fix columns of script output.
* predict.def: PRED_LOOP_EXIT from 92 to 85.
* gcc.dg/predict-9.c: Fix dump scanning.

From-SVN: r237556

contrib/ChangeLog
contrib/analyze_brprob.py
gcc/ChangeLog
gcc/predict.def
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/predict-9.c

index c974b75e3587026315707b92df644c5cd3f80e16..1a0badc69ff537792dd95ef6d1f459f95d6e9529 100644 (file)
@@ -1,3 +1,7 @@
+2016-06-17  Martin Liska  <mliska@suse.cz>
+
+       * analyze_brprob.py: Fix columns of script output.
+
 2016-06-13  Richard Biener  <rguenther@suse.de>
 
        * download_prerequisites (ISL): Bump version to 0.16.1
index 9808c46de16c4c9f87a0adb50f56f17f7ff4933e..2526623ff55075624c6accbf4c944a018f491be8 100755 (executable)
@@ -119,10 +119,10 @@ class Profile:
         elif sorting == 'coverage':
             sorter = lambda x: x[1].count
 
-        print('%-36s %8s %6s  %-16s %14s %8s %6s' % ('HEURISTICS', 'BRANCHES', '(REL)',
+        print('%-40s %8s %6s  %-16s %14s %8s %6s' % ('HEURISTICS', 'BRANCHES', '(REL)',
               'HITRATE', 'COVERAGE', 'COVERAGE', '(REL)'))
         for (k, v) in sorted(self.heuristics.items(), key = sorter):
-            print('%-36s %8i %5.1f%% %6.2f%% / %6.2f%% %14i %8s %5.1f%%' %
+            print('%-40s %8i %5.1f%% %6.2f%% / %6.2f%% %14i %8s %5.1f%%' %
             (k, v.branches, percentage(v.branches, self.branches_max ()),
              percentage(v.hits, v.count), percentage(v.fits, v.count),
              v.count, v.count_formatted(), percentage(v.count, self.count_max()) ))
index 0f4846c2c4de7c75789909fcbc83b6e391f11cae..a93464d33a75a54694b9a3f6b5df344d766fddb6 100644 (file)
@@ -1,3 +1,7 @@
+2016-06-17  Martin Liska  <mliska@suse.cz>
+
+       * predict.def: PRED_LOOP_EXIT from 92 to 85.
+
 2016-06-17  James Greenhalgh  <james.greenhalgh@arm.com>
 
        * config/arm/arm_neon.h (vadd_f32): replace __FAST_MATH with
index a0d0ba923a23b5339d8d4e3542dd65ac7483b185..d3bc757bb97a8f0971cc6fa830e3b2bd8570abb2 100644 (file)
@@ -89,7 +89,7 @@ DEF_PREDICTOR (PRED_COLD_FUNCTION, "cold function call", PROB_VERY_LIKELY,
               PRED_FLAG_FIRST_MATCH)
 
 /* Edge causing loop to terminate is probably not taken.  */
-DEF_PREDICTOR (PRED_LOOP_EXIT, "loop exit", HITRATE (92),
+DEF_PREDICTOR (PRED_LOOP_EXIT, "loop exit", HITRATE (85),
               PRED_FLAG_FIRST_MATCH)
 
 /* Edge causing loop to terminate by computing value used by later
index 0071cee22b21b5354f88d5dfa2946a30093f03ba..b3fa6a27902959b47c5793b6e3b68987b092032e 100644 (file)
@@ -1,3 +1,7 @@
+2016-06-17  Martin Liska  <mliska@suse.cz>
+
+       * gcc.dg/predict-9.c: Fix dump scanning.
+
 2016-06-17  Bin Cheng  <bin.cheng@arm.com>
 
        PR tree-optimization/71354
index a613961091d2e82d4831e7788f90aa24cd484558..196e31c60ee66e06b36aa8842736e177c80d6ac7 100644 (file)
@@ -19,5 +19,5 @@ void foo (int base)
   }
 }
 
-/* { dg-final { scan-tree-dump-times "first match heuristics: 2.0%" 3 "profile_estimate"} } */
-/* { dg-final { scan-tree-dump-times "first match heuristics: 4.0%" 1 "profile_estimate"} } */
+/* { dg-final { scan-tree-dump-times "first match heuristics: 3.0%" 3 "profile_estimate"} } */
+/* { dg-final { scan-tree-dump-times "first match heuristics: 7.5%" 1 "profile_estimate"} } */