diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-27 16:52:52 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-27 16:52:52 +0000 |
commit | 1034b7193916f1d6ca392b8ae239160da04955e0 (patch) | |
tree | 9bc3bb62dc819da99efdeb52080674f4fd642894 /gcc/sese.c | |
parent | 7a986272b68cb2a8dcb21beea3af546e0f72771c (diff) | |
download | gcc-1034b7193916f1d6ca392b8ae239160da04955e0.tar.gz |
Fix PR47691: do not abort compilation when code generation fails
2011-07-27 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/47691
* graphite-clast-to-gimple.c (translate_clast_user): Update use of
copy_bb_and_scalar_dependences.
* sese.c (rename_uses): Do not call gcc_assert. Set gloog_error.
(graphite_copy_stmts_from_block): Update call to rename_uses.
(copy_bb_and_scalar_dependences): Update call to
graphite_copy_stmts_from_block.
* sese.h (copy_bb_and_scalar_dependences): Update declaration.
* gfortran.dg/graphite/id-pr47691.f: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176836 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sese.c')
-rw-r--r-- | gcc/sese.c | 41 |
1 files changed, 30 insertions, 11 deletions
diff --git a/gcc/sese.c b/gcc/sese.c index a03cbc9a0bd..ec96dfba5cc 100644 --- a/gcc/sese.c +++ b/gcc/sese.c @@ -458,11 +458,13 @@ set_rename (htab_t rename_map, tree old_name, tree expr) substitution map RENAME_MAP, inserting the gimplification code at GSI_TGT, for the translation REGION, with the original copied statement in LOOP, and using the induction variable renaming map - IV_MAP. Returns true when something has been renamed. */ + IV_MAP. Returns true when something has been renamed. GLOOG_ERROR + is set when the code generation cannot continue. */ static bool rename_uses (gimple copy, htab_t rename_map, gimple_stmt_iterator *gsi_tgt, - sese region, loop_p loop, VEC (tree, heap) *iv_map) + sese region, loop_p loop, VEC (tree, heap) *iv_map, + bool *gloog_error) { use_operand_p use_p; ssa_op_iter op_iter; @@ -522,7 +524,11 @@ rename_uses (gimple copy, htab_t rename_map, gimple_stmt_iterator *gsi_tgt, scalar SSA_NAME used in the scop: all the other scalar SSA_NAMEs should have been translated out of SSA using arrays with one element. */ - gcc_assert (!chrec_contains_undetermined (scev)); + if (chrec_contains_undetermined (scev)) + { + *gloog_error = true; + return false; + } new_expr = chrec_apply_map (scev, iv_map); @@ -530,8 +536,12 @@ rename_uses (gimple copy, htab_t rename_map, gimple_stmt_iterator *gsi_tgt, the uses of the new induction variables. We should be able to use new_expr instead of the old_name in the newly generated loop nest. */ - gcc_assert (!chrec_contains_undetermined (new_expr) - && !tree_contains_chrecs (new_expr, NULL)); + if (chrec_contains_undetermined (new_expr) + || tree_contains_chrecs (new_expr, NULL)) + { + *gloog_error = true; + return false; + } /* Replace the old_name with the new_expr. */ new_expr = force_gimple_operand (unshare_expr (new_expr), &stmts, @@ -555,12 +565,14 @@ rename_uses (gimple copy, htab_t rename_map, gimple_stmt_iterator *gsi_tgt, } /* Duplicates the statements of basic block BB into basic block NEW_BB - and compute the new induction variables according to the IV_MAP. */ + and compute the new induction variables according to the IV_MAP. + GLOOG_ERROR is set when the code generation cannot continue. */ static void graphite_copy_stmts_from_block (basic_block bb, basic_block new_bb, htab_t rename_map, - VEC (tree, heap) *iv_map, sese region) + VEC (tree, heap) *iv_map, sese region, + bool *gloog_error) { gimple_stmt_iterator gsi, gsi_tgt; loop_p loop = bb->loop_father; @@ -605,27 +617,34 @@ graphite_copy_stmts_from_block (basic_block bb, basic_block new_bb, set_rename (rename_map, old_name, new_name); } - if (rename_uses (copy, rename_map, &gsi_tgt, region, loop, iv_map)) + if (rename_uses (copy, rename_map, &gsi_tgt, region, loop, iv_map, + gloog_error)) fold_stmt_inplace (copy); + if (*gloog_error) + break; + update_stmt (copy); } } /* Copies BB and includes in the copied BB all the statements that can be reached following the use-def chains from the memory accesses, - and returns the next edge following this new block. */ + and returns the next edge following this new block. GLOOG_ERROR is + set when the code generation cannot continue. */ edge copy_bb_and_scalar_dependences (basic_block bb, sese region, - edge next_e, VEC (tree, heap) *iv_map) + edge next_e, VEC (tree, heap) *iv_map, + bool *gloog_error) { basic_block new_bb = split_edge (next_e); htab_t rename_map = htab_create (10, rename_map_elt_info, eq_rename_map_elts, free); next_e = single_succ_edge (new_bb); - graphite_copy_stmts_from_block (bb, new_bb, rename_map, iv_map, region); + graphite_copy_stmts_from_block (bb, new_bb, rename_map, iv_map, region, + gloog_error); remove_phi_nodes (new_bb); htab_delete (rename_map); |