Lines Matching defs:rounded_size
1781 rtx rounded_size, rounded_size_op, test_addr, last_addr, temp;
1787 /* ROUNDED_SIZE = SIZE & -PROBE_INTERVAL */
1788 rounded_size
1791 rounded_size_op = force_operand (rounded_size, NULL_RTX);
1802 /* LAST_ADDR = SP + FIRST + ROUNDED_SIZE. */
1817 until it is equal to ROUNDED_SIZE. */
1841 that SIZE is equal to ROUNDED_SIZE. */
1843 /* TEMP = SIZE - ROUNDED_SIZE. */
1844 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size);
1877 We compute ROUNDED_SIZE, LAST_ADDR, RESIDUAL and PROBE_INTERVAL.
1883 compute_stack_clash_protection_loop_data (rtx *rounded_size, rtx *last_addr,
1891 *rounded_size = simplify_gen_binary (AND, Pmode, size,
1895 It's just SP + ROUNDED_SIZE. */
1896 rtx rounded_size_op = force_operand (*rounded_size, NULL_RTX);
1903 are just the ROUNDED_SIZE - SIZE. */
1904 *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size);
1909 if (*rounded_size == CONST0_RTX (Pmode))
1912 else if (CONST_INT_P (*rounded_size)
1913 && INTVAL (*rounded_size) <= 4 * *probe_interval)
1916 else if (CONST_INT_P (*rounded_size))
2007 rtx rounded_size, last_addr, residual;
2010 compute_stack_clash_protection_loop_data (&rounded_size, &last_addr,
2023 if (rounded_size != CONST0_RTX (Pmode))
2025 if (CONST_INT_P (rounded_size)
2026 && INTVAL (rounded_size) <= 4 * probe_interval)
2029 i < INTVAL (rounded_size);
2045 bool rotate_loop = CONST_INT_P (rounded_size);
2177 rtx rounded_size, rounded_size_op, last_addr, temp;
2184 /* ROUNDED_SIZE = SIZE & -PROBE_INTERVAL */
2185 rounded_size
2188 rounded_size_op = force_operand (rounded_size, NULL_RTX);
2196 /* LAST_ADDR = SP_0 + PROBE_INTERVAL + ROUNDED_SIZE. */
2211 values of N from 1 until it is equal to ROUNDED_SIZE. */
2229 assert at compile-time that SIZE is equal to ROUNDED_SIZE. */
2231 /* TEMP = SIZE - ROUNDED_SIZE. */
2232 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size);