targhooks.c (default_builtin_reciprocal): New default target hook.
* targhooks.c (default_builtin_reciprocal): New default target hook. * targhooks.h (default_builtin_reciprocal): Add prototype. * hooks.c (hook_tree_tree_bool_null): Remove hook. * hooks.h (hook_tree_tree_bool_null): Remove prototype. * target-def.h (TARGET_BUILTIN_RECIPROCAL): Define as default_builtin_reciprocal. From-SVN: r125758
This commit is contained in:
parent
71995ede98
commit
cc2137be63
6 changed files with 23 additions and 10 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2007-06-16 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
|
* targhooks.c (default_builtin_reciprocal): New default target hook.
|
||||||
|
* targhooks.h (default_builtin_reciprocal): Add prototype.
|
||||||
|
* hooks.c (hook_tree_tree_bool_null): Remove hook.
|
||||||
|
* hooks.h (hook_tree_tree_bool_null): Remove prototype.
|
||||||
|
* target-def.h (TARGET_BUILTIN_RECIPROCAL): Define as
|
||||||
|
default_builtin_reciprocal.
|
||||||
|
|
||||||
2007-06-16 Uros Bizjak <ubizjak@gmail.com>
|
2007-06-16 Uros Bizjak <ubizjak@gmail.com>
|
||||||
|
|
||||||
PR middle-end/31723
|
PR middle-end/31723
|
||||||
|
|
|
@ -265,13 +265,6 @@ hook_constcharptr_tree_null (tree t ATTRIBUTE_UNUSED)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
tree
|
|
||||||
hook_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED,
|
|
||||||
bool ignore ATTRIBUTE_UNUSED)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
tree
|
tree
|
||||||
hook_tree_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED,
|
hook_tree_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED,
|
||||||
tree t1 ATTRIBUTE_UNUSED,
|
tree t1 ATTRIBUTE_UNUSED,
|
||||||
|
|
|
@ -58,7 +58,6 @@ extern int hook_int_void_no_regs (void);
|
||||||
|
|
||||||
extern tree hook_tree_tree_tree_null (tree, tree);
|
extern tree hook_tree_tree_tree_null (tree, tree);
|
||||||
extern tree hook_tree_tree_tree_tree_3rd_identity (tree, tree, tree);
|
extern tree hook_tree_tree_tree_tree_3rd_identity (tree, tree, tree);
|
||||||
extern tree hook_tree_tree_bool_null (tree, bool);
|
|
||||||
extern tree hook_tree_tree_tree_bool_null (tree, tree, bool);
|
extern tree hook_tree_tree_tree_bool_null (tree, tree, bool);
|
||||||
|
|
||||||
extern unsigned hook_uint_uint_constcharptrptr_0 (unsigned, const char **);
|
extern unsigned hook_uint_uint_constcharptrptr_0 (unsigned, const char **);
|
||||||
|
|
|
@ -388,7 +388,7 @@ Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
#define TARGET_FOLD_BUILTIN hook_tree_tree_tree_bool_null
|
#define TARGET_FOLD_BUILTIN hook_tree_tree_tree_bool_null
|
||||||
|
|
||||||
/* In tree-ssa-math-opts.c */
|
/* In tree-ssa-math-opts.c */
|
||||||
#define TARGET_BUILTIN_RECIPROCAL hook_tree_tree_bool_null
|
#define TARGET_BUILTIN_RECIPROCAL default_builtin_reciprocal
|
||||||
|
|
||||||
/* In varasm.c. */
|
/* In varasm.c. */
|
||||||
#ifndef TARGET_SECTION_TYPE_FLAGS
|
#ifndef TARGET_SECTION_TYPE_FLAGS
|
||||||
|
|
|
@ -338,6 +338,15 @@ default_builtin_vectorized_conversion (enum tree_code code ATTRIBUTE_UNUSED,
|
||||||
return NULL_TREE;
|
return NULL_TREE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Reciprocal. */
|
||||||
|
|
||||||
|
tree
|
||||||
|
default_builtin_reciprocal (enum built_in_function fn ATTRIBUTE_UNUSED,
|
||||||
|
bool sqrt ATTRIBUTE_UNUSED)
|
||||||
|
{
|
||||||
|
return NULL_TREE;
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
|
hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false (
|
||||||
CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
|
||||||
|
|
|
@ -55,10 +55,13 @@ extern bool default_decimal_float_supported_p (void);
|
||||||
|
|
||||||
extern const char * default_invalid_within_doloop (rtx);
|
extern const char * default_invalid_within_doloop (rtx);
|
||||||
|
|
||||||
extern tree default_builtin_vectorized_function (enum built_in_function, tree, tree);
|
extern tree default_builtin_vectorized_function
|
||||||
|
(enum built_in_function, tree, tree);
|
||||||
|
|
||||||
extern tree default_builtin_vectorized_conversion (enum tree_code, tree);
|
extern tree default_builtin_vectorized_conversion (enum tree_code, tree);
|
||||||
|
|
||||||
|
extern tree default_builtin_reciprocal (enum built_in_function, bool);
|
||||||
|
|
||||||
/* These are here, and not in hooks.[ch], because not all users of
|
/* These are here, and not in hooks.[ch], because not all users of
|
||||||
hooks.h include tm.h, and thus we don't have CUMULATIVE_ARGS. */
|
hooks.h include tm.h, and thus we don't have CUMULATIVE_ARGS. */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue