]> gcc.gnu.org Git - gcc.git/commitdiff
re PR target/15941 (new fails gcc.dg/compat/struct-by-value-11 and gcc.dg/compat...
authorRichard Henderson <rth@redhat.com>
Sat, 19 Jun 2004 19:24:56 +0000 (12:24 -0700)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sat, 19 Jun 2004 19:24:56 +0000 (19:24 +0000)
PR target/15941
* function.c (assign_parms): If not padding upward or intentionally
forcing upward padding, take offset_rtx into account when determining
the alignment for stack_parm.

From-SVN: r83396

gcc/ChangeLog
gcc/function.c

index 07e75cd2b5e3af6d8c8a650524654f73416ea1bf..242be1c6c6ca09096488f903bad13d1c5775a268 100644 (file)
@@ -1,3 +1,10 @@
+2004-06-19  Richard Henderson  <rth@redhat.com>
+
+       PR target/15941
+       * function.c (assign_parms): If not padding upward or intentionally
+       forcing upward padding, take offset_rtx into account when determining
+       the alignment for stack_parm.
+
 2004-06-19  Richard Henderson  <rth@redhat.com>
 
        PR target/15550
index f4f2940f2ebd24412a15194f9e63a8f44f66229a..3f1f45bbcaa243ac28ce63e5d16ef673376c2d04 100644 (file)
@@ -4603,6 +4603,7 @@ assign_parms (tree fndecl)
 
       {
        rtx offset_rtx;
+       unsigned int align, boundary;
 
        /* If we're passing this arg using a reg, make its stack home
           the aligned stack slot.  */
@@ -4620,8 +4621,24 @@ assign_parms (tree fndecl)
                                                  offset_rtx));
 
        set_mem_attributes (stack_parm, parm, 1);
-       set_mem_align (stack_parm, 
-                      FUNCTION_ARG_BOUNDARY (promoted_mode, passed_type));
+
+       boundary = FUNCTION_ARG_BOUNDARY (promoted_mode, passed_type);
+       align = 0;
+
+       /* If we're padding upward, we know that the alignment of the slot
+          is FUNCTION_ARG_BOUNDARY.  If we're using slot_offset, we're
+          intentionally forcing upward padding.  Otherwise we have to come
+          up with a guess at the alignment based on OFFSET_RTX.  */
+       if (locate.where_pad == upward || entry_parm)
+         align = boundary;
+       else if (GET_CODE (offset_rtx) == CONST_INT)
+         {
+           align = INTVAL (offset_rtx) * BITS_PER_UNIT | boundary;
+           align = align & -align;
+         }
+       if (align > 0)
+         set_mem_align (stack_parm, align);
+
        if (entry_parm)
          set_reg_attrs_for_parm (entry_parm, stack_parm);
       }
This page took 3.396904 seconds and 5 git commands to generate.