re PR target/81481 (Spills %xmm to stack in glibc strspn SSE 4.2 variant)
authorVladimir Makarov <vmakarov@redhat.com>
Fri, 29 Sep 2017 17:39:58 +0000 (17:39 +0000)
committerVladimir Makarov <vmakarov@gcc.gnu.org>
Fri, 29 Sep 2017 17:39:58 +0000 (17:39 +0000)
2017-09-29  Vladimir Makarov  <vmakarov@redhat.com>

PR target/81481
* ira-costs.c (scan_one_insn): Don't take into account PIC equiv
with a symbol for LRA.

2017-09-29  Vladimir Makarov  <vmakarov@redhat.com>

PR target/81481
* gcc.target/i386/pr81481.c: New.

From-SVN: r253300

gcc/ChangeLog
gcc/ira-costs.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr81481.c [new file with mode: 0644]

index a2eea90..bdf728b 100644 (file)
@@ -1,5 +1,11 @@
 2017-09-29  Vladimir Makarov  <vmakarov@redhat.com>
 
+       PR target/81481
+       * ira-costs.c (scan_one_insn): Don't take into account PIC equiv
+       with a symbol for LRA.
+
+2017-09-29  Vladimir Makarov  <vmakarov@redhat.com>
+
        PR rtl-optimization/82338
        * lra-constraints.c (inherit_in_ebb): Check usage_insns check.
 
index 714bdbd..0bd0778 100644 (file)
@@ -1471,7 +1471,10 @@ scan_one_insn (rtx_insn *insn)
              && targetm.legitimate_constant_p (GET_MODE (SET_DEST (set)),
                                                XEXP (note, 0))
              && REG_N_SETS (REGNO (SET_DEST (set))) == 1))
-      && general_operand (SET_SRC (set), GET_MODE (SET_SRC (set))))
+      && general_operand (SET_SRC (set), GET_MODE (SET_SRC (set)))
+      /* LRA does not use equiv with a symbol for PIC code.  */
+      && (! ira_use_lra_p || ! pic_offset_table_rtx
+         || ! contains_symbol_ref_p (XEXP (note, 0))))
     {
       enum reg_class cl = GENERAL_REGS;
       rtx reg = SET_DEST (set);
index 537b751..ac88fd3 100644 (file)
@@ -1,3 +1,8 @@
+2017-09-29  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR target/81481
+       * gcc.target/i386/pr81481.c: New.
+
 2017-09-29  Kelvin Nilsen  <kelvin@gcc.gnu.org>
 
        * gcc.target/powerpc/swaps-p8-30.c: Exchange the order of dg-do
diff --git a/gcc/testsuite/gcc.target/i386/pr81481.c b/gcc/testsuite/gcc.target/i386/pr81481.c
new file mode 100644 (file)
index 0000000..a5b936f
--- /dev/null
@@ -0,0 +1,18 @@
+/* { dg-do compile } */
+/* { dg-require-effective-target ssse3 } */
+/* { dg-options "-O2 -fpic -mssse3" } */
+/* { dg-final { scan-assembler-not "pshufb\[ \t\]\\(%esp\\)" } } */
+#include <immintrin.h>
+
+extern const signed char c[31] __attribute__((visibility("hidden")));
+
+__m128i f(__m128i *x, void *v)
+{
+  int i;
+  asm("# %0" : "=r"(i));
+  __m128i t = _mm_loadu_si128((void*)&c[i]);
+  __m128i xx = *x;
+  xx =  _mm_shuffle_epi8(xx, t);
+  asm("# %0 %1 %2" : "+x"(xx) : "r"(c), "r"(i));
+  return xx;
+}