public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH, i386]: fix PR80569, "shrx" instruction generated in 16-bit mode
@ 2017-07-23 10:32 Uros Bizjak
  0 siblings, 0 replies; only message in thread
From: Uros Bizjak @ 2017-07-23 10:32 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 513 bytes --]

Hello!

We have to prevent BMI, BMI2 and TBM instructions in -m16 mode.

2017-07-23  Uros Bizjak  <ubizjak@gmail.com>

    PR target/80569
    * config/i386/i386.c (ix86_option_override_internal): Disable
    BMI, BMI2 and TBM instructions for -m16.

testsuite/ChangeLog:

2017-07-23  Uros Bizjak  <ubizjak@gmail.com>

    PR target/80569
    * gcc.target/i386/pr80569.c: New test.

Bootstrapped and regression tested on x86_64-linux-gnu {,-m32}.

Committed to mainline, will backport to release branches.

Uros.

[-- Attachment #2: p.diff.txt --]
[-- Type: text/plain, Size: 1251 bytes --]

Index: config/i386/i386.c
===================================================================
--- config/i386/i386.c	(revision 250457)
+++ config/i386/i386.c	(working copy)
@@ -6284,6 +6284,12 @@ ix86_option_override_internal (bool main_args_p,
     opts->x_ix86_isa_flags
       |= OPTION_MASK_ISA_LZCNT & ~opts->x_ix86_isa_flags_explicit;
 
+  /* Disable BMI, BMI2 and TBM instructions for -m16.  */
+  if (TARGET_16BIT_P(opts->x_ix86_isa_flags))
+    opts->x_ix86_isa_flags
+      &= ~((OPTION_MASK_ISA_BMI | OPTION_MASK_ISA_BMI2 | OPTION_MASK_ISA_TBM)
+	   & ~opts->x_ix86_isa_flags_explicit);
+
   /* Validate -mpreferred-stack-boundary= value or default it to
      PREFERRED_STACK_BOUNDARY_DEFAULT.  */
   ix86_preferred_stack_boundary = PREFERRED_STACK_BOUNDARY_DEFAULT;
Index: testsuite/gcc.target/i386/pr80569.c
===================================================================
--- testsuite/gcc.target/i386/pr80569.c	(nonexistent)
+++ testsuite/gcc.target/i386/pr80569.c	(working copy)
@@ -0,0 +1,9 @@
+/* PR target/80569 */
+/* { dg-do assemble } */
+/* { dg-options "-O2 -m16 -march=haswell" } */
+
+void load_kernel(void *setup_addr)
+{
+    unsigned int seg = (unsigned int)setup_addr >> 4;
+    asm("movl %0, %%es" : : "r"(seg));
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-07-23 10:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-23 10:32 [PATCH, i386]: fix PR80569, "shrx" instruction generated in 16-bit mode Uros Bizjak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).