rs6000: Don't call movsi_from_sf in 32 bit mode.
authorDavid Edelsohn <dje.gcc@gmail.com>
Tue, 14 Jul 2020 19:31:23 +0000 (15:31 -0400)
committerDavid Edelsohn <dje.gcc@gmail.com>
Tue, 14 Jul 2020 19:32:44 +0000 (15:32 -0400)
movsi_from_sf uses rldimi instruction, which will cause the compiler to ICE
in 32 bit mode.  This patch limits the recently added pattern and call to
TARGET_POWERPC64.

2020-07-14  David Edelsohn  <dje.gcc@gmail.com>

gcc/ChangeLog

* config/rs6000/rs6000.md (rotldi3_insert_sf): Add TARGET_POWERPC64
condition.
* config/rs6000/rs6000.c (rs6000_expand_vector_init): Add
TARGET_POWERPC64 requirement to TARGET_P8_VECTOR case.

gcc/config/rs6000/rs6000.c
gcc/config/rs6000/rs6000.md

index 378f761..dda51d5 100644 (file)
@@ -6498,7 +6498,7 @@ rs6000_expand_vector_init (rtx target, rtx vals)
        }
       else
        {
-         if (TARGET_P8_VECTOR)
+         if (TARGET_P8_VECTOR && TARGET_POWERPC64)
            {
              rtx tmp_sf[4];
              rtx tmp_si[4];
index 3a33982..c0d9877 100644 (file)
           [(match_operand:SF 3 "memory_operand")]
           UNSPEC_SI_FROM_SF))))
   (clobber (match_scratch:V4SF 4))]
-  "INTVAL (operands[2]) == <bits>"
+  "TARGET_POWERPC64 && INTVAL (operands[2]) == <bits>"
   "#"
   ""
   [(parallel [(set (match_dup 5)