Commit e4d3eef1 by Richard Henderson Committed by Richard Henderson

builtins.c (std_gimplify_va_arg_expr): Deny ARGS_GROW_DOWNWARD.

        * builtins.c (std_gimplify_va_arg_expr): Deny ARGS_GROW_DOWNWARD.
        Always align upward to arg boundary.  Use size_in_bytes/round_up.
        Maintain type-correctness of constants.
        * stor-layout.c (round_up, round_down): Special-case powers of 2.

From-SVN: r84430
parent ffe384ff
2004-07-09 Richard Henderson <rth@redhat.com>
* builtins.c (std_gimplify_va_arg_expr): Deny ARGS_GROW_DOWNWARD.
Always align upward to arg boundary. Use size_in_bytes/round_up.
Maintain type-correctness of constants.
* stor-layout.c (round_up, round_down): Special-case powers of 2.
2004-07-09 David S. Miller <davem@nuts.davemloft.net> 2004-07-09 David S. Miller <davem@nuts.davemloft.net>
* config/sparc/sparc.c (*_costs): Scale instruction costs * config/sparc/sparc.c (*_costs): Scale instruction costs
......
...@@ -4473,72 +4473,61 @@ expand_builtin_va_arg (tree valist, tree type) ...@@ -4473,72 +4473,61 @@ expand_builtin_va_arg (tree valist, tree type)
tree tree
std_gimplify_va_arg_expr (tree valist, tree type, tree *pre_p, tree *post_p) std_gimplify_va_arg_expr (tree valist, tree type, tree *pre_p, tree *post_p)
{ {
tree addr, t, type_size = NULL; tree addr, t, type_size, rounded_size, valist_tmp;
tree align, alignm1, malign; unsigned int align, boundary;
tree rounded_size;
tree valist_tmp; #ifdef ARGS_GROW_DOWNWARD
HOST_WIDE_INT boundary; /* All of the alignment and movement below is for args-grow-up machines.
As of 2004, there are only 3 ARGS_GROW_DOWNWARD targets, and they all
implement their own specialized gimplify_va_arg_expr routines. */
abort ();
#endif
/* Compute the rounded size of the type. */ /* Compute the rounded size of the type. */
align = size_int (PARM_BOUNDARY / BITS_PER_UNIT); align = PARM_BOUNDARY / BITS_PER_UNIT;
alignm1 = size_int (PARM_BOUNDARY / BITS_PER_UNIT - 1);
malign = size_int (-(PARM_BOUNDARY / BITS_PER_UNIT));
boundary = FUNCTION_ARG_BOUNDARY (TYPE_MODE (type), type); boundary = FUNCTION_ARG_BOUNDARY (TYPE_MODE (type), type);
/* Hoist the valist value into a temporary for the moment. */
valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL); valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL);
/* va_list pointer is aligned to PARM_BOUNDARY. If argument actually /* va_list pointer is aligned to PARM_BOUNDARY. If argument actually
requires greater alignment, we must perform dynamic alignment. */ requires greater alignment, we must perform dynamic alignment. */
if (boundary > PARM_BOUNDARY) if (boundary > PARM_BOUNDARY)
{ {
if (!PAD_VARARGS_DOWN) unsigned byte_bound = boundary / BITS_PER_UNIT;
{
t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp, t = fold_convert (TREE_TYPE (valist), size_int (byte_bound - 1));
build2 (PLUS_EXPR, TREE_TYPE (valist), valist_tmp,
build_int_2 (boundary / BITS_PER_UNIT - 1, 0)));
gimplify_and_add (t, pre_p);
}
t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp, t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
build2 (BIT_AND_EXPR, TREE_TYPE (valist), valist_tmp, build2 (PLUS_EXPR, TREE_TYPE (valist), valist_tmp, t));
build_int_2 (~(boundary / BITS_PER_UNIT - 1), -1))); gimplify_and_add (t, pre_p);
t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
build2 (BIT_AND_EXPR, TREE_TYPE (valist), valist_tmp, t));
gimplify_and_add (t, pre_p); gimplify_and_add (t, pre_p);
}
if (type == error_mark_node
|| (type_size = TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type))) == NULL
|| TREE_OVERFLOW (type_size))
rounded_size = size_zero_node;
else
{
rounded_size = fold (build2 (PLUS_EXPR, sizetype, type_size, alignm1));
rounded_size = fold (build2 (BIT_AND_EXPR, sizetype,
rounded_size, malign));
} }
type_size = size_in_bytes (type);
rounded_size = round_up (type_size, align);
/* Reduce rounded_size so it's sharable with the postqueue. */ /* Reduce rounded_size so it's sharable with the postqueue. */
gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue); gimplify_expr (&rounded_size, pre_p, post_p, is_gimple_val, fb_rvalue);
/* Get AP. */ /* Get AP. */
addr = valist_tmp; addr = valist_tmp;
if (PAD_VARARGS_DOWN && ! integer_zerop (rounded_size)) if (PAD_VARARGS_DOWN && !integer_zerop (rounded_size))
{ {
/* Small args are padded downward. */ /* Small args are padded downward. */
addr = fold (build2 (PLUS_EXPR, TREE_TYPE (addr), addr, t = fold (build2 (GT_EXPR, sizetype, rounded_size, size_int (align)));
fold (build3 (COND_EXPR, sizetype, t = fold (build3 (COND_EXPR, sizetype, t, size_zero_node,
fold (build2 (GT_EXPR, sizetype, size_binop (MINUS_EXPR, rounded_size, type_size)));
rounded_size, t = fold_convert (TREE_TYPE (addr), t);
align)), addr = build2 (PLUS_EXPR, TREE_TYPE (addr), addr, t);
size_zero_node,
fold (build2 (MINUS_EXPR,
sizetype,
rounded_size,
type_size))))));
} }
/* Compute new value for AP. */ /* Compute new value for AP. */
t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t = fold_convert (TREE_TYPE (valist), rounded_size);
fold (build2 (PLUS_EXPR, TREE_TYPE (valist), t = build2 (PLUS_EXPR, TREE_TYPE (valist), valist_tmp, t);
valist_tmp, rounded_size))); t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t);
gimplify_and_add (t, pre_p); gimplify_and_add (t, pre_p);
addr = fold_convert (build_pointer_type (type), addr); addr = fold_convert (build_pointer_type (type), addr);
......
...@@ -274,9 +274,24 @@ get_mode_alignment (enum machine_mode mode) ...@@ -274,9 +274,24 @@ get_mode_alignment (enum machine_mode mode)
tree tree
round_up (tree value, int divisor) round_up (tree value, int divisor)
{ {
tree arg = size_int_type (divisor, TREE_TYPE (value)); tree t;
/* If divisor is a power of two, simplify this to bit manipulation. */
if (divisor == (divisor & -divisor))
{
t = size_int_type (divisor - 1, TREE_TYPE (value));
value = size_binop (PLUS_EXPR, value, t);
t = size_int_type (-divisor, TREE_TYPE (value));
value = size_binop (BIT_AND_EXPR, value, t);
}
else
{
t = size_int_type (divisor, TREE_TYPE (value));
value = size_binop (CEIL_DIV_EXPR, value, t);
value = size_binop (MULT_EXPR, value, t);
}
return size_binop (MULT_EXPR, size_binop (CEIL_DIV_EXPR, value, arg), arg); return value;
} }
/* Likewise, but round down. */ /* Likewise, but round down. */
...@@ -284,9 +299,22 @@ round_up (tree value, int divisor) ...@@ -284,9 +299,22 @@ round_up (tree value, int divisor)
tree tree
round_down (tree value, int divisor) round_down (tree value, int divisor)
{ {
tree arg = size_int_type (divisor, TREE_TYPE (value)); tree t;
/* If divisor is a power of two, simplify this to bit manipulation. */
if (divisor == (divisor & -divisor))
{
t = size_int_type (-divisor, TREE_TYPE (value));
value = size_binop (BIT_AND_EXPR, value, t);
}
else
{
t = size_int_type (divisor, TREE_TYPE (value));
value = size_binop (FLOOR_DIV_EXPR, value, t);
value = size_binop (MULT_EXPR, value, t);
}
return size_binop (MULT_EXPR, size_binop (FLOOR_DIV_EXPR, value, arg), arg); return value;
} }
/* Subroutine of layout_decl: Force alignment required for the data type. /* Subroutine of layout_decl: Force alignment required for the data type.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment