Home
last modified time | relevance | path

Searched refs:rounded_size (Results 1 – 13 of 13) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
H A Dexplow.c1740 rounded_size in probe_stack_range()
1861 if (*rounded_size == CONST0_RTX (Pmode)) in compute_stack_clash_protection_loop_data()
1864 else if (CONST_INT_P (*rounded_size) in compute_stack_clash_protection_loop_data()
1868 else if (CONST_INT_P (*rounded_size)) in compute_stack_clash_protection_loop_data()
1959 rtx rounded_size, last_addr, residual; in anti_adjust_stack_and_probe_stack_clash() local
1964 if (rounded_size != CONST0_RTX (Pmode)) in anti_adjust_stack_and_probe_stack_clash()
1966 if (CONST_INT_P (rounded_size) in anti_adjust_stack_and_probe_stack_clash()
1967 && INTVAL (rounded_size) <= 4 * probe_interval) in anti_adjust_stack_and_probe_stack_clash()
1970 i < INTVAL (rounded_size); in anti_adjust_stack_and_probe_stack_clash()
1987 bool rotate_loop = CONST_INT_P (rounded_size); in anti_adjust_stack_and_probe_stack_clash()
[all …]
H A Dtarghooks.c2126 tree addr, t, type_size, rounded_size, valist_tmp; in std_gimplify_va_arg_expr() local
2186 rounded_size = round_up (type_size, align); in std_gimplify_va_arg_expr()
2189 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue); in std_gimplify_va_arg_expr()
2193 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size)) in std_gimplify_va_arg_expr()
2197 rounded_size, size_int (align)); in std_gimplify_va_arg_expr()
2199 size_binop (MINUS_EXPR, rounded_size, type_size)); in std_gimplify_va_arg_expr()
2204 t = fold_build_pointer_plus (valist_tmp, rounded_size); in std_gimplify_va_arg_expr()
H A Drecog.c1267 poly_int64 rounded_size = GET_MODE_SIZE (mode); in push_operand() local
1270 rounded_size = PUSH_ROUNDING (MACRO_INT (rounded_size)); in push_operand()
1275 if (known_eq (rounded_size, GET_MODE_SIZE (mode))) in push_operand()
1288 ? maybe_ne (offset, -rounded_size) in push_operand()
1289 : maybe_ne (offset, rounded_size))) in push_operand()
H A Dfunction.c835 poly_int64 rounded_size = aligned_upper_bound (size, alignment); in assign_stack_temp_for_type() local
837 if (known_ge (best_p->size - rounded_size, alignment)) in assign_stack_temp_for_type()
841 p->size = best_p->size - rounded_size; in assign_stack_temp_for_type()
842 p->base_offset = best_p->base_offset + rounded_size; in assign_stack_temp_for_type()
843 p->full_size = best_p->full_size - rounded_size; in assign_stack_temp_for_type()
844 p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size); in assign_stack_temp_for_type()
851 best_p->size = rounded_size; in assign_stack_temp_for_type()
852 best_p->full_size = rounded_size; in assign_stack_temp_for_type()
H A Dexpr.c4142 poly_int64 rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode)); in emit_single_push_insn_1() local
4157 if (known_eq (GET_MODE_SIZE (mode), rounded_size)) in emit_single_push_insn_1()
4170 gen_int_mode (rounded_size, Pmode), in emit_single_push_insn_1()
4173 poly_int64 offset = rounded_size - GET_MODE_SIZE (mode); in emit_single_push_insn_1()
4177 offset += rounded_size; in emit_single_push_insn_1()
4182 offset -= rounded_size; in emit_single_push_insn_1()
4190 dest_addr = plus_constant (Pmode, stack_pointer_rtx, -rounded_size); in emit_single_push_insn_1()
4193 dest_addr = plus_constant (Pmode, stack_pointer_rtx, rounded_size); in emit_single_push_insn_1()
/dragonfly/contrib/gcc-4.7/libobjc/
H A Dsarray.c296 size_t rounded_size = (new_max_index + 1) * INDEX_CAPACITY; in sarray_realloc() local
304 size_t rounded_size = (new_max_index + 1) * BUCKET_SIZE; in sarray_realloc()
316 if (rounded_size <= array->capacity) in sarray_realloc()
323 if (rounded_size > array->capacity) in sarray_realloc()
327 rounded_size = (new_max_index + 1) * INDEX_CAPACITY; in sarray_realloc()
330 rounded_size = (new_max_index + 1) * BUCKET_SIZE; in sarray_realloc()
334 array->capacity = rounded_size; in sarray_realloc()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dexplow.c1616 rtx rounded_size, rounded_size_op, test_addr, last_addr, temp; in probe_stack_range() local
1624 rounded_size in probe_stack_range()
1626 rounded_size_op = force_operand (rounded_size, NULL_RTX); in probe_stack_range()
1678 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size); in probe_stack_range()
1759 rtx rounded_size, rounded_size_op, last_addr, temp; in anti_adjust_stack_and_probe() local
1767 rounded_size in anti_adjust_stack_and_probe()
1769 rounded_size_op = force_operand (rounded_size, NULL_RTX); in anti_adjust_stack_and_probe()
1813 temp = simplify_gen_binary (MINUS, Pmode, size, rounded_size); in anti_adjust_stack_and_probe()
H A Drecog.c1208 unsigned int rounded_size = GET_MODE_SIZE (mode); in push_operand() local
1211 rounded_size = PUSH_ROUNDING (rounded_size); in push_operand()
1222 if (rounded_size == GET_MODE_SIZE (mode)) in push_operand()
1234 || INTVAL (XEXP (XEXP (op, 1), 1)) != - (int) rounded_size in push_operand()
1236 || INTVAL (XEXP (XEXP (op, 1), 1)) != (int) rounded_size in push_operand()
H A Dfunction.c844 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment); in assign_stack_temp_for_type() local
846 if (best_p->size - rounded_size >= alignment) in assign_stack_temp_for_type()
850 p->size = best_p->size - rounded_size; in assign_stack_temp_for_type()
851 p->base_offset = best_p->base_offset + rounded_size; in assign_stack_temp_for_type()
852 p->full_size = best_p->full_size - rounded_size; in assign_stack_temp_for_type()
853 p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size); in assign_stack_temp_for_type()
861 best_p->size = rounded_size; in assign_stack_temp_for_type()
862 best_p->full_size = rounded_size; in assign_stack_temp_for_type()
H A Dexpr.c3822 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode)); in emit_single_push_insn_1() local
3838 if (GET_MODE_SIZE (mode) == rounded_size) in emit_single_push_insn_1()
3846 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode); in emit_single_push_insn_1()
3857 GEN_INT (rounded_size), in emit_single_push_insn_1()
3865 offset += (HOST_WIDE_INT) rounded_size; in emit_single_push_insn_1()
3870 offset -= (HOST_WIDE_INT) rounded_size; in emit_single_push_insn_1()
3879 GEN_INT (-(HOST_WIDE_INT) rounded_size)); in emit_single_push_insn_1()
3883 GEN_INT (rounded_size)); in emit_single_push_insn_1()
H A Dbuiltins.c4268 tree addr, t, type_size, rounded_size, valist_tmp; in std_gimplify_va_arg_expr() local
4328 rounded_size = round_up (type_size, align); in std_gimplify_va_arg_expr()
4331 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue); in std_gimplify_va_arg_expr()
4335 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size)) in std_gimplify_va_arg_expr()
4339 rounded_size, size_int (align)); in std_gimplify_va_arg_expr()
4341 size_binop (MINUS_EXPR, rounded_size, type_size)); in std_gimplify_va_arg_expr()
4346 t = fold_build_pointer_plus (valist_tmp, rounded_size); in std_gimplify_va_arg_expr()
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
H A Di386.c12827 m->fs.cfa_offset += rounded_size; in ix86_adjust_stack_and_probe_stack_clash()
12833 m->fs.sp_offset += rounded_size; in ix86_adjust_stack_and_probe_stack_clash()
12839 if (size != rounded_size) in ix86_adjust_stack_and_probe_stack_clash()
12928 HOST_WIDE_INT rounded_size; in ix86_adjust_stack_and_probe() local
12955 -rounded_size))); in ix86_adjust_stack_and_probe()
12983 if (size != rounded_size) in ix86_adjust_stack_and_probe()
12987 rounded_size - size))); in ix86_adjust_stack_and_probe()
13103 HOST_WIDE_INT rounded_size, last; in ix86_emit_probe_stack_range() local
13120 last = first + rounded_size; in ix86_emit_probe_stack_range()
13141 if (size != rounded_size) in ix86_emit_probe_stack_range()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Di386.c9714 HOST_WIDE_INT rounded_size; in ix86_adjust_stack_and_probe() local
9722 rounded_size = size & -PROBE_INTERVAL; in ix86_adjust_stack_and_probe()
9733 emit_move_insn (sr.reg, GEN_INT (-rounded_size)); in ix86_adjust_stack_and_probe()
9756 if (size != rounded_size) in ix86_adjust_stack_and_probe()
9760 rounded_size - size))); in ix86_adjust_stack_and_probe()
9866 HOST_WIDE_INT rounded_size, last; in ix86_emit_probe_stack_range() local
9874 rounded_size = size & -PROBE_INTERVAL; in ix86_emit_probe_stack_range()
9883 last = first + rounded_size; in ix86_emit_probe_stack_range()
9903 if (size != rounded_size) in ix86_emit_probe_stack_range()
9907 rounded_size - size)); in ix86_emit_probe_stack_range()