Properly handle -miamcu and -march=lakemont
authorH.J. Lu <hongjiu.lu@intel.com>
Tue, 20 Oct 2015 15:12:37 +0000 (15:12 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Tue, 20 Oct 2015 15:12:37 +0000 (08:12 -0700)
-miamcu specifies how parameters are passed to functions and how value
is returned from a function.  Inside function,  we can use instructions
supported by -march=XXX.  -miamcu -march=haswell can generate x87, SSE
and AVX instructions as long as the IA MCU psABI is followed.  But since
Lakemont processor doesn't support x87 instructions, we shouldn't
generate x87 instructions with -march=lakemont.  This patch separates
code generation from -miamcu and makes -march=lakemont not to generate
x87 instructions.

gcc/

PR target/67963
PR target/67985
* common/config/i386/i386-common.c (ix86_handle_option): Remove
OPT_miamcu handling.
* config/i386/i386.c (PTA_NO_80387): New macro.
(processor_alias_table): Add PTA_NO_80387 to lakemont.
(ix86_option_override_internal): Update MASK_80387 from
PTA_NO_80387.  Don't warn x87/MMX/SSE/AVX for -miamcu.  Warn
SSE math only if 80387 is supported.  Don't change
MASK_FLOAT_RETURNS.
(ix86_valid_target_attribute_tree): Enable FPMATH_387 only if
80387 is supported.
* config/i386/i386.h (TARGET_FLOAT_RETURNS_IN_80387): True only
if TARGET_80387 is true and TARGET_IAMCU is false.
(TARGET_FLOAT_RETURNS_IN_80387_P): True only if TARGET_80387_P
is true and TARGET_IAMCU_P is false.

gcc/testsuite/

PR target/67963
PR target/67985
* gcc.target/i386/pr67963-1.c: New test.
* gcc.target/i386/pr67963-2.c: Likewise.
* gcc.target/i386/pr67963-3.c: Likewise.
* gcc.target/i386/pr67985-1.c: Likewise.
* gcc.target/i386/pr67985-2.c: Likewise.
* gcc.target/i386/pr67985-3.c: Likewise.

From-SVN: r229082

gcc/ChangeLog
gcc/common/config/i386/i386-common.c
gcc/config/i386/i386.c
gcc/config/i386/i386.h
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr67963-1.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr67963-2.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr67963-3.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr67985-1.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr67985-2.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr67985-3.c [new file with mode: 0644]

index f79e71d5483cd6d72844619643cdc5eb66c8fb44..e3394723d7de1ec355bf5c1f286e2496d8e3daea 100644 (file)
@@ -1,3 +1,22 @@
+2015-10-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR target/67963
+       PR target/67985
+       * common/config/i386/i386-common.c (ix86_handle_option): Remove
+       OPT_miamcu handling.
+       * config/i386/i386.c (PTA_NO_80387): New macro.
+       (processor_alias_table): Add PTA_NO_80387 to lakemont.
+       (ix86_option_override_internal): Update MASK_80387 from
+       PTA_NO_80387.  Don't warn x87/MMX/SSE/AVX for -miamcu.  Warn
+       SSE math only if 80387 is supported.  Don't change
+       MASK_FLOAT_RETURNS.
+       (ix86_valid_target_attribute_tree): Enable FPMATH_387 only if
+       80387 is supported.
+       * config/i386/i386.h (TARGET_FLOAT_RETURNS_IN_80387): True only
+       if TARGET_80387 is true and TARGET_IAMCU is false.
+       (TARGET_FLOAT_RETURNS_IN_80387_P): True only if TARGET_80387_P
+       is true and TARGET_IAMCU_P is false.
+
 2015-10-20  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/68017
index 79b2472dc750973c30a319d1e8c7b9fbfba41b02..0f8c3e1df04c9274640dfefd849f6fad9b9822c6 100644 (file)
@@ -223,7 +223,7 @@ along with GCC; see the file COPYING3.  If not see
 
 bool
 ix86_handle_option (struct gcc_options *opts,
-                   struct gcc_options *opts_set,
+                   struct gcc_options *opts_set ATTRIBUTE_UNUSED,
                    const struct cl_decoded_option *decoded,
                    location_t loc)
 {
@@ -232,20 +232,6 @@ ix86_handle_option (struct gcc_options *opts,
 
   switch (code)
     {
-    case OPT_miamcu:
-      if (value)
-       {
-         /* Turn off x87/MMX/SSE/AVX codegen for -miamcu.  */
-         opts->x_target_flags &= ~MASK_80387;
-         opts_set->x_target_flags |= MASK_80387;
-         opts->x_ix86_isa_flags &= ~(OPTION_MASK_ISA_MMX_UNSET
-                                     | OPTION_MASK_ISA_SSE_UNSET);
-         opts->x_ix86_isa_flags_explicit |= (OPTION_MASK_ISA_MMX_UNSET
-                                             | OPTION_MASK_ISA_SSE_UNSET);
-
-       }
-      return true;
-
     case OPT_mmmx:
       if (value)
        {
index a4f4b6fb8ab50b0074d8cc8566c7be80ba82a325..c800145fa3c8fefd42b9dad88ad32ff8bf56373a 100644 (file)
@@ -4295,6 +4295,7 @@ ix86_option_override_internal (bool main_args_p,
 #define PTA_PCOMMIT            (HOST_WIDE_INT_1 << 56)
 #define PTA_MWAITX             (HOST_WIDE_INT_1 << 57)
 #define PTA_CLZERO             (HOST_WIDE_INT_1 << 58)
+#define PTA_NO_80387           (HOST_WIDE_INT_1 << 59)
 
 #define PTA_CORE2 \
   (PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_SSSE3 \
@@ -4339,7 +4340,7 @@ ix86_option_override_internal (bool main_args_p,
       {"i486", PROCESSOR_I486, CPU_NONE, 0},
       {"i586", PROCESSOR_PENTIUM, CPU_PENTIUM, 0},
       {"pentium", PROCESSOR_PENTIUM, CPU_PENTIUM, 0},
-      {"lakemont", PROCESSOR_LAKEMONT, CPU_PENTIUM, 0},
+      {"lakemont", PROCESSOR_LAKEMONT, CPU_PENTIUM, PTA_NO_80387},
       {"pentium-mmx", PROCESSOR_PENTIUM, CPU_PENTIUM, PTA_MMX},
       {"winchip-c6", PROCESSOR_I486, CPU_NONE, PTA_MMX},
       {"winchip2", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW | PTA_PRFCHW},
@@ -4920,6 +4921,13 @@ ix86_option_override_internal (bool main_args_p,
            && !(opts->x_ix86_isa_flags_explicit & OPTION_MASK_ISA_MWAITX))
          opts->x_ix86_isa_flags |= OPTION_MASK_ISA_MWAITX;
 
+       if (!(opts_set->x_target_flags & MASK_80387))
+         {
+           if (processor_alias_table[i].flags & PTA_NO_80387)
+             opts->x_target_flags &= ~MASK_80387;
+           else
+             opts->x_target_flags |= MASK_80387;
+         }
        break;
       }
 
@@ -4929,20 +4937,6 @@ ix86_option_override_internal (bool main_args_p,
   if (TARGET_X32 && (ix86_isa_flags & OPTION_MASK_ISA_MPX))
     error ("Intel MPX does not support x32");
 
-  if (TARGET_IAMCU_P (opts->x_target_flags))
-    {
-      /* Verify that x87/MMX/SSE/AVX is off for -miamcu.  */
-      if (TARGET_80387_P (opts->x_target_flags))
-       sorry ("X87 FPU isn%'t supported in Intel MCU psABI");
-      else if ((opts->x_ix86_isa_flags & (OPTION_MASK_ISA_MMX
-                                         | OPTION_MASK_ISA_SSE
-                                         | OPTION_MASK_ISA_AVX)))
-       sorry ("%s isn%'t supported in Intel MCU psABI",
-              TARGET_MMX_P (opts->x_ix86_isa_flags)
-              ? "MMX"
-              : TARGET_SSE_P (opts->x_ix86_isa_flags) ? "SSE" : "AVX");
-    }
-
   if (!strcmp (opts->x_ix86_arch_string, "generic"))
     error ("generic CPU can be used only for %stune=%s %s",
           prefix, suffix, sw);
@@ -5226,8 +5220,11 @@ ix86_option_override_internal (bool main_args_p,
        {
          if (!TARGET_SSE_P (opts->x_ix86_isa_flags))
            {
-             warning (0, "SSE instruction set disabled, using 387 arithmetics");
-             opts->x_ix86_fpmath = FPMATH_387;
+             if (TARGET_80387_P (opts->x_target_flags))
+               {
+                 warning (0, "SSE instruction set disabled, using 387 arithmetics");
+                 opts->x_ix86_fpmath = FPMATH_387;
+               }
            }
          else if ((opts->x_ix86_fpmath & FPMATH_387)
                   && !TARGET_80387_P (opts->x_target_flags))
@@ -5253,10 +5250,6 @@ ix86_option_override_internal (bool main_args_p,
   else
     opts->x_ix86_fpmath = TARGET_FPMATH_DEFAULT_P (opts->x_ix86_isa_flags);
 
-  /* If the i387 is disabled, then do not return values in it. */
-  if (!TARGET_80387_P (opts->x_target_flags))
-    opts->x_target_flags &= ~MASK_FLOAT_RETURNS;
-
   /* Use external vectorized library in vectorizing intrinsics.  */
   if (opts_set->x_ix86_veclibabi_type)
     switch (opts->x_ix86_veclibabi_type)
@@ -6155,7 +6148,11 @@ ix86_valid_target_attribute_tree (tree args,
       else if (!TARGET_64BIT_P (opts->x_ix86_isa_flags)
               && TARGET_SSE_P (opts->x_ix86_isa_flags))
        {
-         opts->x_ix86_fpmath = (enum fpmath_unit) (FPMATH_SSE | FPMATH_387);
+         if (TARGET_80387_P (opts->x_target_flags))
+           opts->x_ix86_fpmath = (enum fpmath_unit) (FPMATH_SSE
+                                                     | FPMATH_387);
+         else
+           opts->x_ix86_fpmath = (enum fpmath_unit) FPMATH_SSE;
          opts_set->x_ix86_fpmath = (enum fpmath_unit) 1;
        }
 
index 435312f0afca1efd586b960ce257f1155045762d..be96c75df77a9ca51e2c7df2d26529b8b2399168 100644 (file)
@@ -295,8 +295,12 @@ extern const struct processor_costs ix86_size_cost;
   (TARGET_64BIT_P(x) && TARGET_SSE_P(x) ? FPMATH_SSE : FPMATH_387)
 #endif
 
-#define TARGET_FLOAT_RETURNS_IN_80387 TARGET_FLOAT_RETURNS
-#define TARGET_FLOAT_RETURNS_IN_80387_P(x) TARGET_FLOAT_RETURNS_P(x)
+/* If the i387 is disabled or -miamcu is used , then do not return
+   values in it. */
+#define TARGET_FLOAT_RETURNS_IN_80387 \
+  (TARGET_FLOAT_RETURNS && TARGET_80387 && !TARGET_IAMCU)
+#define TARGET_FLOAT_RETURNS_IN_80387_P(x) \
+  (TARGET_FLOAT_RETURNS_P(x) && TARGET_80387_P(x) && !TARGET_IAMCU_P(x))
 
 /* 64bit Sledgehammer mode.  For libgcc2 we make sure this is a
    compile-time constant.  */
index 6a56ec497fe55c3fdf5373a77032b5c179b2605e..7d4c6f83276c40a4e7da049fe5803905232e4247 100644 (file)
@@ -1,3 +1,14 @@
+2015-10-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR target/67963
+       PR target/67985
+       * gcc.target/i386/pr67963-1.c: New test.
+       * gcc.target/i386/pr67963-2.c: Likewise.
+       * gcc.target/i386/pr67963-3.c: Likewise.
+       * gcc.target/i386/pr67985-1.c: Likewise.
+       * gcc.target/i386/pr67985-2.c: Likewise.
+       * gcc.target/i386/pr67985-3.c: Likewise.
+
 2015-10-20  Alan Lawrence  <alan.lawrence@arm.com>
 
        * gcc.target/aarch64/vdiv_f.c: Use __builtin_nan.
diff --git a/gcc/testsuite/gcc.target/i386/pr67963-1.c b/gcc/testsuite/gcc.target/i386/pr67963-1.c
new file mode 100644 (file)
index 0000000..1b6e596
--- /dev/null
@@ -0,0 +1,9 @@
+/* { dg-do compile { target ia32 } } */
+/* { dg-options "-O2 -march=lakemont" } */
+
+float foo (void)
+{
+  return 0.0f;
+}
+
+/* { dg-final { scan-assembler-not "fldz" } } */
diff --git a/gcc/testsuite/gcc.target/i386/pr67963-2.c b/gcc/testsuite/gcc.target/i386/pr67963-2.c
new file mode 100644 (file)
index 0000000..76c929d
--- /dev/null
@@ -0,0 +1,11 @@
+/* { dg-do compile { target ia32 } } */
+/* { dg-options "-O2 -march=pentium" } */
+
+float
+__attribute__((target("arch=lakemont")))
+foo (void)
+{
+  return 0.0f;
+}
+
+/* { dg-final { scan-assembler-not "fldz" } } */
diff --git a/gcc/testsuite/gcc.target/i386/pr67963-3.c b/gcc/testsuite/gcc.target/i386/pr67963-3.c
new file mode 100644 (file)
index 0000000..b8e1900
--- /dev/null
@@ -0,0 +1,11 @@
+/* { dg-do compile { target ia32 } } */
+/* { dg-options "-O2 -march=lakemont" } */
+
+float
+__attribute__((target("arch=pentium")))
+foo (void)
+{
+  return 0.0f;
+}
+
+/* { dg-final { scan-assembler "fldz" } } */
diff --git a/gcc/testsuite/gcc.target/i386/pr67985-1.c b/gcc/testsuite/gcc.target/i386/pr67985-1.c
new file mode 100644 (file)
index 0000000..28d0f86
--- /dev/null
@@ -0,0 +1,11 @@
+/* { dg-do compile { target ia32 } } */
+/* { dg-options "-O2 -miamcu -msse2 -mfpmath=sse -mtune=generic" } */
+
+float
+foo (float x, float y)
+{
+  return x * y;
+}
+
+/* { dg-final { scan-assembler "mulss" } } */
+/* { dg-final { scan-assembler "movd\[ \t\]%xmm\[0-7\], %eax" } } */
diff --git a/gcc/testsuite/gcc.target/i386/pr67985-2.c b/gcc/testsuite/gcc.target/i386/pr67985-2.c
new file mode 100644 (file)
index 0000000..9c7a25a
--- /dev/null
@@ -0,0 +1,13 @@
+/* { dg-do compile { target ia32 } } */
+/* { dg-options "-O2 -miamcu -msse2 -mfpmath=sse -mtune=generic" } */
+
+float
+__attribute__((target("arch=lakemont")))
+foo (float x, float y)
+{
+  return x * y;
+}
+
+/* { dg-final { scan-assembler-not "mulss" } } */
+/* { dg-final { scan-assembler-not "movl\[ \t\].*, %eax" } } */
+/* { dg-final { scan-assembler "call\[ \t\]__mulsf3" } } */
diff --git a/gcc/testsuite/gcc.target/i386/pr67985-3.c b/gcc/testsuite/gcc.target/i386/pr67985-3.c
new file mode 100644 (file)
index 0000000..58c379c
--- /dev/null
@@ -0,0 +1,12 @@
+/* { dg-do compile { target ia32 } } */
+/* { dg-options "-O2 -miamcu -march=lakemont" } */
+
+float
+__attribute__((target("arch=haswell")))
+foo (float x, float y)
+{
+  return x * y;
+}
+
+/* { dg-final { scan-assembler "mulss" } } */
+/* { dg-final { scan-assembler "movd\[ \t\]%xmm\[0-7\], %eax" } } */