]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
aarch64.c: Include rtl-iter.h.
authorRichard Sandiford <richard.sandiford@arm.com>
Sat, 8 Nov 2014 11:25:32 +0000 (11:25 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Sat, 8 Nov 2014 11:25:32 +0000 (11:25 +0000)
gcc/
* config/aarch64/aarch64.c: Include rtl-iter.h.
(aarch64_tls_operand_p_1): Delete.
(aarch64_tls_operand_p): Use FOR_EACH_SUBRTX.

From-SVN: r217256

gcc/ChangeLog
gcc/config/aarch64/aarch64.c

index bf8183186f3f40f44c882c66940ade8d23f3d86a..4a513935160d8d047f8740fc60d59cfdc5039abd 100644 (file)
@@ -1,3 +1,9 @@
+2014-11-08  Richard Sandiford  <richard.sandiford@arm.com>
+
+       * config/aarch64/aarch64.c: Include rtl-iter.h.
+       (aarch64_tls_operand_p_1): Delete.
+       (aarch64_tls_operand_p): Use FOR_EACH_SUBRTX.
+
 2014-11-08  Richard Sandiford  <richard.sandiford@arm.com>
 
        * config/arm/arm.c (arm_note_pic_base): Delete.
index 736ad903b7081f30a36f01d4441d2fac1cd2c307..0429d96710bf36bd79fd09f3424b13d250938c53 100644 (file)
@@ -2809,28 +2809,23 @@ aarch64_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
   reload_completed = 0;
 }
 
-static int
-aarch64_tls_operand_p_1 (rtx *x, void *data ATTRIBUTE_UNUSED)
-{
-  if (GET_CODE (*x) == SYMBOL_REF)
-    return SYMBOL_REF_TLS_MODEL (*x) != 0;
-
-  /* Don't recurse into UNSPEC_TLS looking for TLS symbols; these are
-     TLS offsets, not real symbol references.  */
-  if (GET_CODE (*x) == UNSPEC
-      && XINT (*x, 1) == UNSPEC_TLS)
-    return -1;
-
-  return 0;
-}
-
 static bool
 aarch64_tls_referenced_p (rtx x)
 {
   if (!TARGET_HAVE_TLS)
     return false;
-
-  return for_each_rtx (&x, aarch64_tls_operand_p_1, NULL);
+  subrtx_iterator::array_type array;
+  FOR_EACH_SUBRTX (iter, array, x, ALL)
+    {
+      const_rtx x = *iter;
+      if (GET_CODE (x) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (x) != 0)
+       return true;
+      /* Don't recurse into UNSPEC_TLS looking for TLS symbols; these are
+        TLS offsets, not real symbol references.  */
+      if (GET_CODE (x) == UNSPEC && XINT (x, 1) == UNSPEC_TLS)
+       iter.skip_subrtxes ();
+    }
+  return false;
 }