Home | History | Annotate | Download | only in gcc

Lines Matching defs:scc_exits

1109     scc_exit_vec_t scc_exits;
1232 ::new (&bb_data[ei_edge (ei)->dest->index].scc_exits)
1329 bb_data[tem_src_scc].scc_exits.safe_push (e->dest->index);
1358 bb_data[src_scc].scc_exits.safe_push (e->dest->index);
1388 && !bb_data[dest->index].scc_exits.is_empty ())
1394 gcc_sort_r (&bb_data[dest->index].scc_exits[0],
1395 bb_data[dest->index].scc_exits.length (),
1398 for (int i = bb_data[dest->index].scc_exits.length () - 1; i >= 0; --i)
1400 (dest, BASIC_BLOCK_FOR_FN (fn, bb_data[dest->index].scc_exits[i])));
1472 bb_data[bb->index].scc_exits.~scc_exit_vec_t ();