Lines Matching defs:ndests
1365 int nlabels, ndests, j, last_case_index;
1396 ndests = fallthru_index + tf->may_fallthru;
1404 case_label_vec.create (ndests);
1574 decide_copy_try_finally (int ndests, bool may_throw, gimple_seq finally)
1584 ndests -= may_throw;
1592 if (ndests == 1)
1610 f_estimate = (f_estimate + 1) * ndests;
1613 sw_estimate = 10 + 2 * ndests;
1660 int ndests;
1702 ndests = this_tf.dest_array.length ();
1703 ndests += this_tf.may_fallthru;
1704 ndests += this_tf.may_return;
1705 ndests += this_tf.may_throw;
1708 if (ndests == 0)
1720 else if (ndests == 1)
1722 else if (decide_copy_try_finally (ndests, this_tf.may_throw,
1732 /* This must be reached only if ndests == 0. */