aboutsummaryrefslogtreecommitdiff
path: root/gcc/mode-switching.c
diff options
context:
space:
mode:
authorAnatoly Sokolov <aesok@post.ru>2010-09-02 18:29:37 +0400
committerAnatoly Sokolov <aesok@gcc.gnu.org>2010-09-02 18:29:37 +0400
commit07b8f0a812a056b69fcaf00bde67aa74b5b02397 (patch)
tree8800ae6420f6689c40bea9995085ad6bf47c0f65 /gcc/mode-switching.c
parent844022b747eebc8f02c0e7b4165cc10b7521432e (diff)
downloadgcc-07b8f0a812a056b69fcaf00bde67aa74b5b02397.zip
gcc-07b8f0a812a056b69fcaf00bde67aa74b5b02397.tar.gz
gcc-07b8f0a812a056b69fcaf00bde67aa74b5b02397.tar.bz2
target.def (class_likely_spilled_p): New hook.
* target.def (class_likely_spilled_p): New hook. * doc/tm.texi.in (TARGET_CLASS_LIKELY_SPILLED_P): Document. * doc/tm.texi: Regenerate. * targhooks.c (default_class_likely_spilled_p): New function. * targhooks.h (default_class_likely_spilled_p): Declare. * regs.h (CLASS_LIKELY_SPILLED_P): Remove. * combine.c: (cant_combine_insn_p, likely_spilled_retval_p): Use TARGET_CLASS_LIKELY_SPILLED_P target hook. Use HARD_REGISTER_P macro. Use fixed_reg_set instead of fixed_regs. * cse.c (hash_rtx_cb): Use TARGET_CLASS_LIKELY_SPILLED_P target hook. * calls.c (avoid_likely_spilled_reg): Ditto. * ira-conflicts.c: (ira_build_conflicts): Ditto. * ira.c (update_equiv_regs): Ditto. * mode-switching.c (create_pre_exit): Ditto. * regmove.c (find_matches): Ditto. (regclass_compatible_p): Use TARGET_CLASS_LIKELY_SPILLED_P target hook. * reload.c (SMALL_REGISTER_CLASS_P): Remove macro. (small_register_class_p): New inline function. (push_secondary_reload, find_reusable_reload, find_reloads): Use small_register_class_p instead of SMALL_REGISTER_CLASS_P. * config/i386/i386.h (CLASS_LIKELY_SPILLED_P): Remove. * config/i386/i386.c (ix86_class_likely_spilled_p): New. (TARGET_CLASS_LIKELY_SPILLED_P): Define. From-SVN: r163779
Diffstat (limited to 'gcc/mode-switching.c')
-rw-r--r--gcc/mode-switching.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/mode-switching.c b/gcc/mode-switching.c
index 306fb5d..88dca02 100644
--- a/gcc/mode-switching.c
+++ b/gcc/mode-switching.c
@@ -387,7 +387,7 @@ create_pre_exit (int n_entities, int *entity_map, const int *num_modes)
gcc_assert (!nregs
|| forced_late_switch
|| short_block
- || !(CLASS_LIKELY_SPILLED_P
+ || !(targetm.class_likely_spilled_p
(REGNO_REG_CLASS (ret_start)))
|| (nregs
!= hard_regno_nregs[ret_start][GET_MODE (ret_reg)])