i386.c (extended_reg_mentioned_1): Delete.
authorRichard Sandiford <richard.sandiford@arm.com>
Mon, 27 Oct 2014 18:41:47 +0000 (18:41 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Mon, 27 Oct 2014 18:41:47 +0000 (18:41 +0000)
gcc/
* config/i386/i386.c (extended_reg_mentioned_1): Delete.
(x86_extended_reg_mentioned_p): Use FOR_EACH_SUBRTX.

From-SVN: r216759

gcc/ChangeLog
gcc/config/i386/i386.c

index 7a87dcea02890a733fb4d7cf450daace4de583f9..a0c8dec6d0be3359f9b77112ed007342db681a8e 100644 (file)
@@ -1,3 +1,8 @@
+2014-10-27  Richard Sandiford  <richard.sandiford@arm.com>
+
+       * config/i386/i386.c (extended_reg_mentioned_1): Delete.
+       (x86_extended_reg_mentioned_p): Use FOR_EACH_SUBRTX.
+
 2014-10-27  Richard Sandiford  <richard.sandiford@arm.com>
 
        * config/i386/i386.c: Include rtl-iter.h
index 57a2d07da8bd92b65e33e642f44790fbe2fd3ca3..408fbd9cd54a2c7447132cc247f6c63c7ecf8db4 100644 (file)
@@ -39695,25 +39695,20 @@ x86_extended_QIreg_mentioned_p (rtx_insn *insn)
   return false;
 }
 
-/* Return nonzero when P points to register encoded via REX prefix.
-   Called via for_each_rtx.  */
-static int
-extended_reg_mentioned_1 (rtx *p, void *)
-{
-   unsigned int regno;
-   if (!REG_P (*p))
-     return 0;
-   regno = REGNO (*p);
-   return REX_INT_REGNO_P (regno) || REX_SSE_REGNO_P (regno);
-}
-
 /* Return true when INSN mentions register that must be encoded using REX
    prefix.  */
 bool
 x86_extended_reg_mentioned_p (rtx insn)
 {
-  return for_each_rtx (INSN_P (insn) ? &PATTERN (insn) : &insn,
-                      extended_reg_mentioned_1, NULL);
+  subrtx_iterator::array_type array;
+  FOR_EACH_SUBRTX (iter, array, INSN_P (insn) ? PATTERN (insn) : insn, NONCONST)
+    {
+      const_rtx x = *iter;
+      if (REG_P (x)
+         && (REX_INT_REGNO_P (REGNO (x)) || REX_SSE_REGNO_P (REGNO (x))))
+       return true;
+    }
+  return false;
 }
 
 /* If profitable, negate (without causing overflow) integer constant