i386: Add clear_ratio to processor_costs
authorH.J. Lu <hongjiu.lu@intel.com>
Thu, 17 Oct 2019 14:34:15 +0000 (14:34 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Thu, 17 Oct 2019 14:34:15 +0000 (07:34 -0700)
commit25e22b199bee93f071e8f16e2f0c0684f7a6fe98
treea0f9e6750cfcca0834f5fa08a27d27c713c45153
parent47519a5687d48af4b932d54b0525fafcdc0e48d6
i386: Add clear_ratio to processor_costs

i386.h has

 #define CLEAR_RATIO(speed) ((speed) ? MIN (6, ix86_cost->move_ratio) : 2)

It is impossible to have CLEAR_RATIO > 6.  This patch adds clear_ratio
to processor_costs, sets it to the minimum of 6 and move_ratio in all
cost models and defines CLEAR_RATIO with clear_ratio.

* config/i386/i386.h (processor_costs): Add clear_ratio.
(CLEAR_RATIO): Remove MIN and use ix86_cost->clear_ratio.
* config/i386/x86-tune-costs.h: Set clear_ratio to the minimum
of 6 and move_ratio in all cost models.

From-SVN: r277114
gcc/ChangeLog
gcc/config/i386/i386.h
gcc/config/i386/x86-tune-costs.h