Searched refs:rounded_size (Results 1 – 4 of 4) sorted by relevance
| /trueos/contrib/gcc/ |
| HD | recog.c | 1242 unsigned int rounded_size = GET_MODE_SIZE (mode); in push_operand() local 1245 rounded_size = PUSH_ROUNDING (rounded_size); in push_operand() 1256 if (rounded_size == GET_MODE_SIZE (mode)) in push_operand() 1268 || INTVAL (XEXP (XEXP (op, 1), 1)) != - (int) rounded_size in push_operand() 1270 || INTVAL (XEXP (XEXP (op, 1), 1)) != (int) rounded_size in push_operand()
|
| HD | function.c | 683 HOST_WIDE_INT rounded_size = CEIL_ROUND (size, alignment); in assign_stack_temp_for_type() local 685 if (best_p->size - rounded_size >= alignment) in assign_stack_temp_for_type() 689 p->size = best_p->size - rounded_size; in assign_stack_temp_for_type() 690 p->base_offset = best_p->base_offset + rounded_size; in assign_stack_temp_for_type() 691 p->full_size = best_p->full_size - rounded_size; in assign_stack_temp_for_type() 692 p->slot = adjust_address_nv (best_p->slot, BLKmode, rounded_size); in assign_stack_temp_for_type() 701 best_p->size = rounded_size; in assign_stack_temp_for_type() 702 best_p->full_size = rounded_size; in assign_stack_temp_for_type()
|
| HD | expr.c | 3470 unsigned rounded_size = PUSH_ROUNDING (GET_MODE_SIZE (mode)); in emit_single_push_insn() local 3487 if (GET_MODE_SIZE (mode) == rounded_size) in emit_single_push_insn() 3495 unsigned padding_size = rounded_size - GET_MODE_SIZE (mode); in emit_single_push_insn() 3506 GEN_INT (rounded_size), in emit_single_push_insn() 3514 offset += (HOST_WIDE_INT) rounded_size; in emit_single_push_insn() 3519 offset -= (HOST_WIDE_INT) rounded_size; in emit_single_push_insn() 3528 GEN_INT (-(HOST_WIDE_INT) rounded_size)); in emit_single_push_insn() 3532 GEN_INT (rounded_size)); in emit_single_push_insn()
|
| HD | builtins.c | 4246 tree addr, t, type_size, rounded_size, valist_tmp; in std_gimplify_va_arg_expr() local 4297 rounded_size = round_up (type_size, align); in std_gimplify_va_arg_expr() 4300 gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue); in std_gimplify_va_arg_expr() 4304 if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size)) in std_gimplify_va_arg_expr() 4307 t = fold_build2 (GT_EXPR, sizetype, rounded_size, size_int (align)); in std_gimplify_va_arg_expr() 4309 size_binop (MINUS_EXPR, rounded_size, type_size)); in std_gimplify_va_arg_expr() 4315 t = fold_convert (TREE_TYPE (valist), rounded_size); in std_gimplify_va_arg_expr()
|