From: Ramana Radhakrishnan Date: Wed, 24 Jun 2015 08:28:08 +0000 (+0000) Subject: re PR target/63408 (GCC emits incorrect fixed->fp conversion instruction on Cortex... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce72a3c995a9731307583933a01d2599654d1a36;p=gcc.git re PR target/63408 (GCC emits incorrect fixed->fp conversion instruction on Cortex-M4 target) Fix PR target/63408 The attached patch fixes PR target/63408 and adds a regression test for the same. The problem is essentially that vfp3_const_double_for_fract_bits() needs to be aware that negative values cannot be used in this context. Tested with a bootstrap and regression test run on armhf. Applied. 2015-06-24 Ramana Radhakrishnan PR target/63408 * config/arm/arm.c (vfp3_const_double_for_fract_bits): Disable for negative numbers. 2015-06-24 Ramana Radhakrishnan PR target/63408 * gcc.target/arm/pr63408.c: New test. From-SVN: r224879 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d1f82b29f53..8a95bc27bb7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-06-24 Ramana Radhakrishnan + + PR target/63408 + * config/arm/arm.c (vfp3_const_double_for_fract_bits): Disable + for negative numbers. + 2015-06-24 Andreas Krebbel PR rtl-optimization/66306 diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index ced4231cd8c..09191e5d2c2 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -27382,7 +27382,8 @@ vfp3_const_double_for_fract_bits (rtx operand) return 0; REAL_VALUE_FROM_CONST_DOUBLE (r0, operand); - if (exact_real_inverse (DFmode, &r0)) + if (exact_real_inverse (DFmode, &r0) + && !REAL_VALUE_NEGATIVE (r0)) { if (exact_real_truncate (DFmode, &r0)) { diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ee58cdc36a2..daadf4c4229 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-06-24 Ramana Radhakrishnan + + PR target/63408 + * gcc.target/arm/pr63408.c: New test. + 2015-06-24 James Greenhalgh * lib/c-torture.exp: Don't call check_effective_target_lto diff --git a/gcc/testsuite/gcc.target/arm/pr63408.c b/gcc/testsuite/gcc.target/arm/pr63408.c new file mode 100644 index 00000000000..850596bd180 --- /dev/null +++ b/gcc/testsuite/gcc.target/arm/pr63408.c @@ -0,0 +1,23 @@ +/* { dg-do run } */ +/* { dg-options "-O2" } */ +void abort (void) __attribute__ ((noreturn)); +float __attribute__((noinline)) +f(float a, int b) +{ + return a - (((float)b / 0x7fffffff) * 100); +} + +int +main (void) +{ + float a[] = { 100.0, 0.0, 0.0}; + int b[] = { 0x7fffffff, 0x7fffffff/100.0f, -0x7fffffff / 100.0f}; + float c[] = { 0.0, -1.0, 1.0 }; + int i; + + for (i = 0; i < (sizeof(a) / sizeof (float)); i++) + if (f (a[i], b[i]) != c[i]) + abort (); + + return 0; +}