re PR debug/48163 (ICEs for cris-elf, like gcc.c-torture/compile/calls.c gcc.c-tortur...
authorJakub Jelinek <jakub@redhat.com>
Thu, 17 Mar 2011 20:33:54 +0000 (21:33 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 17 Mar 2011 20:33:54 +0000 (21:33 +0100)
PR debug/48163
* function.c (assign_parms): For data.passed_pointer parms
use MEM of data.entry_parm instead of data.entry_parm itself
as DECL_INCOMING_RTL.
* dwarf2out.c (rtl_for_decl_location): Use DECL_INCOMING_RTL
also when passed and declared mode is the same, DECL_RTL
is a MEM with pseudo as address and DECL_INCOMING_RTL is
a MEM too.

From-SVN: r171113

gcc/ChangeLog
gcc/dwarf2out.c
gcc/function.c

index 5182971d685cb19d2ae09a36e03e008dde8285a1..3e4a5114572fb5d80af39981ebddcdb08ebbc9e7 100644 (file)
@@ -1,3 +1,14 @@
+2011-03-17  Jakub Jelinek  <jakub@redhat.com>
+
+       PR debug/48163
+       * function.c (assign_parms): For data.passed_pointer parms
+       use MEM of data.entry_parm instead of data.entry_parm itself
+       as DECL_INCOMING_RTL.
+       * dwarf2out.c (rtl_for_decl_location): Use DECL_INCOMING_RTL
+       also when passed and declared mode is the same, DECL_RTL
+       is a MEM with pseudo as address and DECL_INCOMING_RTL is
+       a MEM too.
+
 2011-03-16  Jeff Law  <law@redhat.com>
 
        PR rtl-optimization/37273
index f62bb48737cd39d2869c8cd009f6013d3ccf76fe..31d9a0e99256d3178cf725f05e05d9e534403664 100644 (file)
@@ -16721,7 +16721,13 @@ rtl_for_decl_location (tree decl)
     }
   else if (TREE_CODE (decl) == PARM_DECL)
     {
-      if (rtl == NULL_RTX || is_pseudo_reg (rtl))
+      if (rtl == NULL_RTX
+         || is_pseudo_reg (rtl)
+         || (MEM_P (rtl)
+             && is_pseudo_reg (XEXP (rtl, 0))
+             && DECL_INCOMING_RTL (decl)
+             && MEM_P (DECL_INCOMING_RTL (decl))
+             && GET_MODE (rtl) == GET_MODE (DECL_INCOMING_RTL (decl))))
        {
          tree declared_type = TREE_TYPE (decl);
          tree passed_type = DECL_ARG_TYPE (decl);
@@ -16733,7 +16739,8 @@ rtl_for_decl_location (tree decl)
             all cases where (rtl == NULL_RTX) just below.  */
          if (dmode == pmode)
            rtl = DECL_INCOMING_RTL (decl);
-         else if (SCALAR_INT_MODE_P (dmode)
+         else if ((rtl == NULL_RTX || is_pseudo_reg (rtl))
+                  && SCALAR_INT_MODE_P (dmode)
                   && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
                   && DECL_INCOMING_RTL (decl))
            {
index 1f7722c62a22a04b17d3b72a976117d3be68b95a..64950a1a799a7b63d6f44ac52a3203c50463d7ad 100644 (file)
@@ -3403,7 +3403,15 @@ assign_parms (tree fndecl)
        }
 
       /* Record permanently how this parm was passed.  */
-      set_decl_incoming_rtl (parm, data.entry_parm, data.passed_pointer);
+      if (data.passed_pointer)
+       {
+         rtx incoming_rtl
+           = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (data.passed_type)),
+                          data.entry_parm);
+         set_decl_incoming_rtl (parm, incoming_rtl, true);
+       }
+      else
+       set_decl_incoming_rtl (parm, data.entry_parm, false);
 
       /* Update info on where next arg arrives in registers.  */
       targetm.calls.function_arg_advance (&all.args_so_far, data.promoted_mode,