re PR target/79242 (ICE in simplify_subreg, at simplify-rtx.c:6029)
authorJozef Lawrynowicz <jozefl.gcc@gmail.com>
Wed, 14 Feb 2018 07:21:11 +0000 (07:21 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 14 Feb 2018 07:21:11 +0000 (00:21 -0700)
2018-02-14  Jozef Lawrynowicz <jozefl.gcc@gmail.com>

PR target/79242
* machmode.def: Define a complex mode for PARTIAL_INT.
* genmodes.c (complex_class): Return MODE_COMPLEX_INT for
MODE_PARTIAL_INT.
* doc/rtl.texi: Document CSPImode.
* config/msp430/msp430.c (msp430_hard_regno_nregs): Add CPSImode
handling.
(msp430_hard_regno_nregs_with_padding): Likewise.

PR target/79242
* gcc.target/msp430/pr79242.c: New test.

From-SVN: r257653

gcc/ChangeLog
gcc/config/msp430/msp430.c
gcc/doc/rtl.texi
gcc/genmodes.c
gcc/machmode.def
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/msp430/pr79242.c [new file with mode: 0644]

index 3ddfff6..bcaf137 100644 (file)
@@ -1,3 +1,14 @@
+2018-02-14  Jozef Lawrynowicz <jozefl.gcc@gmail.com>
+
+       PR target/79242
+       * machmode.def: Define a complex mode for PARTIAL_INT.
+       * genmodes.c (complex_class): Return MODE_COMPLEX_INT for
+       MODE_PARTIAL_INT.
+       * doc/rtl.texi: Document CSPImode.
+       * config/msp430/msp430.c (msp430_hard_regno_nregs): Add CPSImode
+       handling.
+       (msp430_hard_regno_nregs_with_padding): Likewise.
+
 2018-02-13  Peter Bergner  <bergner@vnet.ibm.com>
 
        PR target/84279
index 83e9e38..a8fed12 100644 (file)
@@ -914,6 +914,8 @@ msp430_hard_regno_nregs (unsigned int, machine_mode mode)
 {
   if (mode == PSImode && msp430x)
     return 1;
+  if (mode == CPSImode && msp430x)
+    return 2;
   return ((GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1)
          / UNITS_PER_WORD);
 }
@@ -936,6 +938,8 @@ msp430_hard_regno_nregs_with_padding (int regno ATTRIBUTE_UNUSED,
 {
   if (mode == PSImode)
     return 2;
+  if (mode == CPSImode)
+    return 4;
   return msp430_hard_regno_nregs (regno, mode);
 }
 
index 43d5405..b5410f9 100644 (file)
@@ -1303,10 +1303,11 @@ point values.  The floating point values are in @code{QFmode},
 @findex CDImode
 @findex CTImode
 @findex COImode
-@item CQImode, CHImode, CSImode, CDImode, CTImode, COImode
+@findex CPSImode
+@item CQImode, CHImode, CSImode, CDImode, CTImode, COImode, CPSImode
 These modes stand for a complex number represented as a pair of integer
 values.  The integer values are in @code{QImode}, @code{HImode},
-@code{SImode}, @code{DImode}, @code{TImode}, and @code{OImode},
+@code{SImode}, @code{DImode}, @code{TImode}, @code{OImode}, and @code{PSImode},
 respectively.
 
 @findex BND32mode
index a70f096..af0d280 100644 (file)
@@ -119,6 +119,7 @@ complex_class (enum mode_class c)
   switch (c)
     {
     case MODE_INT: return MODE_COMPLEX_INT;
+    case MODE_PARTIAL_INT: return MODE_COMPLEX_INT;
     case MODE_FLOAT: return MODE_COMPLEX_FLOAT;
     default:
       error ("no complex class for class %s", mode_class_names[c]);
index d5d5efc..9505cc3 100644 (file)
@@ -260,6 +260,7 @@ UACCUM_MODE (UTA, 16, 64, 64); /* 64.64 */
 
 /* Complex modes.  */
 COMPLEX_MODES (INT);
+COMPLEX_MODES (PARTIAL_INT);
 COMPLEX_MODES (FLOAT);
 
 /* Decimal floating point modes.  */
index 0a22031..a8dc606 100644 (file)
@@ -1,3 +1,8 @@
+2018-02-14  Jozef Lawrynowicz <jozefl.gcc@gmail.com>
+
+       PR target/79242
+       * gcc.target/msp430/pr79242.c: New test.
+
 2018-02-13  Peter Bergner  <bergner@vnet.ibm.com>
 
        PR target/84372
diff --git a/gcc/testsuite/gcc.target/msp430/pr79242.c b/gcc/testsuite/gcc.target/msp430/pr79242.c
new file mode 100644 (file)
index 0000000..d7ff8d3
--- /dev/null
@@ -0,0 +1,11 @@
+/* { dg-do compile } */
+/* { dg-skip-if "" { "*-*-*" } { "-mcpu=msp430" "-msmall" } { "" } } */
+/* { dg-options "-mcpu=msp430x" } */
+
+typedef _Complex __int20 C;
+
+C
+foo (C x, C y)
+{
+  return x + y;
+}