diff mbox series

fix SLP subgraph detection wrt fully shared lanes

Message ID nycvar.YFH.7.76.2010121431100.10986@elmra.sevgm.obk
State New
Headers show
Series fix SLP subgraph detection wrt fully shared lanes | expand

Commit Message

Richard Biener Oct. 12, 2020, 12:31 p.m. UTC
When a VEC_PERM SLP node just permutes existing lanes this confuses
the SLP subgraph detection where I tried to elide a node-based
visited hash-map in a way that doesn't work.  Fixed by adding such.

Bootstrapped and tested on x86_64-unknown-linux-gnu, pushed.

2020-10-12  Richard Biener  <rguenther@suse.de>

	* tree-vect-slp.c (vect_bb_partition_graph_r): Use visited
	hash-map.
	(vect_bb_partition_graph): Likewise.
---
 gcc/tree-vect-slp.c | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)
diff mbox series

Patch

diff --git a/gcc/tree-vect-slp.c b/gcc/tree-vect-slp.c
index dd2042a4db5..8acef6f3cef 100644
--- a/gcc/tree-vect-slp.c
+++ b/gcc/tree-vect-slp.c
@@ -3254,18 +3254,19 @@  static void
 vect_bb_partition_graph_r (bb_vec_info bb_vinfo,
 			   slp_instance instance, slp_tree node,
 			   hash_map<stmt_vec_info, slp_instance> &stmt_to_instance,
-			   hash_map<slp_instance, slp_instance> &instance_leader)
+			   hash_map<slp_instance, slp_instance> &instance_leader,
+			   hash_set<slp_tree> &visited)
 {
   stmt_vec_info stmt_info;
   unsigned i;
-  bool all = true;
+
   FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), i, stmt_info)
     {
       bool existed_p;
       slp_instance &stmt_instance
 	= stmt_to_instance.get_or_insert (stmt_info, &existed_p);
       if (!existed_p)
-	all = false;
+	;
       else if (stmt_instance != instance)
 	{
 	  /* If we're running into a previously marked stmt make us the
@@ -3279,15 +3280,15 @@  vect_bb_partition_graph_r (bb_vec_info bb_vinfo,
 	}
       stmt_instance = instance;
     }
-  /* If not all stmts had been visited we have to recurse on children.  */
-  if (all)
+
+  if (visited.add (node))
     return;
 
   slp_tree child;
   FOR_EACH_VEC_ELT (SLP_TREE_CHILDREN (node), i, child)
     if (SLP_TREE_DEF_TYPE (child) == vect_internal_def)
       vect_bb_partition_graph_r (bb_vinfo, instance, child, stmt_to_instance,
-				 instance_leader);
+				 instance_leader, visited);
 }
 
 /* Partition the SLP graph into pieces that can be costed independently.  */
@@ -3302,13 +3303,15 @@  vect_bb_partition_graph (bb_vec_info bb_vinfo)
      marked stmt, make the stmts leader the current SLP graph entry.  */
   hash_map<stmt_vec_info, slp_instance> stmt_to_instance;
   hash_map<slp_instance, slp_instance> instance_leader;
+  hash_set<slp_tree> visited;
   slp_instance instance;
   for (unsigned i = 0; bb_vinfo->slp_instances.iterate (i, &instance); ++i)
     {
       instance_leader.put (instance, instance);
       vect_bb_partition_graph_r (bb_vinfo,
 				 instance, SLP_INSTANCE_TREE (instance),
-				 stmt_to_instance, instance_leader);
+				 stmt_to_instance, instance_leader,
+				 visited);
     }
 
   /* Then collect entries to each independent subgraph.  */