Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-15 Thread Uros Bizjak
On Thu, Feb 14, 2019 at 1:33 PM H.J. Lu wrote: > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > by default with TARGET_MMX_WITH_SSE. > > For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in 64-bit > mode since MMX intrinsics can be emulated wit SSE. > > gcc

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread H.J. Lu
On Thu, Feb 14, 2019 at 3:21 PM Uros Bizjak wrote: > > On Fri, Feb 15, 2019 at 12:14 AM H.J. Lu wrote: > > > > > > > > > > gcc/ > > > > > > > > > > > > > > > > > > PR target/89021 > > > > > > > > > * config/i386/i386-builtin.def: Enable MMX intrinsics > > > > > > > > > with > > >

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Uros Bizjak
On Fri, Feb 15, 2019 at 12:14 AM H.J. Lu wrote: > > > > > > > > gcc/ > > > > > > > > > > > > > > > > PR target/89021 > > > > > > > > * config/i386/i386-builtin.def: Enable MMX intrinsics > > > > > > > > with > > > > > > > > SSE/SSE2/SSSE3. > > > > > > > > * config

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread H.J. Lu
On Thu, Feb 14, 2019 at 3:12 PM H.J. Lu wrote: > > On Thu, Feb 14, 2019 at 2:57 PM Uros Bizjak wrote: > > > > On Thu, Feb 14, 2019 at 10:02 PM H.J. Lu wrote: > > > > > > > > > gcc/ > > > > > > > > > > > > > > PR target/89021 > > > > > > > * config/i386/i386-builtin.def: Enable MM

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread H.J. Lu
On Thu, Feb 14, 2019 at 2:57 PM Uros Bizjak wrote: > > On Thu, Feb 14, 2019 at 10:02 PM H.J. Lu wrote: > > > > > > > gcc/ > > > > > > > > > > > > PR target/89021 > > > > > > * config/i386/i386-builtin.def: Enable MMX intrinsics with > > > > > > SSE/SSE2/SSSE3. > > > > > >

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Uros Bizjak
On Thu, Feb 14, 2019 at 10:02 PM H.J. Lu wrote: > > > > > gcc/ > > > > > > > > > > PR target/89021 > > > > > * config/i386/i386-builtin.def: Enable MMX intrinsics with > > > > > SSE/SSE2/SSSE3. > > > > > * config/i386/i386.c (ix86_option_override_internal): Don't >

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread H.J. Lu
On Thu, Feb 14, 2019 at 12:54 PM Uros Bizjak wrote: > > On Thu, Feb 14, 2019 at 9:50 PM H.J. Lu wrote: > > > > On Thu, Feb 14, 2019 at 12:07 PM Uros Bizjak wrote: > > > > > > On Thu, Feb 14, 2019 at 1:33 PM H.J. Lu wrote: > > > > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Uros Bizjak
On Thu, Feb 14, 2019 at 9:50 PM H.J. Lu wrote: > > On Thu, Feb 14, 2019 at 12:07 PM Uros Bizjak wrote: > > > > On Thu, Feb 14, 2019 at 1:33 PM H.J. Lu wrote: > > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > > > by default with TARGET_MMX_WITH_SSE. > > > > >

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread H.J. Lu
On Thu, Feb 14, 2019 at 12:07 PM Uros Bizjak wrote: > > On Thu, Feb 14, 2019 at 1:33 PM H.J. Lu wrote: > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > > by default with TARGET_MMX_WITH_SSE. > > > > For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Uros Bizjak
On Thu, Feb 14, 2019 at 1:33 PM H.J. Lu wrote: > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > by default with TARGET_MMX_WITH_SSE. > > For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in 64-bit > mode since MMX intrinsics can be emulated wit SSE. > > gcc

[PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread H.J. Lu
Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA by default with TARGET_MMX_WITH_SSE. For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in 64-bit mode since MMX intrinsics can be emulated wit SSE. gcc/ PR target/89021 * config/i386/i386-builtin.

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Uros Bizjak
On Thu, Feb 14, 2019 at 10:44 AM Richard Biener wrote: > > On Thu, Feb 14, 2019 at 9:16 AM Uros Bizjak wrote: > > > > On Thu, Feb 14, 2019 at 12:03 AM H.J. Lu wrote: > > > > > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable > > > > > > > MMX ISA > > > > > > > by default

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Richard Biener
On Thu, Feb 14, 2019 at 9:16 AM Uros Bizjak wrote: > > On Thu, Feb 14, 2019 at 12:03 AM H.J. Lu wrote: > > > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable > > > > > > MMX ISA > > > > > > by default with TARGET_MMX_WITH_SSE. > > > > > > > > > > > > For pr82483-1.c and p

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-14 Thread Uros Bizjak
On Thu, Feb 14, 2019 at 12:03 AM H.J. Lu wrote: > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX > > > > > ISA > > > > > by default with TARGET_MMX_WITH_SSE. > > > > > > > > > > For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in 64-bit > > > > > mode si

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-13 Thread H.J. Lu
On Wed, Feb 13, 2019 at 2:51 PM Uros Bizjak wrote: > > On Wed, Feb 13, 2019 at 9:21 PM H.J. Lu wrote: > > > > On Tue, Feb 12, 2019 at 4:07 AM Uros Bizjak wrote: > > > > > > On Mon, Feb 11, 2019 at 11:55 PM H.J. Lu wrote: > > > > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-13 Thread Uros Bizjak
On Wed, Feb 13, 2019 at 9:21 PM H.J. Lu wrote: > > On Tue, Feb 12, 2019 at 4:07 AM Uros Bizjak wrote: > > > > On Mon, Feb 11, 2019 at 11:55 PM H.J. Lu wrote: > > > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > > > by default with TARGET_MMX_WITH_SSE. > > > > >

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-13 Thread H.J. Lu
On Tue, Feb 12, 2019 at 4:07 AM Uros Bizjak wrote: > > On Mon, Feb 11, 2019 at 11:55 PM H.J. Lu wrote: > > > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > > by default with TARGET_MMX_WITH_SSE. > > > > For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in

Re: [PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-12 Thread Uros Bizjak
On Mon, Feb 11, 2019 at 11:55 PM H.J. Lu wrote: > > Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA > by default with TARGET_MMX_WITH_SSE. > > For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in 64-bit > mode since MMX intrinsics can be emulated wit SSE. > > gc

[PATCH 37/40] i386: Allow MMX intrinsic emulation with SSE

2019-02-11 Thread H.J. Lu
Allow MMX intrinsic emulation with SSE/SSE2/SSSE3. Don't enable MMX ISA by default with TARGET_MMX_WITH_SSE. For pr82483-1.c and pr82483-2.c, "-mssse3 -mno-mmx" compiles in 64-bit mode since MMX intrinsics can be emulated wit SSE. gcc/ PR target/89021 * config/i386/i386-builtin.