diff options
author | Anatoly Sokolov <aesok@post.ru> | 2010-10-06 22:12:49 +0400 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2010-10-06 22:12:49 +0400 |
commit | 32bd8fcfdabaf7b41714e75d722ee6c3ed380aec (patch) | |
tree | 06e65a39b8b30c010360e104fb790acb41078e7a /gcc/doc/tm.texi | |
parent | d2ab66aa02a67a736eb2063b9f94390204401478 (diff) | |
download | gcc-32bd8fcfdabaf7b41714e75d722ee6c3ed380aec.zip gcc-32bd8fcfdabaf7b41714e75d722ee6c3ed380aec.tar.gz gcc-32bd8fcfdabaf7b41714e75d722ee6c3ed380aec.tar.bz2 |
tm.texi.in (CLASS_LIKELY_SPILLED_P): Remove documentation.
* doc/tm.texi.in (CLASS_LIKELY_SPILLED_P): Remove documentation.
* doc/tm.texi.in: Regenerate.
* system.h (CLASS_LIKELY_SPILLED_P): Poison.
* targhooks.c (default_class_likely_spilled_p): Don't use the
CLASS_LIKELY_SPILLED_P macro.
* config\arm\arm.md: Update comment.
From-SVN: r165060
Diffstat (limited to 'gcc/doc/tm.texi')
-rw-r--r-- | gcc/doc/tm.texi | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index e1e0957..c686cbc 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -2852,24 +2852,6 @@ the only effect of such implementation would be to slow down register allocation. @end deftypefn -@defmac CLASS_LIKELY_SPILLED_P (@var{class}) -A C expression whose value is nonzero if pseudos that have been assigned -to registers of class @var{class} would likely be spilled because -registers of @var{class} are needed for spill registers. - -The default value of this macro returns 1 if @var{class} has exactly one -register and zero otherwise. On most machines, this default should be -used. Only define this macro to some other expression if pseudos -allocated by @file{local-alloc.c} end up in memory because their hard -registers were needed for spill registers. If this macro returns nonzero -for those classes, those pseudos will only be allocated by -@file{global.c}, which knows how to reallocate the pseudo to another -register. If there would not be another register available for -reallocation, you should not change the definition of this macro since -the only effect of such a definition would be to slow down register -allocation. -@end defmac - @defmac CLASS_MAX_NREGS (@var{class}, @var{mode}) A C expression for the maximum number of consecutive registers of class @var{class} needed to hold a value of mode @var{mode}. |