Lines Matching refs:new_seq

464   gimple_seq new_seq;  in replace_goto_queue_cond_clause()  local
469 new_seq = find_goto_replacement (tf, temp); in replace_goto_queue_cond_clause()
470 if (!new_seq) in replace_goto_queue_cond_clause()
473 if (gimple_seq_singleton_p (new_seq) in replace_goto_queue_cond_clause()
474 && gimple_code (gimple_seq_first_stmt (new_seq)) == GIMPLE_GOTO) in replace_goto_queue_cond_clause()
476 *tp = gimple_goto_dest (gimple_seq_first_stmt (new_seq)); in replace_goto_queue_cond_clause()
485 gsi_insert_seq_after (gsi, gimple_seq_copy (new_seq), GSI_CONTINUE_LINKING); in replace_goto_queue_cond_clause()
900 gimple_seq new_seq; in lower_try_finally_dup_block() local
903 new_seq = copy_gimple_seq_and_replace_locals (seq); in lower_try_finally_dup_block()
905 for (gsi = gsi_start (new_seq); !gsi_end_p (gsi); gsi_next (&gsi)) in lower_try_finally_dup_block()
923 collect_finally_tree_1 (new_seq, region); in lower_try_finally_dup_block()
925 return new_seq; in lower_try_finally_dup_block()
1774 gimple_seq new_seq, cleanup; in lower_catch() local
1792 new_seq = NULL; in lower_catch()
1794 gimple_seq_add_stmt (&new_seq, eh_dispatch); in lower_catch()
1795 emit_resx (&new_seq, try_region); in lower_catch()
1827 gimple_seq_add_stmt (&new_seq, x); in lower_catch()
1829 gimple_seq_add_seq (&new_seq, handler); in lower_catch()
1831 if (gimple_seq_may_fallthru (new_seq)) in lower_catch()
1837 gimple_seq_add_stmt (&new_seq, x); in lower_catch()
1847 gimple_try_set_cleanup (tp, new_seq); in lower_catch()
1866 gimple_seq new_seq; in lower_eh_filter() local
1886 new_seq = NULL; in lower_eh_filter()
1889 gimple_seq_add_stmt (&new_seq, x); in lower_eh_filter()
1890 emit_resx (&new_seq, this_region); in lower_eh_filter()
1894 gimple_seq_add_stmt (&new_seq, x); in lower_eh_filter()
1897 gimple_seq_add_seq (&new_seq, gimple_eh_filter_failure (inner)); in lower_eh_filter()
1899 gimple_try_set_cleanup (tp, new_seq); in lower_eh_filter()