Home | History | Annotate | Download | only in gcc

Lines Matching defs:sunk

3609    SUNK, if not NULL, is an array of sequences indexed by basic-block
3616 gimple_seq *sunk = NULL, bool *found_opportunity = NULL)
3651 if (!any_clobbers && (!sunk || gimple_seq_empty_p (sunk[bb->index])))
3680 if (sunk && !(succbb->flags & BB_VISITED))
3681 dgsi = gsi_start (sunk[succbb->index]);
3718 if (sunk && !gimple_seq_empty_p (sunk[bb->index]))
3721 first_sunk = gsi_stmt (gsi_last (sunk[bb->index]));
3722 last_sunk = gsi_stmt (gsi_start (sunk[bb->index]));
3724 sunk[bb->index], GSI_NEW_STMT);
3725 sunk[bb->index] = NULL;
3729 /* Adjust virtual operands if we sunk across a virtual PHI. */
3983 gimple_seq *sunk = XCNEWVEC (gimple_seq, last_basic_block_for_fn (fun));
3991 flags |= sink_clobbers (bb, sunk);
3992 /* If there were any clobbers sunk into this BB, insert them now. */
3993 if (!gimple_seq_empty_p (sunk[bb->index]))
3996 gsi_insert_seq_before (&gsi, sunk[bb->index], GSI_NEW_STMT);
3997 sunk[bb->index] = NULL;
4002 free (sunk);