diff options
author | Jan Hubicka <jh@suse.cz> | 2023-03-06 11:08:26 +0100 |
---|---|---|
committer | Jan Hubicka <jh@suse.cz> | 2023-03-06 11:08:26 +0100 |
commit | b83acefb0409056b566133f66843ead6c04b8474 (patch) | |
tree | eae729858f068ae1f970a78374c4122f5880d2de | |
parent | 67401d45972edb1c09918f9f7feea0ba00680ac4 (diff) | |
download | gcc-b83acefb0409056b566133f66843ead6c04b8474.zip gcc-b83acefb0409056b566133f66843ead6c04b8474.tar.gz gcc-b83acefb0409056b566133f66843ead6c04b8474.tar.bz2 |
Enable scatter for generic
2023-03-06 Jan Hubicka <hubicka@ucw.cz>
PR target/108429
* config/i386/x86-tune.def (X86_TUNE_USE_SCATTER_2PARTS): Enable for
generic.
(X86_TUNE_USE_SCATTER_4PARTS): Likewise.
(X86_TUNE_USE_SCATTER): Likewise.
-rw-r--r-- | gcc/config/i386/x86-tune.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/x86-tune.def b/gcc/config/i386/x86-tune.def index 3054656..9d603cc 100644 --- a/gcc/config/i386/x86-tune.def +++ b/gcc/config/i386/x86-tune.def @@ -486,7 +486,7 @@ DEF_TUNE (X86_TUNE_USE_GATHER_2PARTS, "use_gather_2parts", /* X86_TUNE_USE_SCATTER_2PARTS: Use scater instructions for vectors with 2 elements. */ DEF_TUNE (X86_TUNE_USE_SCATTER_2PARTS, "use_scatter_2parts", - ~(m_ZNVER4 | m_GENERIC)) + ~(m_ZNVER4)) /* X86_TUNE_USE_GATHER_4PARTS: Use gather instructions for vectors with 4 elements. */ @@ -496,7 +496,7 @@ DEF_TUNE (X86_TUNE_USE_GATHER_4PARTS, "use_gather_4parts", /* X86_TUNE_USE_SCATTER_4PARTS: Use scater instructions for vectors with 4 elements. */ DEF_TUNE (X86_TUNE_USE_SCATTER_4PARTS, "use_scatter_4parts", - ~(m_ZNVER4 | m_GENERIC)) + ~(m_ZNVER4)) /* X86_TUNE_USE_GATHER: Use gather instructions for vectors with 8 or more elements. */ @@ -506,7 +506,7 @@ DEF_TUNE (X86_TUNE_USE_GATHER, "use_gather", /* X86_TUNE_USE_SCATTER: Use scater instructions for vectors with 8 or more elements. */ DEF_TUNE (X86_TUNE_USE_SCATTER, "use_scatter", - ~(m_ZNVER4 | m_GENERIC)) + ~(m_ZNVER4)) /* X86_TUNE_AVOID_128FMA_CHAINS: Avoid creating loops with tight 128bit or smaller FMA chain. */ |