From: Aditya Kumar Date: Tue, 6 Oct 2015 15:56:09 +0000 (+0000) Subject: Early exit to avoid redundant computations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=216cc294ef714ffc4634e7ac6139550515acae3a;p=gcc.git Early exit to avoid redundant computations Analyze only those bbs which are outside the region for uses which might be defined inside the region. This is intended to improve the compile time. This algorithm may be further improved by only looking at the successors of region as these regions are sese. Added FIXMEs to make this improvement in future. Passes regtest and bootstrap on x86_64. gcc/ChangeLog: 2015-10-05 Aditya Kumar * graphite-sese-to-poly.c (build_loop_iteration_domains): Only loops which are in this region are passed so gcc_assert and remove redundant computation. * sese.c (sese_build_liveouts): Pass only those bbs which are not in region. (sese_bad_liveouts_use): Only BBs which are not in region are passed so gcc_assert on that and remove unnecessary computation. (sese_build_liveouts_use): Same. From-SVN: r228529 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 08efe78faab..002e7f79733 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +2015-10-05 Aditya Kumar + + * graphite-sese-to-poly.c (build_loop_iteration_domains): Only loops + which are in this region are passed so gcc_assert and remove redundant + computation. + * sese.c (sese_build_liveouts): Pass only those bbs which are not in region. + (sese_bad_liveouts_use): Only BBs which are not in region are passed so + gcc_assert on that and remove unnecessary computation. + (sese_build_liveouts_use): Same. + 2015-10-05 Aditya Kumar * graphite-dependences.c (scop_get_reads): Renamed scop->context diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c index 15d16c1a488..d0c7eb44bf2 100644 --- a/gcc/graphite-sese-to-poly.c +++ b/gcc/graphite-sese-to-poly.c @@ -595,6 +595,7 @@ build_loop_iteration_domains (scop_p scop, struct loop *loop, tree nb_iters = number_of_latch_executions (loop); sese region = SCOP_REGION (scop); + gcc_assert (loop_in_sese_p (loop, region)); isl_set *inner = isl_set_copy (outer); int pos = isl_set_dim (outer, isl_dim_set); @@ -679,7 +680,7 @@ build_loop_iteration_domains (scop_p scop, struct loop *loop, else gcc_unreachable (); - if (loop->inner && loop_in_sese_p (loop->inner, region)) + if (loop->inner) build_loop_iteration_domains (scop, loop->inner, nb + 1, isl_set_copy (inner), doms); diff --git a/gcc/sese.c b/gcc/sese.c index 2c654bcb24c..6f01ca6b5fb 100644 --- a/gcc/sese.c +++ b/gcc/sese.c @@ -134,20 +134,16 @@ static void sese_build_liveouts_use (sese region, bitmap liveouts, basic_block bb, tree use) { - unsigned ver; - basic_block def_bb; - + gcc_assert (!bb_in_sese_p (bb, region)); if (TREE_CODE (use) != SSA_NAME) return; - ver = SSA_NAME_VERSION (use); - def_bb = gimple_bb (SSA_NAME_DEF_STMT (use)); + basic_block def_bb = gimple_bb (SSA_NAME_DEF_STMT (use)); - if (!def_bb - || !bb_in_sese_p (def_bb, region) - || bb_in_sese_p (bb, region)) + if (!def_bb || !bb_in_sese_p (def_bb, region)) return; + unsigned ver = SSA_NAME_VERSION (use); bitmap_set_bit (liveouts, ver); } @@ -188,24 +184,21 @@ static bool sese_bad_liveouts_use (sese region, bitmap liveouts, basic_block bb, tree use) { - unsigned ver; - basic_block def_bb; + gcc_assert (!bb_in_sese_p (bb, region)); if (TREE_CODE (use) != SSA_NAME) return false; - ver = SSA_NAME_VERSION (use); + unsigned ver = SSA_NAME_VERSION (use); /* If it's in liveouts, the variable will get a new PHI node, and the debug use will be properly adjusted. */ if (bitmap_bit_p (liveouts, ver)) return false; - def_bb = gimple_bb (SSA_NAME_DEF_STMT (use)); + basic_block def_bb = gimple_bb (SSA_NAME_DEF_STMT (use)); - if (!def_bb - || !bb_in_sese_p (def_bb, region) - || bb_in_sese_p (bb, region)) + if (!def_bb || !bb_in_sese_p (def_bb, region)) return false; return true; @@ -247,11 +240,16 @@ sese_build_liveouts (sese region, bitmap liveouts) { basic_block bb; + /* FIXME: We could start iterating form the successor of sese. */ FOR_EACH_BB_FN (bb, cfun) - sese_build_liveouts_bb (region, liveouts, bb); + if (!bb_in_sese_p (bb, region)) + sese_build_liveouts_bb (region, liveouts, bb); + + /* FIXME: We could start iterating form the successor of sese. */ if (MAY_HAVE_DEBUG_STMTS) FOR_EACH_BB_FN (bb, cfun) - sese_reset_debug_liveouts_bb (region, liveouts, bb); + if (!bb_in_sese_p (bb, region)) + sese_reset_debug_liveouts_bb (region, liveouts, bb); } /* Builds a new SESE region from edges ENTRY and EXIT. */