}
}
- auto_vec<string_slice> versions = get_clone_attr_versions (args, NULL);
-
- if (versions.length () == 1)
+ int num_defaults = 0;
+ auto_vec<string_slice> versions = get_clone_attr_versions
+ (args,
+ &num_defaults,
+ false);
+
+ for (auto v : versions)
+ targetm.check_target_clone_version
+ (v, &DECL_SOURCE_LOCATION (*node));
+
+ /* Lone target_clones version is always ignored for target attr semantics.
+ Only ignore under target_version semantics if it is a default
+ version. */
+ if (versions.length () == 1
+ && (TARGET_HAS_FMV_TARGET_ATTRIBUTE || num_defaults == 1))
{
- warning (OPT_Wattributes,
- "single %<target_clones%> attribute is ignored");
+ if (TARGET_HAS_FMV_TARGET_ATTRIBUTE)
+ warning (OPT_Wattributes,
+ "single %<target_clones%> attribute is ignored");
*no_add_attrs = true;
}
else
}
}
+/* Implement TARGET_CHECK_TARGET_CLONE_VERSION. */
+
+bool
+aarch64_check_target_clone_version (string_slice str, location_t *loc)
+{
+ str = str.strip ();
+
+ if (str == "default")
+ return true;
+
+ enum aarch_parse_opt_result parse_res;
+ auto isa_flags = aarch64_asm_isa_flags;
+ std::string invalid_extension;
+
+ parse_res
+ = aarch64_parse_fmv_features (str, &isa_flags, NULL, &invalid_extension);
+
+ if (loc == NULL)
+ return parse_res == AARCH_PARSE_OK;
+
+ switch (parse_res)
+ {
+ case AARCH_PARSE_OK:
+ return true;
+ case AARCH_PARSE_MISSING_ARG:
+ warning_at (*loc, OPT_Wattributes,
+ "empty string not valid for a %<target_clones%> version");
+ return false;
+ case AARCH_PARSE_INVALID_FEATURE:
+ warning_at (*loc, OPT_Wattributes,
+ "invalid feature modifier %qs in version %qB for "
+ "%<target_clones%> attribute",
+ invalid_extension.c_str (), &str);
+ return false;
+ case AARCH_PARSE_DUPLICATE_FEATURE:
+ warning_at (*loc, OPT_Wattributes,
+ "duplicate feature modifier %qs in version %qB for "
+ "%<target_clones%> attribute",
+ invalid_extension.c_str (), &str);
+ return false;
+ case AARCH_PARSE_INVALID_ARG:
+ warning_at (*loc, OPT_Wattributes,
+ "invalid feature %qs in version %qB for "
+ "%<target_clones%> attribute",
+ invalid_extension.c_str (), &str);
+ return false;
+ }
+ gcc_unreachable ();
+}
+
/* Target-specific selftests. */
#if CHECKING_P
#undef TARGET_OPTION_FUNCTION_VERSIONS
#define TARGET_OPTION_FUNCTION_VERSIONS aarch64_common_function_versions
+#undef TARGET_CHECK_TARGET_CLONE_VERSION
+#define TARGET_CHECK_TARGET_CLONE_VERSION aarch64_check_target_clone_version
+
#undef TARGET_COMPARE_VERSION_PRIORITY
#define TARGET_COMPARE_VERSION_PRIORITY aarch64_compare_version_priority
return riscv_compare_version_priority (fn1, fn2) != 0;
}
+/* Checks if the function version specifying string STR parses correctly.
+ If it is an invalid string, currently emits a diagnostic at LOC.
+ Always returns true. */
+
+bool
+riscv_check_target_clone_version (string_slice str, location_t *loc_p)
+{
+ struct riscv_feature_bits mask;
+ int prio;
+
+ /* Currently it is not possible to parse without emitting errors on failure
+ so do not reject on a failed parse, as this would then emit two
+ diagnostics. Instead let errors be emitted which will halt
+ compilation. */
+ parse_features_for_version (str, loc_p, mask, prio);
+
+ return true;
+}
+
/* Implement TARGET_MANGLE_DECL_ASSEMBLER_NAME, to add function multiversioning
suffixes. */
#undef TARGET_COMPARE_VERSION_PRIORITY
#define TARGET_COMPARE_VERSION_PRIORITY riscv_compare_version_priority
+#undef TARGET_CHECK_TARGET_CLONE_VERSION
+#define TARGET_CHECK_TARGET_CLONE_VERSION riscv_check_target_clone_version
+
#undef TARGET_OPTION_FUNCTION_VERSIONS
#define TARGET_OPTION_FUNCTION_VERSIONS riscv_common_function_versions
body must be generated.
@end deftypefn
+@deftypefn {Target Hook} bool TARGET_CHECK_TARGET_CLONE_VERSION (string_slice @var{str}, location_t *@var{loc})
+This hook is used to check if a version specified in a @code{target_clones}
+annotation is valid. @var{str} is the version to be considered.
+If @var{loc} is not @code{NULL} then emit warnings for invalid versions at
+that location. Otherwise emit no diagnostics.
+Returns @code{true} if @var{str} is a valid version string, and @code{false}
+otherwise
+@end deftypefn
+
@deftypefn {Target Hook} bool TARGET_PREDICT_DOLOOP_P (class loop *@var{loop})
Return true if we can predict it is possible to use a low-overhead loop
for a particular loop. The parameter @var{loop} is a pointer to the loop.
@hook TARGET_GENERATE_VERSION_DISPATCHER_BODY
+@hook TARGET_CHECK_TARGET_CLONE_VERSION
+
@hook TARGET_PREDICT_DOLOOP_P
@hook TARGET_HAVE_COUNT_REG_DECR_P
{
return opt_machine_mode ();
}
+
+/* Generic hook that takes a string_slice and a locations and returns false. */
+
+bool
+hook_stringslice_locationtptr_true (string_slice, location_t *)
+{
+ return true;
+}
extern opt_machine_mode hook_optmode_mode_uhwi_none (machine_mode,
unsigned HOST_WIDE_INT);
+
+extern bool hook_stringslice_locationtptr_true (string_slice, location_t *);
+
#endif
identical versions.",
tree, (void *decl), NULL)
+/* Target hook is used to ignore certain versions specified in a target_clones
+ annoration. STR is the version to be considered. */
+DEFHOOK
+(check_target_clone_version ,
+ "This hook is used to check if a version specified in a @code{target_clones}\n\
+annotation is valid. @var{str} is the version to be considered.\n\
+If @var{loc} is not @code{NULL} then emit warnings for invalid versions at\n\
+that location. Otherwise emit no diagnostics.\n\
+Returns @code{true} if @var{str} is a valid version string, and @code{false}\n\
+otherwise",
+ bool, (string_slice str, location_t *loc),
+ hook_stringslice_locationtptr_true)
+
/* Returns a code for a target-specific builtin that implements
reciprocal of a target-specific function, or NULL_TREE if not available. */
DEFHOOK
}
/* Returns an auto_vec of string_slices containing the version strings from
- ARGLIST. DEFAULT_COUNT is incremented for each default version found. */
+ ARGLIST. DEFAULT_COUNT is incremented for each default version found.
+ If FILTER is true then any invalid versions strings are not included. */
auto_vec<string_slice>
-get_clone_attr_versions (const tree arglist, int *default_count)
+get_clone_attr_versions (const tree arglist,
+ int *default_count,
+ bool filter)
{
gcc_assert (TREE_CODE (arglist) == TREE_LIST);
auto_vec<string_slice> versions;
string_slice attr = string_slice::tokenize (&str, separators);
attr = attr.strip ();
+ if (filter && !targetm.check_target_clone_version (attr, NULL))
+ continue;
+
if (attr == "default" && default_count)
(*default_count)++;
versions.safe_push (attr);
/* Returns an auto_vec of string_slices containing the version strings from
the target_clone attribute from DECL. DEFAULT_COUNT is incremented for each
- default version found. */
+ default version found. If FILTER is true then any invalid versions strings
+ are not included. */
auto_vec<string_slice>
-get_clone_versions (const tree decl, int *default_count)
+get_clone_versions (const tree decl, int *default_count, bool filter)
{
tree attr = lookup_attribute ("target_clones", DECL_ATTRIBUTES (decl));
if (!attr)
return auto_vec<string_slice> ();
tree arglist = TREE_VALUE (attr);
- return get_clone_attr_versions (arglist, default_count);
+ return get_clone_attr_versions (arglist, default_count, filter);
}
/* If DECL has a target_version attribute, returns a string_slice containing the
Returns an invalid string_slice if no attribute is present. */
extern string_slice get_target_version (const tree);
/* Returns a vector of the version strings from a target_clones attribute on
- a decl. Can also record the number of default versions found. */
-extern auto_vec<string_slice> get_clone_versions (const tree, int * = NULL);
+ a decl. Can also record the number of default versions found.
+ Use bool to control whether or not the results should
+ be filtered with TARGET_CHECK_TARGET_CLONE_VERSION. */
+extern auto_vec<string_slice> get_clone_versions
+ (const tree,int * = NULL, bool = true);
/* Returns a vector of the version strings from a target_clones attribute
- directly. */
-extern auto_vec<string_slice> get_clone_attr_versions (const tree, int *);
+ directly. Additionally takes a bool to control whether or not the results
+ should be filtered with TARGET_CHECK_TARGET_CLONE_VERSION. */
+extern auto_vec<string_slice> get_clone_attr_versions
+ (const tree, int *, bool = true);
#endif /* GCC_TREE_H */