diff mbox series

More frequency removal

Message ID 20171114092438.GA66392@kam.mff.cuni.cz
State New
Headers show
Series More frequency removal | expand

Commit Message

Jan Hubicka Nov. 14, 2017, 9:24 a.m. UTC
Hi,
this patch updates tracer, reg-stack and shrink wrap.

Bootstrapped/regtested x86_64-linux, comitted.

Honza

	* tracer.c (better_p): Do not compare frequencies.
	* reg-stack.c (better_edge): Likewise.
	* shrink-wrap.c (try_shrink_wrapping): Do not convert to gcov counts
	and back.
diff mbox series

Patch

Index: tracer.c
===================================================================
--- tracer.c	(revision 254719)
+++ tracer.c	(working copy)
@@ -135,8 +135,6 @@  better_p (const_edge e1, const_edge e2)
   if (e1->count ().initialized_p () && e2->count ().initialized_p ()
       && ((e1->count () > e2->count ()) || (e1->count () < e2->count  ())))
     return e1->count () > e2->count ();
-  if (EDGE_FREQUENCY (e1) != EDGE_FREQUENCY (e2))
-    return EDGE_FREQUENCY (e1) > EDGE_FREQUENCY (e2);
   /* This is needed to avoid changes in the decision after
      CFG is modified.  */
   if (e1->src != e2->src)
Index: reg-stack.c
===================================================================
--- reg-stack.c	(revision 254719)
+++ reg-stack.c	(working copy)
@@ -2954,11 +2954,6 @@  better_edge (edge e1, edge e2)
   if (!e1)
     return e2;
 
-  if (EDGE_FREQUENCY (e1) > EDGE_FREQUENCY (e2))
-    return e1;
-  if (EDGE_FREQUENCY (e1) < EDGE_FREQUENCY (e2))
-    return e2;
-
   if (e1->count () > e2->count ())
     return e1;
   if (e1->count () < e2->count ())
Index: shrink-wrap.c
===================================================================
--- shrink-wrap.c	(revision 254719)
+++ shrink-wrap.c	(working copy)
@@ -880,19 +880,18 @@  try_shrink_wrapping (edge *entry_edge, r
      the correct answer for reducible flow graphs; for irreducible flow graphs
      our profile is messed up beyond repair anyway.  */
 
-  gcov_type num = 0;
-  gcov_type den = 0;
+  profile_count num = profile_count::zero ();
+  profile_count den = profile_count::zero ();
 
   FOR_EACH_EDGE (e, ei, pro->preds)
     if (!dominated_by_p (CDI_DOMINATORS, e->src, pro))
       {
-	num += EDGE_FREQUENCY (e);
-	den += e->src->count.to_frequency (cfun);
+	if (e->count ().initialized_p ())
+	  num += e->count ();
+	if (e->src->count.initialized_p ())
+	  den += e->src->count;
       }
 
-  if (den == 0)
-    den = 1;
-
   /* All is okay, so do it.  */
 
   crtl->shrink_wrapped = true;
@@ -919,8 +918,9 @@  try_shrink_wrapping (edge *entry_edge, r
 
 	if (dump_file)
 	  fprintf (dump_file, "Duplicated %d to %d\n", bb->index, dup->index);
-
-	bb->count = bb->count.apply_scale (num, den);
+	
+	if (num == profile_count::zero () || den.nonzero_p ())
+	  bb->count = bb->count.apply_scale (num, den);
 	dup->count -= bb->count;
       }