From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/
Date: Tue, 31 Mar 2020 18:38:57 +0000 (UTC) [thread overview]
Message-ID: <1585679903.391ec5099ee6d0c678943b70641d2b3e3c82ced4.mattst88@gentoo> (raw)
commit: 391ec5099ee6d0c678943b70641d2b3e3c82ced4
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 31 14:57:20 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Mar 31 18:38:23 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=391ec509
catalyst: Enable and fix CPU_FLAGS_X86
In commit be6d7f0b7f0a (use profile for CPU_FLAGS_X86 where appropriate)
we disabled setting CPU_FLAGS_X86 to avoid overriding the profile's
defaults (and in some cases, overriding incorrectly).
While that is undoubtedly the correct thing to do for the generic
classes (e.g., arch_amd64) it does not make sense for the classes
specific to a particular microarchitecture, unless we expect the
defaults of CPU_FLAGS_X86 to change in the future, which seems highly
unlikely.
It also is the wrong thing to do for x86, which does not have a default
CPU_FLAGS_X86.
Fixes: be6d7f0b7f0a (use profile for CPU_FLAGS_X86 where appropriate)
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/arch/amd64.py | 14 +++++---------
catalyst/arch/x86.py | 13 ++++++-------
2 files changed, 11 insertions(+), 16 deletions(-)
diff --git a/catalyst/arch/amd64.py b/catalyst/arch/amd64.py
index 73bf8b18..980be552 100644
--- a/catalyst/arch/amd64.py
+++ b/catalyst/arch/amd64.py
@@ -11,51 +11,47 @@ class arch_amd64(generic_amd64):
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -pipe"
- #lines like this appears to be trying to set the profile default, better to use the profile
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
class arch_nocona(generic_amd64):
"improved version of Intel Pentium 4 CPU with 64-bit extensions, MMX, SSE, SSE2 and SSE3 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=nocona -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2","sse3"]}
-# Requires gcc 4.3 to use this class
class arch_core2(generic_amd64):
"Intel Core 2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=core2 -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","ssse3"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2","sse3","ssse3"]}
class arch_k8(generic_amd64):
"generic k8, opteron and athlon64 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=k8 -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","3dnow"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse","sse2"]}
class arch_k8_sse3(generic_amd64):
"improved versions of k8, opteron and athlon64 with SSE3 support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=k8-sse3 -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","3dnow"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse","sse2","sse3"]}
class arch_amdfam10(generic_amd64):
"AMD Family 10h core based CPUs with x86-64 instruction set support"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=amdfam10 -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2","3dnow"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse","sse2","sse3","sse4a"]}
class arch_x32(generic_amd64):
"builder class for generic x32 (Intel and AMD)"
def __init__(self,myspec):
generic_amd64.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
def register():
"inform main catalyst program of the contents of this plugin"
diff --git a/catalyst/arch/x86.py b/catalyst/arch/x86.py
index de9142f7..4e50fea9 100644
--- a/catalyst/arch/x86.py
+++ b/catalyst/arch/x86.py
@@ -63,29 +63,28 @@ class arch_pentium3(generic_x86):
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=pentium3 -pipe"
- self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse"]}
class arch_pentium4(generic_x86):
"Intel Pentium 4 CPU with MMX, SSE and SSE2 support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=pentium4 -pipe"
- #lines like this appears to be trying to set the profile default, better to use the profile
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2"]}
class arch_pentium_m(generic_x86):
"Intel Pentium M CPU with MMX, SSE and SSE2 support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=pentium-m -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2"]}
class arch_prescott(generic_x86):
"improved version of Intel Pentium 4 CPU with MMX, SSE, SSE2 and SSE3 support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=prescott -pipe"
- #self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","sse","sse2"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","sse","sse2","sse3"]}
class arch_k6(generic_x86):
"AMD K6 CPU with MMX support"
@@ -106,14 +105,14 @@ class arch_athlon(generic_x86):
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=athlon -pipe"
- self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext"]}
class arch_athlon_xp(generic_x86):
"improved AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and full SSE support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=athlon-xp -pipe"
- self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow","sse"]}
+ self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","mmxext","3dnow","3dnowext","sse"]}
def register():
"Inform main catalyst program of the contents of this plugin."
next reply other threads:[~2020-03-31 18:39 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-31 18:38 Matt Turner [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-04-14 18:29 [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/ Matt Turner
2020-04-14 18:29 Matt Turner
2020-04-14 18:29 Matt Turner
2020-04-14 18:29 Matt Turner
2020-04-14 18:29 Matt Turner
2020-04-11 20:27 Matt Turner
2020-04-11 20:27 Matt Turner
2020-04-11 20:27 Matt Turner
2020-04-11 20:27 Matt Turner
2020-04-11 20:27 Matt Turner
2020-03-29 17:48 Matt Turner
2019-10-20 0:00 Matt Turner
2019-10-19 23:25 Matt Turner
2019-08-30 3:08 Matt Turner
2019-08-26 16:48 Matt Turner
2019-04-24 22:39 Matt Turner
2016-04-21 5:37 Mike Frysinger
2015-09-22 22:38 Anthony G. Basile
2015-09-09 16:21 Richard Farina
2015-08-31 17:51 Richard Farina
2015-05-24 0:08 Brian Dolbec
2014-04-02 20:09 [gentoo-commits] proj/catalyst:pending " Brian Dolbec
2014-04-02 20:09 ` [gentoo-commits] proj/catalyst:master " Brian Dolbec
2014-03-22 22:25 [gentoo-commits] proj/catalyst:pending " Brian Dolbec
2014-03-02 22:55 ` [gentoo-commits] proj/catalyst:master " Brian Dolbec
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=1585679903.391ec5099ee6d0c678943b70641d2b3e3c82ced4.mattst88@gentoo \
--to=mattst88@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/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