diff options
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 17 |
2 files changed, 23 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1bb7acb..631921b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2006-05-08 Uros Bizjak <uros@kss-loka.si> + + PR target/27277 + * config/i386/i386.c (ix86_rtx_costs) [FLOAT_EXTEND]: For + standard 80387 constants, raise the cost to prevent + compress_float_constant() to generate load from memory. + 2006-05-08 Kazu Hirata <kazu@codesourcery.com> * config/arm/constraints.md (c): Fix a typo. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index a092484..df5a4e6 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -17102,7 +17102,22 @@ ix86_rtx_costs (rtx x, int code, int outer_code, int *total) if (!TARGET_SSE_MATH || mode == XFmode || (mode == DFmode && !TARGET_SSE2)) - *total = 0; + /* For standard 80387 constants, raise the cost to prevent + compress_float_constant() to generate load from memory. */ + switch (standard_80387_constant_p (XEXP (x, 0))) + { + case -1: + case 0: + *total = 0; + break; + case 1: /* 0.0 */ + *total = 1; + break; + default: + *total = (x86_ext_80387_constants & TUNEMASK + || optimize_size + ? 1 : 0); + } return false; case ABS: |