mn10300.h (CALL_REALLY_USED_REGISTERS): Define.
authorNick Clifton <nickc@redhat.com>
Tue, 28 Oct 2008 09:45:37 +0000 (09:45 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Tue, 28 Oct 2008 09:45:37 +0000 (09:45 +0000)
        * config/mn10300/mn10300.h (CALL_REALLY_USED_REGISTERS): Define.
        * config/mn10300/mn10300.c (fp_regs_to_save): Test the
        call_really_used_regs array rather than the call_used_regs array.
        (mn10300_get_live_callee_saved_regs, expand_prologue,
        expand_epilogue, output_tst): Likewise.

From-SVN: r141405

gcc/ChangeLog
gcc/config/mn10300/mn10300.c
gcc/config/mn10300/mn10300.h

index dbf6e2611dde3fd023d2e3508b89f890df11ccb1..44432df823c4acd4ffd7ded7da10c0453a45f5c4 100644 (file)
@@ -1,3 +1,11 @@
+2008-10-28  Nick Clifton  <nickc@redhat.com>
+
+       * config/mn10300/mn10300.h (CALL_REALLY_USED_REGISTERS): Define.
+       * config/mn10300/mn10300.c (fp_regs_to_save): Test the
+       call_really_used_regs array rather than the call_used_regs array.
+       (mn10300_get_live_callee_saved_regs, expand_prologue,
+       expand_epilogue, output_tst): Likewise.
+
 2008-10-27  Jakub Jelinek  <jakub@redhat.com>
 
        PR target/37378
index eed829972443866d1646566bf20a56ca76c92a9f..7ee72699770bb3c9c2db5e24281dbcfeba127e3c 100644 (file)
@@ -540,7 +540,7 @@ fp_regs_to_save (void)
     return 0;
 
   for (i = FIRST_FP_REGNUM; i <= LAST_FP_REGNUM; ++i)
-    if (df_regs_ever_live_p (i) && ! call_used_regs[i])
+    if (df_regs_ever_live_p (i) && ! call_really_used_regs[i])
       ++n;
 
   return n;
@@ -617,7 +617,7 @@ mn10300_get_live_callee_saved_regs (void)
 
   mask = 0;
   for (i = 0; i <= LAST_EXTENDED_REGNUM; i++)
-    if (df_regs_ever_live_p (i) && ! call_used_regs[i])
+    if (df_regs_ever_live_p (i) && ! call_really_used_regs[i])
       mask |= (1 << i);
   if ((mask & 0x3c000) != 0)
     mask |= 0x3c000;
@@ -804,7 +804,7 @@ expand_prologue (void)
         frame pointer, size is nonzero and the user hasn't
         changed the calling conventions of a0.  */
       if (! frame_pointer_needed && size
-         && call_used_regs[FIRST_ADDRESS_REGNUM]
+         && call_really_used_regs [FIRST_ADDRESS_REGNUM]
          && ! fixed_regs[FIRST_ADDRESS_REGNUM])
        {
          /* Insn: add -(size + 4 * num_regs_to_save), sp.  */
@@ -828,7 +828,7 @@ expand_prologue (void)
 
       /* Consider alternative save_a0_no_merge if the user hasn't
         changed the calling conventions of a0.  */
-      if (call_used_regs[FIRST_ADDRESS_REGNUM]
+      if (call_really_used_regs [FIRST_ADDRESS_REGNUM]
          && ! fixed_regs[FIRST_ADDRESS_REGNUM])
        {
          /* Insn: add -4 * num_regs_to_save, sp.  */
@@ -910,7 +910,7 @@ expand_prologue (void)
 
       /* Now actually save the FP registers.  */
       for (i = FIRST_FP_REGNUM; i <= LAST_FP_REGNUM; ++i)
-       if (df_regs_ever_live_p (i) && ! call_used_regs[i])
+       if (df_regs_ever_live_p (i) && ! call_really_used_regs [i])
          {
            rtx addr;
 
@@ -1046,7 +1046,7 @@ expand_epilogue (void)
 
          /* Consider using a1 in post-increment mode, as long as the
             user hasn't changed the calling conventions of a1.  */
-         if (call_used_regs[FIRST_ADDRESS_REGNUM+1]
+         if (call_really_used_regs [FIRST_ADDRESS_REGNUM + 1]
              && ! fixed_regs[FIRST_ADDRESS_REGNUM+1])
            {
              /* Insn: mov sp,a1.  */
@@ -1114,7 +1114,7 @@ expand_epilogue (void)
        reg = gen_rtx_POST_INC (SImode, reg);
 
       for (i = FIRST_FP_REGNUM; i <= LAST_FP_REGNUM; ++i)
-       if (df_regs_ever_live_p (i) && ! call_used_regs[i])
+       if (df_regs_ever_live_p (i) && ! call_really_used_regs [i])
          {
            rtx addr;
 
@@ -1687,7 +1687,7 @@ output_tst (rtx operand, rtx insn)
          && REGNO_REG_CLASS (REGNO (SET_DEST (set))) != EXTENDED_REGS
          && REGNO (SET_DEST (set)) != REGNO (operand)
          && (!past_call
-             || !call_used_regs[REGNO (SET_DEST (set))]))
+             || ! call_really_used_regs [REGNO (SET_DEST (set))]))
        {
          rtx xoperands[2];
          xoperands[0] = operand;
@@ -1706,7 +1706,7 @@ output_tst (rtx operand, rtx insn)
          && REGNO_REG_CLASS (REGNO (SET_DEST (set))) == EXTENDED_REGS
          && REGNO (SET_DEST (set)) != REGNO (operand)
          && (!past_call
-             || !call_used_regs[REGNO (SET_DEST (set))]))
+             || ! call_really_used_regs [REGNO (SET_DEST (set))]))
        {
          rtx xoperands[2];
          xoperands[0] = operand;
index d83eedfb08a914e98e215499dfdb8c11807f06c3..62dc512bc0e4cb99e2d36706182f70275f60ebeb 100644 (file)
@@ -171,6 +171,13 @@ extern enum processor_type mn10300_processor;
   , 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 \
   }
 
+/* Note: The definition of CALL_REALLY_USED_REGISTERS is not
+   redundant.  It is needed when compiling in PIC mode because
+   the a2 register becomes fixed (and hence must be marked as
+   call_used) but in order to preserve the ABI it is not marked
+   as call_really_used.  */
+#define CALL_REALLY_USED_REGISTERS CALL_USED_REGISTERS
+
 #define REG_ALLOC_ORDER \
   { 0, 1, 4, 5, 2, 3, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 8, 9 \
   , 42, 43, 44, 45, 46, 47, 48, 49, 34, 35, 36, 37, 38, 39, 40, 41 \