[AArch64] PR target/68129: Define TARGET_SUPPORTS_WIDE_INT
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Mon, 9 Nov 2015 15:53:26 +0000 (15:53 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Mon, 9 Nov 2015 15:53:26 +0000 (15:53 +0000)
PR target/68129
* config/aarch64/aarch64.h (TARGET_SUPPORTS_WIDE_INT): Define to 1.
* config/aarch64/aarch64.c (aarch64_print_operand, CONST_DOUBLE):
Delete VOIDmode case.  Assert that mode is not VOIDmode.
* config/aarch64/predicates.md (const0_operand): Remove const_double
match.

* gcc.dg/pr68129_1.c: New test.

From-SVN: r230029

gcc/ChangeLog
gcc/config/aarch64/aarch64.c
gcc/config/aarch64/aarch64.h
gcc/config/aarch64/predicates.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr68129_1.c [new file with mode: 0644]

index bc9dbf1f4400a22569b4a78d9c21e10d7a40c398..c07c5d6257b0bc41d2c8001cc63a601a0a4531f5 100644 (file)
@@ -1,3 +1,12 @@
+2015-11-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       PR target/68129
+       * config/aarch64/aarch64.h (TARGET_SUPPORTS_WIDE_INT): Define to 1.
+       * config/aarch64/aarch64.c (aarch64_print_operand, CONST_DOUBLE):
+       Delete VOIDmode case.  Assert that mode is not VOIDmode.
+       * config/aarch64/predicates.md (const0_operand): Remove const_double
+       match.
+
 2015-11-09  Martin Liska  <mliska@suse.cz>
 
        * ipa-inline-analysis.c (estimate_function_body_sizes): Call
index d92ca07eec171cfc43580100cc6962458ffccde6..83b7044d92580eea1d6b006d1b7b55577f647027 100644 (file)
@@ -4391,11 +4391,10 @@ aarch64_print_operand (FILE *f, rtx x, int code)
          break;
 
        case CONST_DOUBLE:
-         /* CONST_DOUBLE can represent a double-width integer.
-            In this case, the mode of x is VOIDmode.  */
-         if (GET_MODE (x) == VOIDmode)
-           ; /* Do Nothing.  */
-         else if (aarch64_float_const_zero_rtx_p (x))
+         /* Since we define TARGET_SUPPORTS_WIDE_INT we shouldn't ever
+            be getting CONST_DOUBLEs holding integers.  */
+         gcc_assert (GET_MODE (x) != VOIDmode);
+         if (aarch64_float_const_zero_rtx_p (x))
            {
              fputc ('0', f);
              break;
index 5429b5703518535b68fd4f9b6cefe648f409efba..8834c9b4dd0b5e87243189f045f63c0d3621f15f 100644 (file)
@@ -858,6 +858,8 @@ extern enum aarch64_code_model aarch64_cmodel;
   (aarch64_cmodel == AARCH64_CMODEL_TINY               \
    || aarch64_cmodel == AARCH64_CMODEL_TINY_PIC)
 
+#define TARGET_SUPPORTS_WIDE_INT 1
+
 /* Modes valid for AdvSIMD D registers, i.e. that fit in half a Q register.  */
 #define AARCH64_VALID_SIMD_DREG_MODE(MODE) \
   ((MODE) == V2SImode || (MODE) == V4HImode || (MODE) == V8QImode \
index 046f852b1d35f2678282ee59545867dca96313b1..e7f76e048543d27b325f915ced028b7a493b6789 100644 (file)
@@ -32,7 +32,7 @@
 
 ;; Return true if OP a (const_int 0) operand.
 (define_predicate "const0_operand"
-  (and (match_code "const_int, const_double")
+  (and (match_code "const_int")
        (match_test "op == CONST0_RTX (mode)")))
 
 (define_predicate "aarch64_ccmp_immediate"
index 7408f52bd07dc2c9d914d8137a067ddf84d8b836..ca1991b56db6d81b9c6b721a689705eec614a969 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-09  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       PR target/68129
+       * gcc.dg/pr68129_1.c: New test.
+
 2015-11-09  Andreas Arnez  <arnez@linux.vnet.ibm.com>
 
        PR debug/67192
diff --git a/gcc/testsuite/gcc.dg/pr68129_1.c b/gcc/testsuite/gcc.dg/pr68129_1.c
new file mode 100644 (file)
index 0000000..112331e
--- /dev/null
@@ -0,0 +1,10 @@
+/* { dg-do compile } */
+/* { dg-options "-O -fno-split-wide-types" } */
+
+typedef int V __attribute__ ((vector_size (8 * sizeof (int))));
+
+void
+foo (V *p, V *q)
+{
+  *p = (*p == *q);
+}