graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl): Restore valid IL after...
authorRichard Biener <rguenther@suse.de>
Thu, 21 Sep 2017 12:02:58 +0000 (12:02 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 21 Sep 2017 12:02:58 +0000 (12:02 +0000)
2017-09-21  Richard Biener  <rguenther@suse.de>

* graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl):
Restore valid IL after code generation errors.
* graphite.c (graphite_transform_loops): Diagnose code
generation issues as MSG_MISSED_OPTIMIZATION and continue
with processing SCOPs.

From-SVN: r253060

gcc/ChangeLog
gcc/graphite-isl-ast-to-gimple.c
gcc/graphite.c

index 8a534f65f8b45633c0167a54d6fdf42966736ab2..08d5620879544c378ffa79a3d182a776d566d46f 100644 (file)
@@ -1,3 +1,11 @@
+2017-09-21  Richard Biener  <rguenther@suse.de>
+
+       * graphite-isl-ast-to-gimple.c (graphite_regenerate_ast_isl):
+       Restore valid IL after code generation errors.
+       * graphite.c (graphite_transform_loops): Diagnose code
+       generation issues as MSG_MISSED_OPTIMIZATION and continue
+       with processing SCOPs.
+
 2017-09-21  Richard Sandiford  <richard.sandiford@linaro.org>
            Alan Hayward  <alan.hayward@arm.com>
            David Sherwood  <david.sherwood@arm.com>
index ccf0c21286c9a3593275ecfa416038a0db06287e..87a1b066b31092b840107e72047f4cf01712c3eb 100644 (file)
@@ -2997,6 +2997,26 @@ graphite_regenerate_ast_isl (scop_p scop)
        }
     }
 
+  if (t.codegen_error_p ())
+    {
+      /* We registered new names, scrap that.  */
+      if (need_ssa_update_p (cfun))
+       delete_update_ssa ();
+      /* Remove the unreachable region.  */
+      remove_edge_and_dominated_blocks (if_region->true_region->region.entry);
+      basic_block ifb = if_region->false_region->region.entry->src;
+      gimple_stmt_iterator gsi = gsi_last_bb (ifb);
+      gsi_remove (&gsi, true);
+      if_region->false_region->region.entry->flags &= ~EDGE_FALSE_VALUE;
+      if_region->false_region->region.entry->flags |= EDGE_FALLTHRU;
+      /* remove_edge_and_dominated_blocks marks loops for removal but
+        doesn't actually remove them (fix that...).  */
+      loop_p loop;
+      FOR_EACH_LOOP (loop, LI_FROM_INNERMOST)
+       if (! loop->header)
+         delete_loop (loop);
+    }
+
   free (if_region->true_region);
   free (if_region->region);
   free (if_region);
index af336da5ad4489641dd507918688b757838f461f..d8777f0cabc83ca85d3d750119e793d7643a1a26 100644 (file)
@@ -337,17 +337,16 @@ graphite_transform_loops (void)
        if (!apply_poly_transforms (scop))
          continue;
 
+       location_t loc = find_loop_location
+         (scops[i]->scop_info->region.entry->dest->loop_father);
+
        need_cfg_cleanup_p = true;
-       /* When code generation is not successful, do not continue
-          generating code for the next scops: the IR has to be cleaned up
-          and could be in an inconsistent state.  */
        if (!graphite_regenerate_ast_isl (scop))
-         break;
-
-       location_t loc = find_loop_location
-                          (scop->scop_info->region.entry->dest->loop_father);
-       dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
-                        "loop nest optimized\n");
+         dump_printf_loc (MSG_MISSED_OPTIMIZATION, loc,
+                          "loop nest not optimized, code generation error\n");
+       else
+         dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
+                          "loop nest optimized\n");
       }
 
   free_scops (scops);