Lines Matching defs:nit
145 gcov_type nit = expected_loop_iterations_unbounded (loop, &read_profile_p);
148 (uint64_t) nit);
1956 widest_int nit;
1959 if (!get_estimated_loop_iterations (loop, &nit))
1962 if (!wi::fits_shwi_p (nit))
1964 hwi_nit = nit.to_shwi ();
1976 HOST_WIDE_INT nit = get_max_loop_iterations_int (loop);
1979 if (nit == -1)
1982 snit = (HOST_WIDE_INT) ((unsigned HOST_WIDE_INT) nit + 1);
1995 HOST_WIDE_INT nit = get_likely_max_loop_iterations_int (loop);
1998 if (nit == -1)
2001 snit = (HOST_WIDE_INT) ((unsigned HOST_WIDE_INT) nit + 1);
2007 /* Sets NIT to the estimated number of executions of the latch of the
2012 get_estimated_loop_iterations (class loop *loop, widest_int *nit)
2020 *nit = gcov_type_to_wide_int
2027 *nit = loop->nb_iterations_estimate;
2031 /* Sets NIT to an upper bound for the maximum number of executions of the
2036 get_max_loop_iterations (const class loop *loop, widest_int *nit)
2041 *nit = loop->nb_iterations_upper_bound;
2052 widest_int nit;
2055 if (!get_max_loop_iterations (loop, &nit))
2058 if (!wi::fits_shwi_p (nit))
2060 hwi_nit = nit.to_shwi ();
2065 /* Sets NIT to an upper bound for the maximum number of executions of the
2070 get_likely_max_loop_iterations (class loop *loop, widest_int *nit)
2075 *nit = loop->nb_iterations_likely_upper_bound;
2086 widest_int nit;
2089 if (!get_likely_max_loop_iterations (loop, &nit))
2092 if (!wi::fits_shwi_p (nit))
2094 hwi_nit = nit.to_shwi ();