From 366703755a532b050e34c55be9b8d3f35162dcf8 Mon Sep 17 00:00:00 2001 From: law Date: Sun, 30 Aug 1998 19:21:22 +0000 Subject: [PATCH] * expr.c (expand_expr): Change ">" to ">=" making MOVE_RATIO use consistent. * tm.texi (Costs): Say MOVE_RATIO is number of mem-mem move *sequences* *below* which scalar moves will be used. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22107 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 7 +++++++ gcc/expr.c | 2 +- gcc/tm.texi | 6 +++++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 159983f..7af6216 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +Sun Aug 30 20:19:43 1998 Hans-Peter Nilsson + + * expr.c (expand_expr): Change ">" to ">=" making MOVE_RATIO use + consistent. + * tm.texi (Costs): Say MOVE_RATIO is number of mem-mem move + *sequences* *below* which scalar moves will be used. + Sun Aug 30 17:18:43 1998 Jeffrey A Law (law@cygnus.com) * collect2.c (mktemp): Delete unused declaration. diff --git a/gcc/expr.c b/gcc/expr.c index 22fc5f7..0390126 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5889,7 +5889,7 @@ expand_expr (exp, target, tmode, modifier) && (move_by_pieces_ninsns (TREE_INT_CST_LOW (TYPE_SIZE (type))/BITS_PER_UNIT, TYPE_ALIGN (type) / BITS_PER_UNIT) - > MOVE_RATIO) + >= MOVE_RATIO) && ! mostly_zeros_p (exp)))) || (modifier == EXPAND_INITIALIZER && TREE_CONSTANT (exp))) { diff --git a/gcc/tm.texi b/gcc/tm.texi index bf9aa4a..2f72176 100644 --- a/gcc/tm.texi +++ b/gcc/tm.texi @@ -4727,10 +4727,14 @@ than good.) @findex MOVE_RATIO @item MOVE_RATIO -The number of scalar move insns which should be generated instead of a +The threshold of number of scalar memory-to-memory move insns, @emph{below} +which a sequence of insns should be generated instead of a string move insn or a library call. Increasing the value will always make code faster, but eventually incurs high cost in increased code size. +Note that on machines with no memory-to-memory move insns, this macro denotes +the corresponding number of memory-to-memory @emph{sequences}. + If you don't define this, a reasonable default is used. @findex NO_FUNCTION_CSE -- 2.7.4