public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jonathan Wakely <jwakely.gcc@gmail.com>
To: Stefan Kanthak <stefan.kanthak@nexgo.de>
Cc: Jakub Jelinek <jakub@redhat.com>,
	gcc@gnu.org, Andrew Pinski <pinskia@gmail.com>
Subject: Re: Will GCC eventually support SSE2 or SSE4.1?
Date: Fri, 26 May 2023 15:07:59 +0100	[thread overview]
Message-ID: <CAH6eHdS1g6pkgXps3a94i6r-r6nSjyutn9HN3f0QeHUEP9qntA@mail.gmail.com> (raw)
In-Reply-To: <C18EFE968CF04AE8AA1BABB0005426AB@H270>

On Fri, 26 May 2023 at 14:55, Stefan Kanthak <stefan.kanthak@nexgo.de> wrote:
>
> "Jakub Jelinek" <jakub@redhat.com> wrote:
>
> > On Fri, May 26, 2023 at 02:19:54PM +0200, Stefan Kanthak wrote:
> >> > I find it very SURPRISING that you're only just learning the basics of
> >> > how to use gcc NOW, after YELLING about all the OUCH.
> >>
> >> I'm NOT surprised that you don't grok it!
> >>
> >> gcc -msse4.1 -m32 -march=core2 ...
> >>
> >> Which -m* options win here?
> >> Do -m32 or -march=core2 override -msse4.1?
> >
> > Jonathan told you what to use to find it out (-Q --help=target).
> > -m32/-m64/-mx32/-m16 options don't affect the ISA, they switch the
> > main ABI (ilp32 32-bit code, lp64 64-bit code, ilp32 code running
> > in 64-bit mode, 16-bit code).
>
> PLEASE read your own documentation and specify ANY:
>
> | -m32
> ...
> |    generates code that runs on any i386 system.
>
> The first example of my initial posts falsifies "runs on any i386 system"!

Which is why that word "any" has been acknowledged as a bug:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109954
The word "any" is wrong. We know it's wrong. We've acknowledged it's
wrong. I've even proposed wording to fix it in that bug report.
What part of this is still hard to understand?


>
> > -march= options selects the ISA base (which CPU family to compile form
> > as minimum), if you don't supply it, the default from how gcc has been
> > configured is selected (e.g. if you configure --with-arch-32=core2, then
> > that will be the -m32 default, if you configure --with-arch=x86-64, that
> > will be the -march default if --with-arch-32= isn't specified, etc.).
> > If more than one -march= is specified, the last one wins.
>
> But "the last one wins" does NOT apply to -m32 or -m<feature>: the latter
> are additive, INDEPENDENT from their position before or after -march=,
> what is NOT documented, and -m32 fails to disable all -m<feature> not
> common to ANY i386 system set before, thus contradicting the documentation.

See above.


> > And, the -mISA options then tweak the ISA set.  Most ISAs have dependencies,
> > say -msse4.1 enables -mssse3 which enables -msse3 which enables -msse2 etc.,
> > and similarly the -mno-ISA options disable what ISAs depend on it, so
> > -mno-avx disables -mno-avx2 which disables -mno-avx512f which disables ...
>
> These points are obvious.
> NOT obvious is but that -m<feature> -march=<lowerISA> does not clear any
> <feature> not supported in <lowerISA>, i.e the last one does NOT win here.

The last -march option selects the base set of instructions. The -mISA
options modify that base.

  reply	other threads:[~2023-05-26 14:08 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-26  6:46 Stefan Kanthak
2023-05-26  7:00 ` Andrew Pinski
2023-05-26  7:30   ` Jonathan Wakely
2023-05-26  7:58     ` Stefan Kanthak
2023-05-26  8:16       ` Sam James
2023-05-26  8:28       ` Jonathan Wakely
2023-05-26  8:59         ` Stefan Kanthak
2023-05-26  9:22           ` Jakub Jelinek
2023-05-26 11:28             ` Stefan Kanthak
2023-05-26 11:42               ` Jonathan Wakely
2023-05-26 12:03                 ` Stefan Kanthak
2023-05-26 12:16                   ` Jonathan Wakely
2023-05-26 12:22                     ` Stefan Kanthak
2023-05-26 13:00                       ` Mark Wielaard
2023-05-26 12:23                   ` Jonathan Wakely
2023-05-26 11:36             ` Stefan Kanthak
2023-05-26 11:45               ` Jonathan Wakely
2023-05-26 12:19                 ` Stefan Kanthak
2023-05-26 12:30                   ` Jonathan Wakely
2023-05-26 12:42                     ` Stefan Kanthak
2023-05-26 13:33                       ` Nicholas Vinson
2023-05-26 12:37                   ` Jakub Jelinek
2023-05-26 13:49                     ` Stefan Kanthak
2023-05-26 14:07                       ` Jonathan Wakely [this message]
2023-05-26 14:18                         ` Jakub Jelinek
2023-05-26 14:41                           ` Stefan Kanthak
2023-05-26 14:55                             ` Jonathan Wakely
2023-05-26 15:07                               ` Stefan Kanthak
2023-05-26 14:26                         ` Stefan Kanthak
2023-05-26 14:58                           ` Jonathan Wakely
2023-05-26 15:49                             ` Stefan Kanthak
2023-05-26 16:44                               ` David Brown
2023-05-27 18:16                                 ` Will GCC eventually support correct code compilation? Dave Blanchard
2023-05-27 18:59                                   ` Jason Merrill
2023-05-28 11:50                                   ` David Brown
2023-05-26  9:22           ` Will GCC eventually support SSE2 or SSE4.1? Jonathan Wakely
2023-05-26  8:12     ` Hagen Paul Pfeifer
2023-05-26  9:51       ` Jonathan Wakely
2023-05-26 11:34 ` Nicholas Vinson
2023-05-26 15:10 ` LIU Hao
2023-05-26 15:40   ` Stefan Kanthak
2023-05-27 18:20     ` LIU Hao
2023-05-27 18:49       ` Stefan Kanthak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAH6eHdS1g6pkgXps3a94i6r-r6nSjyutn9HN3f0QeHUEP9qntA@mail.gmail.com \
    --to=jwakely.gcc@gmail.com \
    --cc=gcc@gnu.org \
    --cc=jakub@redhat.com \
    --cc=pinskia@gmail.com \
    --cc=stefan.kanthak@nexgo.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).