diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2008-11-05 04:45:49 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@gcc.gnu.org> | 2008-11-05 04:45:49 +0000 |
commit | 58af97fcf8115014a1de4b6030a733d707a00d74 (patch) | |
tree | 5a3fc4de29e2b86ff5b3c31640600fcd104f3f96 /gcc/graphite.c | |
parent | a28a65ec257285afa3bdad02e7d769abd27ebacb (diff) | |
download | gcc-58af97fcf8115014a1de4b6030a733d707a00d74.zip gcc-58af97fcf8115014a1de4b6030a733d707a00d74.tar.gz gcc-58af97fcf8115014a1de4b6030a733d707a00d74.tar.bz2 |
re PR middle-end/37943 ([graphite] ICE : in build_graphite_scops, at graphite.c:1823)
2008-11-05 Tobias Grosser <grosser@fim.uni-passau.de>
PR middle-end/37943
* graphite.c (scopdet_basic_block_info): Fix loops with multiple
exits and conditions.
* testsuite/gcc.dg/graphite/pr37943.c: New.
From-SVN: r141598
Diffstat (limited to 'gcc/graphite.c')
-rw-r--r-- | gcc/graphite.c | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/gcc/graphite.c b/gcc/graphite.c index 90d8230..7df3028 100644 --- a/gcc/graphite.c +++ b/gcc/graphite.c @@ -1326,11 +1326,29 @@ scopdet_basic_block_info (basic_block bb, VEC (sd_region, heap) **scops, int i; build_scops_1 (bb, &tmp_scops, loop); - /* XXX: Use 'e->src' ot better 'bb'? */ + + /* Start at all bbs dominated by a loop exit that only exists in this + loop. */ for (i = 0; VEC_iterate (edge, exits, i, e); i++) - if (dominated_by_p (CDI_DOMINATORS, e->dest, e->src) - && e->src->loop_father == loop) - build_scops_1 (e->dest, &tmp_scops, e->dest->loop_father); + if (e->src->loop_father == loop) + { + VEC (basic_block, heap) *dominated; + basic_block b; + int j; + dominated = get_dominated_by (CDI_DOMINATORS, e->src); + for (j = 0; VEC_iterate (basic_block, dominated, j, b); j++) + /* Loop exit. */ + if (loop_depth (find_common_loop (loop, b->loop_father)) + < loop_depth (loop)) + { + /* Pass loop_outer to recognize b as loop header in + build_scops_1. */ + if (b->loop_father->header == b) + build_scops_1 (b, &tmp_scops, loop_outer (b->loop_father)); + else + build_scops_1 (b, &tmp_scops, b->loop_father); + } + } result.next = NULL; result.last = NULL; @@ -1440,7 +1458,8 @@ scopdet_basic_block_info (basic_block bb, VEC (sd_region, heap) **scops, for (i = 0; VEC_iterate (basic_block, dominated, i, dom_bb); i++) { /* Ignore loop exits: they will be handled after the loop body. */ - if (is_loop_exit (loop, dom_bb)) + if (loop_depth (find_common_loop (loop, dom_bb->loop_father)) + < loop_depth (loop)) { result.exits = true; continue; @@ -1790,7 +1809,6 @@ create_sese_edges (VEC (sd_region, heap) *regions) int i; sd_region *s; - for (i = 0; VEC_iterate (sd_region, regions, i, s); i++) create_single_entry_edge (s); |