diff options
author | Olga Makhotina <olga.makhotina@intel.com> | 2018-06-07 11:07:05 +0000 |
---|---|---|
committer | Sebastian Peryt <speryt@gcc.gnu.org> | 2018-06-07 13:07:05 +0200 |
commit | a548a5a1d6bbaeca98787f11f9ff193be1a8cd44 (patch) | |
tree | 30d15d00259f4b44421b2a7f07cd118beb502796 /gcc/config.gcc | |
parent | cef87b05f2114ffc9aad85610eee0ec434ee5703 (diff) | |
download | gcc-a548a5a1d6bbaeca98787f11f9ff193be1a8cd44.zip gcc-a548a5a1d6bbaeca98787f11f9ff193be1a8cd44.tar.gz gcc-a548a5a1d6bbaeca98787f11f9ff193be1a8cd44.tar.bz2 |
config.gcc: Support "tremont".
2018-06-07 Olga Makhotina <olga.makhotina@intel.com>
gcc/
* config.gcc: Support "tremont".
* config/i386/driver-i386.c (host_detect_local_cpu): Detect "tremont".
* config/i386/i386-c.c (ix86_target_macros_internal): Handle
PROCESSOR_TREMONT.
* config/i386/i386.c (m_TREMONT): Define.
(processor_target_table): Add "tremont".
(PTA_TREMONT): Define.
(ix86_lea_outperforms): Add TARGET_TREMONT.
(get_builtin_code_for_version): Handle PROCESSOR_TREMONT.
(fold_builtin_cpu): Add M_INTEL_TREMONT, replace M_INTEL_GOLDMONT
and M_INTEL_GOLDMONT_PLUS.
(fold_builtin_cpu): Add "tremont".
(ix86_add_stmt_cost): Add TARGET_TREMONT.
(ix86_option_override_internal): Add "tremont".
* config/i386/i386.h (processor_costs): Define TARGET_TREMONT.
(processor_type): Add PROCESSOR_TREMONT.
* config/i386/x86-tune.def: Add m_TREMONT.
* doc/invoke.texi: Add tremont as x86 -march=/-mtune= CPU type.
gcc/testsuite/
* gcc.target/i386/funcspec-56.inc: Test arch=tremont.
libgcc/
* config/i386/cpuinfo.h (processor_types): Add INTEL_TREMONT.
From-SVN: r261270
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index c3aecbf..8b2fd90 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -650,7 +650,7 @@ bdver3 bdver4 znver1 btver1 btver2 k8 k8-sse3 opteron opteron-sse3 nocona \ core2 corei7 corei7-avx core-avx-i core-avx2 atom slm nehalem westmere \ sandybridge ivybridge haswell broadwell bonnell silvermont knl knm \ skylake-avx512 cannonlake icelake-client icelake-server skylake goldmont \ -goldmont-plus x86-64 native" +goldmont-plus tremont x86-64 native" # Additional x86 processors supported by --with-cpu=. Each processor # MUST be separated by exactly one space. |