On 08/29/2018 01:06 PM, Richard Biener wrote: > On Mon, Aug 27, 2018 at 12:00 PM Martin Liška <mli...@suse.cz> wrote: >> >> On 08/13/2018 03:00 PM, Martin Liška wrote: >>> On 08/13/2018 02:54 PM, Ramana Radhakrishnan wrote: >>>> On Mon, Aug 13, 2018 at 1:49 PM, Martin Liška <mli...@suse.cz> wrote: >>>>> PING^1 >>>>> >>>>> On 07/24/2018 02:05 PM, Martin Liška wrote: >>>>>> Hi. >>>>>> >>>>>> I'm sending updated version of the patch. It comes up with a new target >>>>>> common hook >>>>>> that provide option completion list. It's used both in --help=target and >>>>>> with --completion >>>>>> option. I implemented support for -match and -mtune for i386 target. >>>>>> >>>>>> Patch can bootstrap on x86_64-linux-gnu and survives regression tests. >>>> >>>> >>>> Err I don't maintain the x86 backend to review this effectively. In an >>>> ideal world you would have split this into 2 patches 1 for the common >>>> parts and 1 for x86 and CC'd the relevant x86 maintainers. I'm not >>>> clear what you are looking for here from me :-/ >>> >>> Sorry, I was not clear. I would like to hear from ARM's folks that interface >>> design is fine for them? I know a global reviewer will have to approve that. >> >> I'm CC'ing Jakub and Richard who can help us with the new target hook >> infrastructure. > > +vec<const char *> > +ix86_get_valid_option_values (int option_code, const char *prefix) > +{ > > prefix isn't used - why does that not fail bootstrap?
Will add ATTRIBUTE_UNUSED. It requires documentation > that honoring prefix isn't required and callers have to deal with It's more detail described in common-target.def: 'The hook is used for options that have a non-trivial list of\ possible option values. OPTION_CODE is option code of opt_code\ enum type. PREFIX is used for bash completion and allows an implementation\ to return more specific completion based on the prefix. All string values\ should be allocated from heap memory and consumers should release them.' Should I copy it to the implementation. > that. IMHO that > makes prefix useless? ARM folks requested that, they want to do a smart filtering for bash completion. It was there request. > > Unfortunately option_proposer::build_option_suggestions isn't documented > so I don't see whether it only receives target options. If not then > > - add_misspelling_candidates (m_option_suggestions, option, > - opt_text); > + { > + vec<const char *> option_values > + = targetm_common.get_valid_option_values (i, prefix); > + if (!option_values.is_empty ()) > > this should be guarded with a check for whether this is a target > option (CL_TARGET > in flags). Good point! I wonder why misspellings are to be checked for the bash > completion case? Note that option_proposer::build_option_suggestions is shared infrastructure in between bash completion and misspellings. 2 examples: $ /xgcc -B. -march=znver2 -c /tmp/empty.c cc1: error: bad value (‘znver2’) for ‘-march=’ switch cc1: note: valid arguments to ‘-march=’ switch are: ... did you mean ‘znver1’? $ ./xgcc -B. --completion=-march=znver -march=znver1 > > I also wonder why those target options could not simply be of Enum type and > thus > be automatically handled? What a question, I asked the same one before I implemented that. It's because you have modifiers like: -march=armv8.3-a+simd+crypto+nofp for aarch64 target. For i386, it's also manually parsed because of tables that group options and various values: processor_target_table processor_alias_table I'm sending updated version of patch that I'm going to test. Martin > > Richard. > >> Martin >> >>> >>> Martin >>> >>>> >>>> Ramana >>>>>> >>>>>> Martin >>>>>> >>>>> >>> >>
>From c01199fd277330f50fe4ba057d6bdb7b944ef9e4 Mon Sep 17 00:00:00 2001 From: marxin <mli...@suse.cz> Date: Fri, 20 Jul 2018 09:58:16 +0200 Subject: [PATCH] Come up with TARGET_GET_VALID_OPTION_VALUES option hook (PR driver/83193). gcc/ChangeLog: 2018-07-24 Martin Liska <mli...@suse.cz> PR driver/83193 * common/common-target.def: Add TARGET_GET_VALID_OPTION_VALUES. * common/common-targhooks.c (default_get_valid_option_values): New function. * common/common-targhooks.h (default_get_valid_option_values): Likewise. * common/config/i386/i386-common.c: Move processor_target_table from i386.c. (ix86_get_valid_option_values): New function. (TARGET_GET_VALID_OPTION_VALUES): New macro. * config/i386/i386.c (struct ptt): Move to i386-common.c. (PTA_*): Move all defined masks into i386-common.c. (ix86_function_specific_restore): Use new processor_cost_table. * config/i386/i386.h (struct ptt): Moved from i386.c. (struct pta): Likewise. * doc/tm.texi: Document new TARGET_GET_VALID_OPTION_VALUES. * doc/tm.texi.in: Likewise. * opt-suggestions.c (option_proposer::suggest_option): Pass prefix to build_option_suggestions. (option_proposer::get_completions): Likewise. (option_proposer::build_option_suggestions): Use the new target hook. * opts.c (struct option_help_tuple): New struct. (print_filtered_help): Use the new target hook. gcc/testsuite/ChangeLog: 2018-07-24 Martin Liska <mli...@suse.cz> * gcc.dg/completion-4.c: New test. --- gcc/common/common-target.def | 10 + gcc/common/common-targhooks.c | 9 + gcc/common/common-targhooks.h | 1 + gcc/common/config/i386/i386-common.c | 267 +++++++++++++++++ gcc/config/i386/i386.c | 413 +++------------------------ gcc/config/i386/i386.h | 150 ++++++++++ gcc/doc/tm.texi | 4 + gcc/doc/tm.texi.in | 2 + gcc/opt-suggestions.c | 30 +- gcc/opt-suggestions.h | 6 +- gcc/opts.c | 33 +++ gcc/testsuite/gcc.dg/completion-4.c | 6 + 12 files changed, 554 insertions(+), 377 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/completion-4.c diff --git a/gcc/common/common-target.def b/gcc/common/common-target.def index e0afbc6af29..99d5264448a 100644 --- a/gcc/common/common-target.def +++ b/gcc/common/common-target.def @@ -80,6 +80,16 @@ DEFHOOK bool, (bool report, struct gcc_options *opts), hook_bool_bool_gcc_optionsp_false) +DEFHOOK +(get_valid_option_values, +"The hook is used for options that have a non-trivial list of\ + possible option values. OPTION_CODE is option code of opt_code\ + enum type. PREFIX is used for bash completion and allows an implementation\ + to return more specific completion based on the prefix. All string values\ + should be allocated from heap memory and consumers should release them.", + vec<const char *>, (int option_code, const char *prefix), + default_get_valid_option_values) + /* Leave the boolean fields at the end. */ /* True if unwinding tables should be generated by default. */ diff --git a/gcc/common/common-targhooks.c b/gcc/common/common-targhooks.c index b1090190664..747c7da55ca 100644 --- a/gcc/common/common-targhooks.c +++ b/gcc/common/common-targhooks.c @@ -23,6 +23,7 @@ along with GCC; see the file COPYING3. If not see #include "tm.h" #include "common/common-target.h" #include "common/common-targhooks.h" +#include "opts.h" /* Determine the exception handling mechanism for the target. */ @@ -77,6 +78,14 @@ default_target_handle_option (struct gcc_options *opts ATTRIBUTE_UNUSED, return true; } +/* Default version of TARGET_GET_VALID_OPTION_VALUES. */ + +vec<const char *> +default_get_valid_option_values (int option_code, const char *prefix) +{ + return vec<const char *> (); +} + const struct default_options empty_optimization_table[] = { { OPT_LEVELS_NONE, 0, NULL, 0 } diff --git a/gcc/common/common-targhooks.h b/gcc/common/common-targhooks.h index d290d7f3e21..4bdf8efdbe6 100644 --- a/gcc/common/common-targhooks.h +++ b/gcc/common/common-targhooks.h @@ -28,6 +28,7 @@ extern bool default_target_handle_option (struct gcc_options *, struct gcc_options *, const struct cl_decoded_option *, location_t); +extern vec<const char *> default_get_valid_option_values (int, const char *); extern const struct default_options empty_optimization_table[]; diff --git a/gcc/common/config/i386/i386-common.c b/gcc/common/config/i386/i386-common.c index 70b3c3f2fc3..1013f82b23d 100644 --- a/gcc/common/config/i386/i386-common.c +++ b/gcc/common/config/i386/i386-common.c @@ -1459,4 +1459,271 @@ i386_except_unwind_info (struct gcc_options *opts) #undef TARGET_SUPPORTS_SPLIT_STACK #define TARGET_SUPPORTS_SPLIT_STACK ix86_supports_split_stack +/* This table must be in sync with enum processor_type in i386.h. */ +const struct ptt processor_target_table[PROCESSOR_max] = +{ + /* The "0:0:8" label alignment specified for some processors generates + secondary 8-byte alignment only for those label/jump/loop targets + which have primary alignment. */ + + {"generic", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"i386", "4", "4", NULL, "4" }, + {"i486", "16", "16", "0:0:8", "16"}, + {"pentium", "16:8:8", "16:8:8", "0:0:8", "16"}, + {"lakemont", "16:8:8", "16:8:8", "0:0:8", "16"}, + {"pentiumpro", "16", "16:11:8", "0:0:8", "16"}, + {"pentium4", NULL, NULL, NULL, NULL}, + {"nocona", NULL, NULL, NULL, NULL}, + {"core2", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"nehalem", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"sandybridge", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"haswell", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"bonnell", "16", "16:8:8", "0:0:8", "16"}, + {"silvermont", "16", "16:8:8", "0:0:8", "16"}, + {"goldmont", "16", "16:8:8", "0:0:8", "16"}, + {"goldmont-plus", "16", "16:8:8", "0:0:8", "16"}, + {"tremont", "16", "16:8:8", "0:0:8", "16"}, + {"knl", "16", "16:8:8", "0:0:8", "16"}, + {"knm", "16", "16:8:8", "0:0:8", "16"}, + {"skylake", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"skylake-avx512", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"cannonlake", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"icelake-client", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"icelake-server", "16:11:8", "16:11:8", "0:0:8", "16"}, + {"intel", "16", "16:8:8", "0:0:8", "16"}, + {"geode", NULL, NULL, NULL, NULL}, + {"k6", "32:8:8", "32:8:8", "0:0:8", "32"}, + {"athlon", "16:8:8", "16:8:8", "0:0:8", "16"}, + {"k8", "16:8:8", "16:8:8", "0:0:8", "16"}, + {"amdfam10", "32:25:8", "32:8:8", "0:0:8", "32"}, + {"bdver1", "16:11:8", "16:8:8", "0:0:8", "11"}, + {"bdver2", "16:11:8", "16:8:8", "0:0:8", "11"}, + {"bdver3", "16:11:8", "16:8:8", "0:0:8", "11"}, + {"bdver4", "16:11:8", "16:8:8", "0:0:8", "11"}, + {"btver1", "16:11:8", "16:8:8", "0:0:8", "11"}, + {"btver2", "16:11:8", "16:8:8", "0:0:8", "11"}, + {"znver1", "16", "16", "0:0:8", "16"} +}; + +const pta processor_alias_table[] = +{ + {"i386", PROCESSOR_I386, CPU_NONE, 0}, + {"i486", PROCESSOR_I486, CPU_NONE, 0}, + {"i586", PROCESSOR_PENTIUM, CPU_PENTIUM, 0}, + {"pentium", PROCESSOR_PENTIUM, CPU_PENTIUM, 0}, + {"lakemont", PROCESSOR_LAKEMONT, CPU_PENTIUM, PTA_NO_80387}, + {"pentium-mmx", PROCESSOR_PENTIUM, CPU_PENTIUM, PTA_MMX}, + {"winchip-c6", PROCESSOR_I486, CPU_NONE, PTA_MMX}, + {"winchip2", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW}, + {"c3", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW}, + {"samuel-2", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW}, + {"c3-2", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_FXSR}, + {"nehemiah", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_FXSR}, + {"c7", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, + {"esther", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, + {"i686", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, 0}, + {"pentiumpro", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, 0}, + {"pentium2", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, PTA_MMX | PTA_FXSR}, + {"pentium3", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_FXSR}, + {"pentium3m", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_FXSR}, + {"pentium-m", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, + PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_FXSR}, + {"pentium4", PROCESSOR_PENTIUM4, CPU_NONE, + PTA_MMX |PTA_SSE | PTA_SSE2 | PTA_FXSR}, + {"pentium4m", PROCESSOR_PENTIUM4, CPU_NONE, + PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_FXSR}, + {"prescott", PROCESSOR_NOCONA, CPU_NONE, + PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, + {"nocona", PROCESSOR_NOCONA, CPU_NONE, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_CX16 | PTA_NO_SAHF | PTA_FXSR}, + {"core2", PROCESSOR_CORE2, CPU_CORE2, PTA_CORE2}, + {"nehalem", PROCESSOR_NEHALEM, CPU_NEHALEM, PTA_NEHALEM}, + {"corei7", PROCESSOR_NEHALEM, CPU_NEHALEM, PTA_NEHALEM}, + {"westmere", PROCESSOR_NEHALEM, CPU_NEHALEM, PTA_WESTMERE}, + {"sandybridge", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, + PTA_SANDYBRIDGE}, + {"corei7-avx", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, + PTA_SANDYBRIDGE}, + {"ivybridge", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, + PTA_IVYBRIDGE}, + {"core-avx-i", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, + PTA_IVYBRIDGE}, + {"haswell", PROCESSOR_HASWELL, CPU_HASWELL, PTA_HASWELL}, + {"core-avx2", PROCESSOR_HASWELL, CPU_HASWELL, PTA_HASWELL}, + {"broadwell", PROCESSOR_HASWELL, CPU_HASWELL, PTA_BROADWELL}, + {"skylake", PROCESSOR_SKYLAKE, CPU_HASWELL, PTA_SKYLAKE}, + {"skylake-avx512", PROCESSOR_SKYLAKE_AVX512, CPU_HASWELL, + PTA_SKYLAKE_AVX512}, + {"cannonlake", PROCESSOR_CANNONLAKE, CPU_HASWELL, PTA_CANNONLAKE}, + {"icelake-client", PROCESSOR_ICELAKE_CLIENT, CPU_HASWELL, + PTA_ICELAKE_CLIENT}, + {"icelake-server", PROCESSOR_ICELAKE_SERVER, CPU_HASWELL, + PTA_ICELAKE_SERVER}, + {"bonnell", PROCESSOR_BONNELL, CPU_ATOM, PTA_BONNELL}, + {"atom", PROCESSOR_BONNELL, CPU_ATOM, PTA_BONNELL}, + {"silvermont", PROCESSOR_SILVERMONT, CPU_SLM, PTA_SILVERMONT}, + {"slm", PROCESSOR_SILVERMONT, CPU_SLM, PTA_SILVERMONT}, + {"goldmont", PROCESSOR_GOLDMONT, CPU_GLM, PTA_GOLDMONT}, + {"goldmont-plus", PROCESSOR_GOLDMONT_PLUS, CPU_GLM, PTA_GOLDMONT_PLUS}, + {"tremont", PROCESSOR_TREMONT, CPU_GLM, PTA_TREMONT}, + {"knl", PROCESSOR_KNL, CPU_SLM, PTA_KNL}, + {"knm", PROCESSOR_KNM, CPU_SLM, PTA_KNM}, + {"intel", PROCESSOR_INTEL, CPU_SLM, PTA_NEHALEM}, + {"geode", PROCESSOR_GEODE, CPU_GEODE, + PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_PREFETCH_SSE}, + {"k6", PROCESSOR_K6, CPU_K6, PTA_MMX}, + {"k6-2", PROCESSOR_K6, CPU_K6, PTA_MMX | PTA_3DNOW}, + {"k6-3", PROCESSOR_K6, CPU_K6, PTA_MMX | PTA_3DNOW}, + {"athlon", PROCESSOR_ATHLON, CPU_ATHLON, + PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_PREFETCH_SSE}, + {"athlon-tbird", PROCESSOR_ATHLON, CPU_ATHLON, + PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_PREFETCH_SSE}, + {"athlon-4", PROCESSOR_ATHLON, CPU_ATHLON, + PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_FXSR}, + {"athlon-xp", PROCESSOR_ATHLON, CPU_ATHLON, + PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_FXSR}, + {"athlon-mp", PROCESSOR_ATHLON, CPU_ATHLON, + PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_FXSR}, + {"x86-64", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, + {"eden-x2", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, + {"nano", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_FXSR}, + {"nano-1000", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_FXSR}, + {"nano-2000", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_FXSR}, + {"nano-3000", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, + {"nano-x2", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, + {"eden-x4", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, + {"nano-x4", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, + {"k8", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, + {"k8-sse3", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_SSE3 | PTA_NO_SAHF | PTA_FXSR}, + {"opteron", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, + {"opteron-sse3", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_SSE3 | PTA_NO_SAHF | PTA_FXSR}, + {"athlon64", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, + {"athlon64-sse3", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_SSE3 | PTA_NO_SAHF | PTA_FXSR}, + {"athlon-fx", PROCESSOR_K8, CPU_K8, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE + | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, + {"amdfam10", PROCESSOR_AMDFAM10, CPU_AMDFAM10, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_SSE2 + | PTA_SSE3 | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_PRFCHW | PTA_FXSR}, + {"barcelona", PROCESSOR_AMDFAM10, CPU_AMDFAM10, + PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_SSE2 + | PTA_SSE3 | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_PRFCHW | PTA_FXSR}, + {"bdver1", PROCESSOR_BDVER1, CPU_BDVER1, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 + | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_FMA4 + | PTA_XOP | PTA_LWP | PTA_PRFCHW | PTA_FXSR | PTA_XSAVE}, + {"bdver2", PROCESSOR_BDVER2, CPU_BDVER2, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 + | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_FMA4 + | PTA_XOP | PTA_LWP | PTA_BMI | PTA_TBM | PTA_F16C + | PTA_FMA | PTA_PRFCHW | PTA_FXSR | PTA_XSAVE}, + {"bdver3", PROCESSOR_BDVER3, CPU_BDVER3, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 + | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_FMA4 + | PTA_XOP | PTA_LWP | PTA_BMI | PTA_TBM | PTA_F16C + | PTA_FMA | PTA_PRFCHW | PTA_FXSR | PTA_XSAVE + | PTA_XSAVEOPT | PTA_FSGSBASE}, + {"bdver4", PROCESSOR_BDVER4, CPU_BDVER4, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 + | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_AVX2 + | PTA_FMA4 | PTA_XOP | PTA_LWP | PTA_BMI | PTA_BMI2 + | PTA_TBM | PTA_F16C | PTA_FMA | PTA_PRFCHW | PTA_FXSR + | PTA_XSAVE | PTA_XSAVEOPT | PTA_FSGSBASE | PTA_RDRND + | PTA_MOVBE | PTA_MWAITX}, + {"znver1", PROCESSOR_ZNVER1, CPU_ZNVER1, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 + | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_AVX2 + | PTA_BMI | PTA_BMI2 | PTA_F16C | PTA_FMA | PTA_PRFCHW + | PTA_FXSR | PTA_XSAVE | PTA_XSAVEOPT | PTA_FSGSBASE + | PTA_RDRND | PTA_MOVBE | PTA_MWAITX | PTA_ADX | PTA_RDSEED + | PTA_CLZERO | PTA_CLFLUSHOPT | PTA_XSAVEC | PTA_XSAVES + | PTA_SHA | PTA_LZCNT | PTA_POPCNT}, + {"btver1", PROCESSOR_BTVER1, CPU_GENERIC, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_SSE4A |PTA_ABM | PTA_CX16 | PTA_PRFCHW + | PTA_FXSR | PTA_XSAVE}, + {"btver2", PROCESSOR_BTVER2, CPU_BTVER2, + PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 + | PTA_SSSE3 | PTA_SSE4A |PTA_ABM | PTA_CX16 | PTA_SSE4_1 + | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX + | PTA_BMI | PTA_F16C | PTA_MOVBE | PTA_PRFCHW + | PTA_FXSR | PTA_XSAVE | PTA_XSAVEOPT}, + + {"generic", PROCESSOR_GENERIC, CPU_GENERIC, + PTA_64BIT + | PTA_HLE /* flags are only used for -march switch. */ }, +}; + +int const pta_size = ARRAY_SIZE (processor_alias_table); + +/* Provide valid option values for -march and -mtune options. */ + +vec<const char *> +ix86_get_valid_option_values (int option_code, + const char *prefix ATTRIBUTE_UNUSED) +{ + vec<const char *> v; + v.create (0); + opt_code opt = (opt_code) option_code; + + switch (opt) + { + case OPT_march_: + for (unsigned i = 0; i < pta_size; i++) + v.safe_push (processor_alias_table[i].name); + break; + case OPT_mtune_: + for (unsigned i = 0; i < PROCESSOR_max; i++) + v.safe_push (processor_target_table[i].name); + break; + default: + break; + } + + return v; +} + +#undef TARGET_GET_VALID_OPTION_VALUES +#define TARGET_GET_VALID_OPTION_VALUES ix86_get_valid_option_values + struct gcc_targetm_common targetm_common = TARGETM_COMMON_INITIALIZER; diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index c437c18a29c..48e484b3d62 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -828,63 +828,46 @@ static tree (*ix86_veclib_handler) (combined_fn, tree, tree); static tree ix86_veclibabi_svml (combined_fn, tree, tree); static tree ix86_veclibabi_acml (combined_fn, tree, tree); -/* Processor target table, indexed by processor number */ -struct ptt -{ - const char *const name; /* processor name */ - const struct processor_costs *cost; /* Processor costs */ - - /* Default alignments. */ - const char *const align_loop; - const char *const align_jump; - const char *const align_label; - const char *const align_func; -}; - /* This table must be in sync with enum processor_type in i386.h. */ -static const struct ptt processor_target_table[PROCESSOR_max] = -{ -/* The "0:0:8" label alignment specified for some processors generates - secondary 8-byte alignment only for those label/jump/loop targets - which have primary alignment. */ - - {"generic", &generic_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"i386", &i386_cost, "4", "4", NULL, "4" }, - {"i486", &i486_cost, "16", "16", "0:0:8", "16"}, - {"pentium", &pentium_cost, "16:8:8", "16:8:8", "0:0:8", "16"}, - {"lakemont", &lakemont_cost, "16:8:8", "16:8:8", "0:0:8", "16"}, - {"pentiumpro", &pentiumpro_cost, "16", "16:11:8", "0:0:8", "16"}, - {"pentium4", &pentium4_cost, NULL, NULL, NULL, NULL}, - {"nocona", &nocona_cost, NULL, NULL, NULL, NULL}, - {"core2", &core_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"nehalem", &core_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"sandybridge", &core_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"haswell", &core_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"bonnell", &atom_cost, "16", "16:8:8", "0:0:8", "16"}, - {"silvermont", &slm_cost, "16", "16:8:8", "0:0:8", "16"}, - {"goldmont", &slm_cost, "16", "16:8:8", "0:0:8", "16"}, - {"goldmont-plus", &slm_cost, "16", "16:8:8", "0:0:8", "16"}, - {"tremont", &slm_cost, "16", "16:8:8", "0:0:8", "16"}, - {"knl", &slm_cost, "16", "16:8:8", "0:0:8", "16"}, - {"knm", &slm_cost, "16", "16:8:8", "0:0:8", "16"}, - {"skylake", &skylake_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"skylake-avx512", &skylake_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"cannonlake", &skylake_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"icelake-client", &skylake_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"icelake-server", &skylake_cost, "16:11:8", "16:11:8", "0:0:8", "16"}, - {"intel", &intel_cost, "16", "16:8:8", "0:0:8", "16"}, - {"geode", &geode_cost, NULL, NULL, NULL, NULL}, - {"k6", &k6_cost, "32:8:8", "32:8:8", "0:0:8", "32"}, - {"athlon", &athlon_cost, "16:8:8", "16:8:8", "0:0:8", "16"}, - {"k8", &k8_cost, "16:8:8", "16:8:8", "0:0:8", "16"}, - {"amdfam10", &amdfam10_cost, "32:25:8", "32:8:8", "0:0:8", "32"}, - {"bdver1", &bdver1_cost, "16:11:8", "16:8:8", "0:0:8", "11"}, - {"bdver2", &bdver2_cost, "16:11:8", "16:8:8", "0:0:8", "11"}, - {"bdver3", &bdver3_cost, "16:11:8", "16:8:8", "0:0:8", "11"}, - {"bdver4", &bdver4_cost, "16:11:8", "16:8:8", "0:0:8", "11"}, - {"btver1", &btver1_cost, "16:11:8", "16:8:8", "0:0:8", "11"}, - {"btver2", &btver2_cost, "16:11:8", "16:8:8", "0:0:8", "11"}, - {"znver1", &znver1_cost, "16", "16", "0:0:8", "16"} +static const struct processor_costs *processor_cost_table[PROCESSOR_max] = +{ + &generic_cost, + &i386_cost, + &i486_cost, + &pentium_cost, + &lakemont_cost, + &pentiumpro_cost, + &pentium4_cost, + &nocona_cost, + &core_cost, + &core_cost, + &core_cost, + &core_cost, + &atom_cost, + &slm_cost, + &slm_cost, + &slm_cost, + &slm_cost, + &slm_cost, + &slm_cost, + &skylake_cost, + &skylake_cost, + &skylake_cost, + &skylake_cost, + &skylake_cost, + &intel_cost, + &geode_cost, + &k6_cost, + &athlon_cost, + &k8_cost, + &amdfam10_cost, + &bdver1_cost, + &bdver2_cost, + &bdver3_cost, + &bdver4_cost, + &btver1_cost, + &btver2_cost, + &znver1_cost, }; static unsigned int @@ -3386,6 +3369,8 @@ ix86_override_options_after_change (void) ix86_default_align (&global_options); } + + /* Override various settings based on options. If MAIN_ARGS_P, the options are from the command line, otherwise they are from attributes. Return true if there's an error related to march @@ -3400,317 +3385,6 @@ ix86_option_override_internal (bool main_args_p, unsigned HOST_WIDE_INT ix86_arch_mask; const bool ix86_tune_specified = (opts->x_ix86_tune_string != NULL); - const wide_int_bitmask PTA_3DNOW (HOST_WIDE_INT_1U << 0); - const wide_int_bitmask PTA_3DNOW_A (HOST_WIDE_INT_1U << 1); - const wide_int_bitmask PTA_64BIT (HOST_WIDE_INT_1U << 2); - const wide_int_bitmask PTA_ABM (HOST_WIDE_INT_1U << 3); - const wide_int_bitmask PTA_AES (HOST_WIDE_INT_1U << 4); - const wide_int_bitmask PTA_AVX (HOST_WIDE_INT_1U << 5); - const wide_int_bitmask PTA_BMI (HOST_WIDE_INT_1U << 6); - const wide_int_bitmask PTA_CX16 (HOST_WIDE_INT_1U << 7); - const wide_int_bitmask PTA_F16C (HOST_WIDE_INT_1U << 8); - const wide_int_bitmask PTA_FMA (HOST_WIDE_INT_1U << 9); - const wide_int_bitmask PTA_FMA4 (HOST_WIDE_INT_1U << 10); - const wide_int_bitmask PTA_FSGSBASE (HOST_WIDE_INT_1U << 11); - const wide_int_bitmask PTA_LWP (HOST_WIDE_INT_1U << 12); - const wide_int_bitmask PTA_LZCNT (HOST_WIDE_INT_1U << 13); - const wide_int_bitmask PTA_MMX (HOST_WIDE_INT_1U << 14); - const wide_int_bitmask PTA_MOVBE (HOST_WIDE_INT_1U << 15); - const wide_int_bitmask PTA_NO_SAHF (HOST_WIDE_INT_1U << 16); - const wide_int_bitmask PTA_PCLMUL (HOST_WIDE_INT_1U << 17); - const wide_int_bitmask PTA_POPCNT (HOST_WIDE_INT_1U << 18); - const wide_int_bitmask PTA_PREFETCH_SSE (HOST_WIDE_INT_1U << 19); - const wide_int_bitmask PTA_RDRND (HOST_WIDE_INT_1U << 20); - const wide_int_bitmask PTA_SSE (HOST_WIDE_INT_1U << 21); - const wide_int_bitmask PTA_SSE2 (HOST_WIDE_INT_1U << 22); - const wide_int_bitmask PTA_SSE3 (HOST_WIDE_INT_1U << 23); - const wide_int_bitmask PTA_SSE4_1 (HOST_WIDE_INT_1U << 24); - const wide_int_bitmask PTA_SSE4_2 (HOST_WIDE_INT_1U << 25); - const wide_int_bitmask PTA_SSE4A (HOST_WIDE_INT_1U << 26); - const wide_int_bitmask PTA_SSSE3 (HOST_WIDE_INT_1U << 27); - const wide_int_bitmask PTA_TBM (HOST_WIDE_INT_1U << 28); - const wide_int_bitmask PTA_XOP (HOST_WIDE_INT_1U << 29); - const wide_int_bitmask PTA_AVX2 (HOST_WIDE_INT_1U << 30); - const wide_int_bitmask PTA_BMI2 (HOST_WIDE_INT_1U << 31); - const wide_int_bitmask PTA_RTM (HOST_WIDE_INT_1U << 32); - const wide_int_bitmask PTA_HLE (HOST_WIDE_INT_1U << 33); - const wide_int_bitmask PTA_PRFCHW (HOST_WIDE_INT_1U << 34); - const wide_int_bitmask PTA_RDSEED (HOST_WIDE_INT_1U << 35); - const wide_int_bitmask PTA_ADX (HOST_WIDE_INT_1U << 36); - const wide_int_bitmask PTA_FXSR (HOST_WIDE_INT_1U << 37); - const wide_int_bitmask PTA_XSAVE (HOST_WIDE_INT_1U << 38); - const wide_int_bitmask PTA_XSAVEOPT (HOST_WIDE_INT_1U << 39); - const wide_int_bitmask PTA_AVX512F (HOST_WIDE_INT_1U << 40); - const wide_int_bitmask PTA_AVX512ER (HOST_WIDE_INT_1U << 41); - const wide_int_bitmask PTA_AVX512PF (HOST_WIDE_INT_1U << 42); - const wide_int_bitmask PTA_AVX512CD (HOST_WIDE_INT_1U << 43); - /* Hole after PTA_MPX was removed. */ - const wide_int_bitmask PTA_SHA (HOST_WIDE_INT_1U << 45); - const wide_int_bitmask PTA_PREFETCHWT1 (HOST_WIDE_INT_1U << 46); - const wide_int_bitmask PTA_CLFLUSHOPT (HOST_WIDE_INT_1U << 47); - const wide_int_bitmask PTA_XSAVEC (HOST_WIDE_INT_1U << 48); - const wide_int_bitmask PTA_XSAVES (HOST_WIDE_INT_1U << 49); - const wide_int_bitmask PTA_AVX512DQ (HOST_WIDE_INT_1U << 50); - const wide_int_bitmask PTA_AVX512BW (HOST_WIDE_INT_1U << 51); - const wide_int_bitmask PTA_AVX512VL (HOST_WIDE_INT_1U << 52); - const wide_int_bitmask PTA_AVX512IFMA (HOST_WIDE_INT_1U << 53); - const wide_int_bitmask PTA_AVX512VBMI (HOST_WIDE_INT_1U << 54); - const wide_int_bitmask PTA_CLWB (HOST_WIDE_INT_1U << 55); - const wide_int_bitmask PTA_MWAITX (HOST_WIDE_INT_1U << 56); - const wide_int_bitmask PTA_CLZERO (HOST_WIDE_INT_1U << 57); - const wide_int_bitmask PTA_NO_80387 (HOST_WIDE_INT_1U << 58); - const wide_int_bitmask PTA_PKU (HOST_WIDE_INT_1U << 59); - const wide_int_bitmask PTA_AVX5124VNNIW (HOST_WIDE_INT_1U << 60); - const wide_int_bitmask PTA_AVX5124FMAPS (HOST_WIDE_INT_1U << 61); - const wide_int_bitmask PTA_AVX512VPOPCNTDQ (HOST_WIDE_INT_1U << 62); - const wide_int_bitmask PTA_SGX (HOST_WIDE_INT_1U << 63); - const wide_int_bitmask PTA_AVX512VNNI (0, HOST_WIDE_INT_1U); - const wide_int_bitmask PTA_GFNI (0, HOST_WIDE_INT_1U << 1); - const wide_int_bitmask PTA_VAES (0, HOST_WIDE_INT_1U << 2); - const wide_int_bitmask PTA_AVX512VBMI2 (0, HOST_WIDE_INT_1U << 3); - const wide_int_bitmask PTA_VPCLMULQDQ (0, HOST_WIDE_INT_1U << 4); - const wide_int_bitmask PTA_AVX512BITALG (0, HOST_WIDE_INT_1U << 5); - const wide_int_bitmask PTA_RDPID (0, HOST_WIDE_INT_1U << 6); - const wide_int_bitmask PTA_PCONFIG (0, HOST_WIDE_INT_1U << 7); - const wide_int_bitmask PTA_WBNOINVD (0, HOST_WIDE_INT_1U << 8); - const wide_int_bitmask PTA_WAITPKG (0, HOST_WIDE_INT_1U << 9); - - const wide_int_bitmask PTA_CORE2 = PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 - | PTA_SSE3 | PTA_SSSE3 | PTA_CX16 | PTA_FXSR; - const wide_int_bitmask PTA_NEHALEM = PTA_CORE2 | PTA_SSE4_1 | PTA_SSE4_2 - | PTA_POPCNT; - const wide_int_bitmask PTA_WESTMERE = PTA_NEHALEM | PTA_AES | PTA_PCLMUL; - const wide_int_bitmask PTA_SANDYBRIDGE = PTA_WESTMERE | PTA_AVX | PTA_XSAVE - | PTA_XSAVEOPT; - const wide_int_bitmask PTA_IVYBRIDGE = PTA_SANDYBRIDGE | PTA_FSGSBASE - | PTA_RDRND | PTA_F16C; - const wide_int_bitmask PTA_HASWELL = PTA_IVYBRIDGE | PTA_AVX2 | PTA_BMI - | PTA_BMI2 | PTA_LZCNT | PTA_FMA | PTA_MOVBE | PTA_HLE; - const wide_int_bitmask PTA_BROADWELL = PTA_HASWELL | PTA_ADX | PTA_PRFCHW - | PTA_RDSEED; - const wide_int_bitmask PTA_SKYLAKE = PTA_BROADWELL | PTA_CLFLUSHOPT - | PTA_XSAVEC | PTA_XSAVES | PTA_SGX; - const wide_int_bitmask PTA_SKYLAKE_AVX512 = PTA_SKYLAKE | PTA_AVX512F - | PTA_AVX512CD | PTA_AVX512VL | PTA_AVX512BW | PTA_AVX512DQ | PTA_PKU - | PTA_CLWB; - const wide_int_bitmask PTA_CANNONLAKE = PTA_SKYLAKE | PTA_AVX512F - | PTA_AVX512CD | PTA_AVX512VL | PTA_AVX512BW | PTA_AVX512DQ | PTA_PKU - | PTA_AVX512VBMI | PTA_AVX512IFMA | PTA_SHA; - const wide_int_bitmask PTA_ICELAKE_CLIENT = PTA_CANNONLAKE | PTA_AVX512VNNI - | PTA_GFNI | PTA_VAES | PTA_AVX512VBMI2 | PTA_VPCLMULQDQ | PTA_AVX512BITALG - | PTA_RDPID | PTA_CLWB; - const wide_int_bitmask PTA_ICELAKE_SERVER = PTA_ICELAKE_CLIENT | PTA_PCONFIG - | PTA_WBNOINVD; - const wide_int_bitmask PTA_KNL = PTA_BROADWELL | PTA_AVX512PF | PTA_AVX512ER - | PTA_AVX512F | PTA_AVX512CD; - const wide_int_bitmask PTA_BONNELL = PTA_CORE2 | PTA_MOVBE; - const wide_int_bitmask PTA_SILVERMONT = PTA_WESTMERE | PTA_MOVBE | PTA_RDRND; - const wide_int_bitmask PTA_GOLDMONT = PTA_SILVERMONT | PTA_SHA | PTA_XSAVE - | PTA_RDSEED | PTA_XSAVEC | PTA_XSAVES | PTA_CLFLUSHOPT | PTA_XSAVEOPT - | PTA_FSGSBASE; - const wide_int_bitmask PTA_GOLDMONT_PLUS = PTA_GOLDMONT | PTA_RDPID - | PTA_SGX; - const wide_int_bitmask PTA_TREMONT = PTA_GOLDMONT_PLUS | PTA_CLWB - | PTA_GFNI; - const wide_int_bitmask PTA_KNM = PTA_KNL | PTA_AVX5124VNNIW - | PTA_AVX5124FMAPS | PTA_AVX512VPOPCNTDQ; - - static struct pta - { - const char *const name; /* processor name or nickname. */ - const enum processor_type processor; - const enum attr_cpu schedule; - const wide_int_bitmask flags; - } - const processor_alias_table[] = - { - {"i386", PROCESSOR_I386, CPU_NONE, 0}, - {"i486", PROCESSOR_I486, CPU_NONE, 0}, - {"i586", PROCESSOR_PENTIUM, CPU_PENTIUM, 0}, - {"pentium", PROCESSOR_PENTIUM, CPU_PENTIUM, 0}, - {"lakemont", PROCESSOR_LAKEMONT, CPU_PENTIUM, PTA_NO_80387}, - {"pentium-mmx", PROCESSOR_PENTIUM, CPU_PENTIUM, PTA_MMX}, - {"winchip-c6", PROCESSOR_I486, CPU_NONE, PTA_MMX}, - {"winchip2", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW}, - {"c3", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW}, - {"samuel-2", PROCESSOR_I486, CPU_NONE, PTA_MMX | PTA_3DNOW}, - {"c3-2", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_FXSR}, - {"nehemiah", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_FXSR}, - {"c7", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, - {"esther", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, - {"i686", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, 0}, - {"pentiumpro", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, 0}, - {"pentium2", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, PTA_MMX | PTA_FXSR}, - {"pentium3", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_FXSR}, - {"pentium3m", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_FXSR}, - {"pentium-m", PROCESSOR_PENTIUMPRO, CPU_PENTIUMPRO, - PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_FXSR}, - {"pentium4", PROCESSOR_PENTIUM4, CPU_NONE, - PTA_MMX |PTA_SSE | PTA_SSE2 | PTA_FXSR}, - {"pentium4m", PROCESSOR_PENTIUM4, CPU_NONE, - PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_FXSR}, - {"prescott", PROCESSOR_NOCONA, CPU_NONE, - PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, - {"nocona", PROCESSOR_NOCONA, CPU_NONE, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_CX16 | PTA_NO_SAHF | PTA_FXSR}, - {"core2", PROCESSOR_CORE2, CPU_CORE2, PTA_CORE2}, - {"nehalem", PROCESSOR_NEHALEM, CPU_NEHALEM, PTA_NEHALEM}, - {"corei7", PROCESSOR_NEHALEM, CPU_NEHALEM, PTA_NEHALEM}, - {"westmere", PROCESSOR_NEHALEM, CPU_NEHALEM, PTA_WESTMERE}, - {"sandybridge", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, - PTA_SANDYBRIDGE}, - {"corei7-avx", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, - PTA_SANDYBRIDGE}, - {"ivybridge", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, - PTA_IVYBRIDGE}, - {"core-avx-i", PROCESSOR_SANDYBRIDGE, CPU_NEHALEM, - PTA_IVYBRIDGE}, - {"haswell", PROCESSOR_HASWELL, CPU_HASWELL, PTA_HASWELL}, - {"core-avx2", PROCESSOR_HASWELL, CPU_HASWELL, PTA_HASWELL}, - {"broadwell", PROCESSOR_HASWELL, CPU_HASWELL, PTA_BROADWELL}, - {"skylake", PROCESSOR_SKYLAKE, CPU_HASWELL, PTA_SKYLAKE}, - {"skylake-avx512", PROCESSOR_SKYLAKE_AVX512, CPU_HASWELL, - PTA_SKYLAKE_AVX512}, - {"cannonlake", PROCESSOR_CANNONLAKE, CPU_HASWELL, PTA_CANNONLAKE}, - {"icelake-client", PROCESSOR_ICELAKE_CLIENT, CPU_HASWELL, - PTA_ICELAKE_CLIENT}, - {"icelake-server", PROCESSOR_ICELAKE_SERVER, CPU_HASWELL, - PTA_ICELAKE_SERVER}, - {"bonnell", PROCESSOR_BONNELL, CPU_ATOM, PTA_BONNELL}, - {"atom", PROCESSOR_BONNELL, CPU_ATOM, PTA_BONNELL}, - {"silvermont", PROCESSOR_SILVERMONT, CPU_SLM, PTA_SILVERMONT}, - {"slm", PROCESSOR_SILVERMONT, CPU_SLM, PTA_SILVERMONT}, - {"goldmont", PROCESSOR_GOLDMONT, CPU_GLM, PTA_GOLDMONT}, - {"goldmont-plus", PROCESSOR_GOLDMONT_PLUS, CPU_GLM, PTA_GOLDMONT_PLUS}, - {"tremont", PROCESSOR_TREMONT, CPU_GLM, PTA_TREMONT}, - {"knl", PROCESSOR_KNL, CPU_SLM, PTA_KNL}, - {"knm", PROCESSOR_KNM, CPU_SLM, PTA_KNM}, - {"intel", PROCESSOR_INTEL, CPU_SLM, PTA_NEHALEM}, - {"geode", PROCESSOR_GEODE, CPU_GEODE, - PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_PREFETCH_SSE}, - {"k6", PROCESSOR_K6, CPU_K6, PTA_MMX}, - {"k6-2", PROCESSOR_K6, CPU_K6, PTA_MMX | PTA_3DNOW}, - {"k6-3", PROCESSOR_K6, CPU_K6, PTA_MMX | PTA_3DNOW}, - {"athlon", PROCESSOR_ATHLON, CPU_ATHLON, - PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_PREFETCH_SSE}, - {"athlon-tbird", PROCESSOR_ATHLON, CPU_ATHLON, - PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_PREFETCH_SSE}, - {"athlon-4", PROCESSOR_ATHLON, CPU_ATHLON, - PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_FXSR}, - {"athlon-xp", PROCESSOR_ATHLON, CPU_ATHLON, - PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_FXSR}, - {"athlon-mp", PROCESSOR_ATHLON, CPU_ATHLON, - PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_FXSR}, - {"x86-64", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, - {"eden-x2", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 | PTA_FXSR}, - {"nano", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_FXSR}, - {"nano-1000", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_FXSR}, - {"nano-2000", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_FXSR}, - {"nano-3000", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, - {"nano-x2", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, - {"eden-x4", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, - {"nano-x4", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_SSE4_1 | PTA_FXSR}, - {"k8", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, - {"k8-sse3", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_SSE3 | PTA_NO_SAHF | PTA_FXSR}, - {"opteron", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, - {"opteron-sse3", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_SSE3 | PTA_NO_SAHF | PTA_FXSR}, - {"athlon64", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, - {"athlon64-sse3", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_SSE3 | PTA_NO_SAHF | PTA_FXSR}, - {"athlon-fx", PROCESSOR_K8, CPU_K8, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE - | PTA_SSE2 | PTA_NO_SAHF | PTA_FXSR}, - {"amdfam10", PROCESSOR_AMDFAM10, CPU_AMDFAM10, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_SSE2 - | PTA_SSE3 | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_PRFCHW | PTA_FXSR}, - {"barcelona", PROCESSOR_AMDFAM10, CPU_AMDFAM10, - PTA_64BIT | PTA_MMX | PTA_3DNOW | PTA_3DNOW_A | PTA_SSE | PTA_SSE2 - | PTA_SSE3 | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_PRFCHW | PTA_FXSR}, - {"bdver1", PROCESSOR_BDVER1, CPU_BDVER1, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 - | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_FMA4 - | PTA_XOP | PTA_LWP | PTA_PRFCHW | PTA_FXSR | PTA_XSAVE}, - {"bdver2", PROCESSOR_BDVER2, CPU_BDVER2, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 - | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_FMA4 - | PTA_XOP | PTA_LWP | PTA_BMI | PTA_TBM | PTA_F16C - | PTA_FMA | PTA_PRFCHW | PTA_FXSR | PTA_XSAVE}, - {"bdver3", PROCESSOR_BDVER3, CPU_BDVER3, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 - | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_FMA4 - | PTA_XOP | PTA_LWP | PTA_BMI | PTA_TBM | PTA_F16C - | PTA_FMA | PTA_PRFCHW | PTA_FXSR | PTA_XSAVE - | PTA_XSAVEOPT | PTA_FSGSBASE}, - {"bdver4", PROCESSOR_BDVER4, CPU_BDVER4, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 - | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_AVX2 - | PTA_FMA4 | PTA_XOP | PTA_LWP | PTA_BMI | PTA_BMI2 - | PTA_TBM | PTA_F16C | PTA_FMA | PTA_PRFCHW | PTA_FXSR - | PTA_XSAVE | PTA_XSAVEOPT | PTA_FSGSBASE | PTA_RDRND - | PTA_MOVBE | PTA_MWAITX}, - {"znver1", PROCESSOR_ZNVER1, CPU_ZNVER1, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSE4A | PTA_CX16 | PTA_ABM | PTA_SSSE3 | PTA_SSE4_1 - | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX | PTA_AVX2 - | PTA_BMI | PTA_BMI2 | PTA_F16C | PTA_FMA | PTA_PRFCHW - | PTA_FXSR | PTA_XSAVE | PTA_XSAVEOPT | PTA_FSGSBASE - | PTA_RDRND | PTA_MOVBE | PTA_MWAITX | PTA_ADX | PTA_RDSEED - | PTA_CLZERO | PTA_CLFLUSHOPT | PTA_XSAVEC | PTA_XSAVES - | PTA_SHA | PTA_LZCNT | PTA_POPCNT}, - {"btver1", PROCESSOR_BTVER1, CPU_GENERIC, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_SSE4A |PTA_ABM | PTA_CX16 | PTA_PRFCHW - | PTA_FXSR | PTA_XSAVE}, - {"btver2", PROCESSOR_BTVER2, CPU_BTVER2, - PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 | PTA_SSE3 - | PTA_SSSE3 | PTA_SSE4A |PTA_ABM | PTA_CX16 | PTA_SSE4_1 - | PTA_SSE4_2 | PTA_AES | PTA_PCLMUL | PTA_AVX - | PTA_BMI | PTA_F16C | PTA_MOVBE | PTA_PRFCHW - | PTA_FXSR | PTA_XSAVE | PTA_XSAVEOPT}, - - {"generic", PROCESSOR_GENERIC, CPU_GENERIC, - PTA_64BIT - | PTA_HLE /* flags are only used for -march switch. */ }, - }; - /* -mrecip options. */ static struct { @@ -3727,7 +3401,6 @@ ix86_option_override_internal (bool main_args_p, { "vec-sqrt", RECIP_MASK_VEC_SQRT }, }; - int const pta_size = ARRAY_SIZE (processor_alias_table); /* Turn off both OPTION_MASK_ABI_64 and OPTION_MASK_ABI_X32 if TARGET_64BIT_DEFAULT is true and TARGET_64BIT is false. */ @@ -4383,7 +4056,7 @@ ix86_option_override_internal (bool main_args_p, } } - ix86_tune_cost = processor_target_table[ix86_tune].cost; + ix86_tune_cost = processor_cost_table[ix86_tune]; /* TODO: ix86_cost should be chosen at instruction or function granuality so for cold code we use size_cost even in !optimize_size compilation. */ if (opts->x_optimize_size) @@ -5180,7 +4853,7 @@ ix86_function_specific_restore (struct gcc_options *opts, opts->x_ix86_tune_memset_strategy = ptr->x_ix86_tune_memset_strategy; opts->x_ix86_tune_no_default = ptr->x_ix86_tune_no_default; opts->x_ix86_veclibabi_type = ptr->x_ix86_veclibabi_type; - ix86_tune_cost = processor_target_table[ix86_tune].cost; + ix86_tune_cost = processor_cost_table[ix86_tune]; /* TODO: ix86_cost should be chosen at instruction or function granuality so for cold code we use size_cost even in !optimize_size compilation. */ if (opts->x_optimize_size) diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 2a46fccdec1..e16c6032128 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -2277,6 +2277,156 @@ enum processor_type PROCESSOR_max }; +#ifndef IN_LIBGCC2 +/* Processor target table, indexed by processor number */ +struct ptt +{ + const char *const name; /* processor name */ + + /* Default alignments. */ + const char *const align_loop; + const char *const align_jump; + const char *const align_label; + const char *const align_func; +}; + +extern const struct ptt processor_target_table[PROCESSOR_max]; + +#include "wide-int-bitmask.h" + +const wide_int_bitmask PTA_3DNOW (HOST_WIDE_INT_1U << 0); +const wide_int_bitmask PTA_3DNOW_A (HOST_WIDE_INT_1U << 1); +const wide_int_bitmask PTA_64BIT (HOST_WIDE_INT_1U << 2); +const wide_int_bitmask PTA_ABM (HOST_WIDE_INT_1U << 3); +const wide_int_bitmask PTA_AES (HOST_WIDE_INT_1U << 4); +const wide_int_bitmask PTA_AVX (HOST_WIDE_INT_1U << 5); +const wide_int_bitmask PTA_BMI (HOST_WIDE_INT_1U << 6); +const wide_int_bitmask PTA_CX16 (HOST_WIDE_INT_1U << 7); +const wide_int_bitmask PTA_F16C (HOST_WIDE_INT_1U << 8); +const wide_int_bitmask PTA_FMA (HOST_WIDE_INT_1U << 9); +const wide_int_bitmask PTA_FMA4 (HOST_WIDE_INT_1U << 10); +const wide_int_bitmask PTA_FSGSBASE (HOST_WIDE_INT_1U << 11); +const wide_int_bitmask PTA_LWP (HOST_WIDE_INT_1U << 12); +const wide_int_bitmask PTA_LZCNT (HOST_WIDE_INT_1U << 13); +const wide_int_bitmask PTA_MMX (HOST_WIDE_INT_1U << 14); +const wide_int_bitmask PTA_MOVBE (HOST_WIDE_INT_1U << 15); +const wide_int_bitmask PTA_NO_SAHF (HOST_WIDE_INT_1U << 16); +const wide_int_bitmask PTA_PCLMUL (HOST_WIDE_INT_1U << 17); +const wide_int_bitmask PTA_POPCNT (HOST_WIDE_INT_1U << 18); +const wide_int_bitmask PTA_PREFETCH_SSE (HOST_WIDE_INT_1U << 19); +const wide_int_bitmask PTA_RDRND (HOST_WIDE_INT_1U << 20); +const wide_int_bitmask PTA_SSE (HOST_WIDE_INT_1U << 21); +const wide_int_bitmask PTA_SSE2 (HOST_WIDE_INT_1U << 22); +const wide_int_bitmask PTA_SSE3 (HOST_WIDE_INT_1U << 23); +const wide_int_bitmask PTA_SSE4_1 (HOST_WIDE_INT_1U << 24); +const wide_int_bitmask PTA_SSE4_2 (HOST_WIDE_INT_1U << 25); +const wide_int_bitmask PTA_SSE4A (HOST_WIDE_INT_1U << 26); +const wide_int_bitmask PTA_SSSE3 (HOST_WIDE_INT_1U << 27); +const wide_int_bitmask PTA_TBM (HOST_WIDE_INT_1U << 28); +const wide_int_bitmask PTA_XOP (HOST_WIDE_INT_1U << 29); +const wide_int_bitmask PTA_AVX2 (HOST_WIDE_INT_1U << 30); +const wide_int_bitmask PTA_BMI2 (HOST_WIDE_INT_1U << 31); +const wide_int_bitmask PTA_RTM (HOST_WIDE_INT_1U << 32); +const wide_int_bitmask PTA_HLE (HOST_WIDE_INT_1U << 33); +const wide_int_bitmask PTA_PRFCHW (HOST_WIDE_INT_1U << 34); +const wide_int_bitmask PTA_RDSEED (HOST_WIDE_INT_1U << 35); +const wide_int_bitmask PTA_ADX (HOST_WIDE_INT_1U << 36); +const wide_int_bitmask PTA_FXSR (HOST_WIDE_INT_1U << 37); +const wide_int_bitmask PTA_XSAVE (HOST_WIDE_INT_1U << 38); +const wide_int_bitmask PTA_XSAVEOPT (HOST_WIDE_INT_1U << 39); +const wide_int_bitmask PTA_AVX512F (HOST_WIDE_INT_1U << 40); +const wide_int_bitmask PTA_AVX512ER (HOST_WIDE_INT_1U << 41); +const wide_int_bitmask PTA_AVX512PF (HOST_WIDE_INT_1U << 42); +const wide_int_bitmask PTA_AVX512CD (HOST_WIDE_INT_1U << 43); +/* Hole after PTA_MPX was removed. */ +const wide_int_bitmask PTA_SHA (HOST_WIDE_INT_1U << 45); +const wide_int_bitmask PTA_PREFETCHWT1 (HOST_WIDE_INT_1U << 46); +const wide_int_bitmask PTA_CLFLUSHOPT (HOST_WIDE_INT_1U << 47); +const wide_int_bitmask PTA_XSAVEC (HOST_WIDE_INT_1U << 48); +const wide_int_bitmask PTA_XSAVES (HOST_WIDE_INT_1U << 49); +const wide_int_bitmask PTA_AVX512DQ (HOST_WIDE_INT_1U << 50); +const wide_int_bitmask PTA_AVX512BW (HOST_WIDE_INT_1U << 51); +const wide_int_bitmask PTA_AVX512VL (HOST_WIDE_INT_1U << 52); +const wide_int_bitmask PTA_AVX512IFMA (HOST_WIDE_INT_1U << 53); +const wide_int_bitmask PTA_AVX512VBMI (HOST_WIDE_INT_1U << 54); +const wide_int_bitmask PTA_CLWB (HOST_WIDE_INT_1U << 55); +const wide_int_bitmask PTA_MWAITX (HOST_WIDE_INT_1U << 56); +const wide_int_bitmask PTA_CLZERO (HOST_WIDE_INT_1U << 57); +const wide_int_bitmask PTA_NO_80387 (HOST_WIDE_INT_1U << 58); +const wide_int_bitmask PTA_PKU (HOST_WIDE_INT_1U << 59); +const wide_int_bitmask PTA_AVX5124VNNIW (HOST_WIDE_INT_1U << 60); +const wide_int_bitmask PTA_AVX5124FMAPS (HOST_WIDE_INT_1U << 61); +const wide_int_bitmask PTA_AVX512VPOPCNTDQ (HOST_WIDE_INT_1U << 62); +const wide_int_bitmask PTA_SGX (HOST_WIDE_INT_1U << 63); +const wide_int_bitmask PTA_AVX512VNNI (0, HOST_WIDE_INT_1U); +const wide_int_bitmask PTA_GFNI (0, HOST_WIDE_INT_1U << 1); +const wide_int_bitmask PTA_VAES (0, HOST_WIDE_INT_1U << 2); +const wide_int_bitmask PTA_AVX512VBMI2 (0, HOST_WIDE_INT_1U << 3); +const wide_int_bitmask PTA_VPCLMULQDQ (0, HOST_WIDE_INT_1U << 4); +const wide_int_bitmask PTA_AVX512BITALG (0, HOST_WIDE_INT_1U << 5); +const wide_int_bitmask PTA_RDPID (0, HOST_WIDE_INT_1U << 6); +const wide_int_bitmask PTA_PCONFIG (0, HOST_WIDE_INT_1U << 7); +const wide_int_bitmask PTA_WBNOINVD (0, HOST_WIDE_INT_1U << 8); +const wide_int_bitmask PTA_WAITPKG (0, HOST_WIDE_INT_1U << 9); + +const wide_int_bitmask PTA_CORE2 = PTA_64BIT | PTA_MMX | PTA_SSE | PTA_SSE2 + | PTA_SSE3 | PTA_SSSE3 | PTA_CX16 | PTA_FXSR; +const wide_int_bitmask PTA_NEHALEM = PTA_CORE2 | PTA_SSE4_1 | PTA_SSE4_2 + | PTA_POPCNT; +const wide_int_bitmask PTA_WESTMERE = PTA_NEHALEM | PTA_AES | PTA_PCLMUL; +const wide_int_bitmask PTA_SANDYBRIDGE = PTA_WESTMERE | PTA_AVX | PTA_XSAVE + | PTA_XSAVEOPT; +const wide_int_bitmask PTA_IVYBRIDGE = PTA_SANDYBRIDGE | PTA_FSGSBASE + | PTA_RDRND | PTA_F16C; +const wide_int_bitmask PTA_HASWELL = PTA_IVYBRIDGE | PTA_AVX2 | PTA_BMI + | PTA_BMI2 | PTA_LZCNT | PTA_FMA | PTA_MOVBE | PTA_HLE; +const wide_int_bitmask PTA_BROADWELL = PTA_HASWELL | PTA_ADX | PTA_PRFCHW + | PTA_RDSEED; +const wide_int_bitmask PTA_SKYLAKE = PTA_BROADWELL | PTA_CLFLUSHOPT + | PTA_XSAVEC | PTA_XSAVES | PTA_SGX; +const wide_int_bitmask PTA_SKYLAKE_AVX512 = PTA_SKYLAKE | PTA_AVX512F + | PTA_AVX512CD | PTA_AVX512VL | PTA_AVX512BW | PTA_AVX512DQ | PTA_PKU + | PTA_CLWB; +const wide_int_bitmask PTA_CANNONLAKE = PTA_SKYLAKE | PTA_AVX512F + | PTA_AVX512CD | PTA_AVX512VL | PTA_AVX512BW | PTA_AVX512DQ | PTA_PKU + | PTA_AVX512VBMI | PTA_AVX512IFMA | PTA_SHA; +const wide_int_bitmask PTA_ICELAKE_CLIENT = PTA_CANNONLAKE | PTA_AVX512VNNI + | PTA_GFNI | PTA_VAES | PTA_AVX512VBMI2 | PTA_VPCLMULQDQ | PTA_AVX512BITALG + | PTA_RDPID | PTA_CLWB; +const wide_int_bitmask PTA_ICELAKE_SERVER = PTA_ICELAKE_CLIENT | PTA_PCONFIG + | PTA_WBNOINVD; +const wide_int_bitmask PTA_KNL = PTA_BROADWELL | PTA_AVX512PF | PTA_AVX512ER + | PTA_AVX512F | PTA_AVX512CD; +const wide_int_bitmask PTA_BONNELL = PTA_CORE2 | PTA_MOVBE; +const wide_int_bitmask PTA_SILVERMONT = PTA_WESTMERE | PTA_MOVBE | PTA_RDRND; +const wide_int_bitmask PTA_GOLDMONT = PTA_SILVERMONT | PTA_SHA | PTA_XSAVE + | PTA_RDSEED | PTA_XSAVEC | PTA_XSAVES | PTA_CLFLUSHOPT | PTA_XSAVEOPT + | PTA_FSGSBASE; +const wide_int_bitmask PTA_GOLDMONT_PLUS = PTA_GOLDMONT | PTA_RDPID + | PTA_SGX; +const wide_int_bitmask PTA_TREMONT = PTA_GOLDMONT_PLUS | PTA_CLWB + | PTA_GFNI; +const wide_int_bitmask PTA_KNM = PTA_KNL | PTA_AVX5124VNNIW + | PTA_AVX5124FMAPS | PTA_AVX512VPOPCNTDQ; + +#ifndef GENERATOR_FILE + +#include "insn-attr-common.h" + +struct pta +{ + const char *const name; /* processor name or nickname. */ + const enum processor_type processor; + const enum attr_cpu schedule; + const wide_int_bitmask flags; +}; + +extern const pta processor_alias_table[]; +extern int const pta_size; +#endif + +#endif + extern enum processor_type ix86_tune; extern enum processor_type ix86_arch; diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index a40f45ade07..0af48d12544 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -5057,6 +5057,10 @@ Returns true if the target wants GCC's default stack protect runtime support, ot Whether this target supports splitting the stack when the options described in @var{opts} have been passed. This is called after options have been parsed, so the target may reject splitting the stack in some configurations. The default version of this hook returns false. If @var{report} is true, this function may issue a warning or error; if @var{report} is false, it must simply return a value @end deftypefn +@deftypefn {Common Target Hook} {vec<const char *>} TARGET_GET_VALID_OPTION_VALUES (int @var{option_code}, const char *@var{prefix}) +The hook is used for options that have a non-trivial list of possible option values. OPTION_CODE is option code of opt_code enum type. PREFIX is used for bash completion and allows an implementation to return more specific completion based on the prefix. All string values should be allocated from heap memory and consumers should release them. +@end deftypefn + @node Miscellaneous Register Hooks @subsection Miscellaneous register hooks @cindex miscellaneous register hooks diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index 39a214e9b2c..d9dcd325d0b 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -3669,6 +3669,8 @@ generic code. @hook TARGET_SUPPORTS_SPLIT_STACK +@hook TARGET_GET_VALID_OPTION_VALUES + @node Miscellaneous Register Hooks @subsection Miscellaneous register hooks @cindex miscellaneous register hooks diff --git a/gcc/opt-suggestions.c b/gcc/opt-suggestions.c index 894eea5f37c..c68c9eedaf6 100644 --- a/gcc/opt-suggestions.c +++ b/gcc/opt-suggestions.c @@ -26,6 +26,7 @@ along with GCC; see the file COPYING3. If not see #include "params.h" #include "spellcheck.h" #include "opt-suggestions.h" +#include "common/common-target.h" #include "selftest.h" option_proposer::~option_proposer () @@ -38,7 +39,7 @@ option_proposer::suggest_option (const char *bad_opt) { /* Lazily populate m_option_suggestions. */ if (!m_option_suggestions) - build_option_suggestions (); + build_option_suggestions (NULL); gcc_assert (m_option_suggestions); /* "m_option_suggestions" is now populated. Use it. */ @@ -80,7 +81,7 @@ option_proposer::get_completions (const char *option_prefix, { /* Lazily populate m_option_suggestions. */ if (!m_option_suggestions) - build_option_suggestions (); + build_option_suggestions (option_prefix); gcc_assert (m_option_suggestions); for (unsigned i = 0; i < m_option_suggestions->length (); i++) @@ -108,7 +109,7 @@ option_proposer::suggest_completion (const char *option_prefix) } void -option_proposer::build_option_suggestions (void) +option_proposer::build_option_suggestions (const char *prefix) { gcc_assert (m_option_suggestions == NULL); m_option_suggestions = new auto_string_vec (); @@ -135,8 +136,27 @@ option_proposer::build_option_suggestions (void) } } else - add_misspelling_candidates (m_option_suggestions, option, - opt_text); + { + if (option->flags & CL_TARGET) + { + vec<const char *> option_values + = targetm_common.get_valid_option_values (i, prefix); + if (!option_values.is_empty ()) + { + for (unsigned j = 0; j < option_values.length (); j++) + { + char *with_arg = concat (opt_text, option_values[j], + NULL); + add_misspelling_candidates (m_option_suggestions, option, + with_arg); + free (with_arg); + } + } + } + else + add_misspelling_candidates (m_option_suggestions, option, + opt_text); + } break; case OPT_fsanitize_: diff --git a/gcc/opt-suggestions.h b/gcc/opt-suggestions.h index 222bafa12cd..eb932779939 100644 --- a/gcc/opt-suggestions.h +++ b/gcc/opt-suggestions.h @@ -58,8 +58,10 @@ public: private: /* Helper function for option_proposer::suggest_option. Populate m_option_suggestions with candidate strings for misspelled options. - The strings will be freed by the option_proposer's dtor. */ - void build_option_suggestions (); + The strings will be freed by the option_proposer's dtor. + PREFIX is used for bash completion suggestions, otherwise + it's set to NULL. */ + void build_option_suggestions (const char *prefix); /* Find parameter completions for --param format with SEPARATOR. Again, save the completions into results. */ diff --git a/gcc/opts.c b/gcc/opts.c index a5c9ed9d09d..dc12c2ecefd 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1090,6 +1090,21 @@ wrap_help (const char *help, while (remaining); } +/* Data structure used to print list of valid option values. */ + +struct option_help_tuple +{ + option_help_tuple (int code, vec<const char *> values): + m_code (code), m_values (values) + {} + + /* Code of an option. */ + int m_code; + + /* List of possible values. */ + vec<const char *> m_values; +}; + /* Print help for a specific front-end, etc. */ static void print_filtered_help (unsigned int include_flags, @@ -1143,6 +1158,8 @@ print_filtered_help (unsigned int include_flags, if (!opts->x_help_enum_printed) opts->x_help_enum_printed = XCNEWVAR (char, cl_enums_count); + auto_vec<option_help_tuple> help_tuples; + for (i = 0; i < cl_options_count; i++) { const struct cl_option *option = cl_options + i; @@ -1303,6 +1320,13 @@ print_filtered_help (unsigned int include_flags, if (option->var_type == CLVC_ENUM && opts->x_help_enum_printed[option->var_enum] != 2) opts->x_help_enum_printed[option->var_enum] = 1; + else + { + vec<const char *> option_values + = targetm_common.get_valid_option_values (i, NULL); + if (!option_values.is_empty ()) + help_tuples.safe_push (option_help_tuple (i, option_values)); + } } if (! found) @@ -1366,6 +1390,15 @@ print_filtered_help (unsigned int include_flags, printf ("\n\n"); opts->x_help_enum_printed[i] = 2; } + + for (unsigned i = 0; i < help_tuples.length (); i++) + { + const struct cl_option *option = cl_options + help_tuples[i].m_code; + printf (" Known valid arguments for %s option:\n ", option->opt_text); + for (unsigned j = 0; j < help_tuples[i].m_values.length (); j++) + printf (" %s", help_tuples[i].m_values[j]); + printf ("\n\n"); + } } /* Display help for a specified type of option. diff --git a/gcc/testsuite/gcc.dg/completion-4.c b/gcc/testsuite/gcc.dg/completion-4.c new file mode 100644 index 00000000000..8116811998a --- /dev/null +++ b/gcc/testsuite/gcc.dg/completion-4.c @@ -0,0 +1,6 @@ +/* { dg-do compile { target { i?86-*-* x86_64-*-* } } } */ +/* { dg-options "--completion=-march=geo" } */ + +/* { dg-begin-multiline-output "" } +-march=geode + { dg-end-multiline-output "" } */ -- 2.18.0