This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
fast-math optimization question
- From: "Steve Ellcey " <sellcey at mips dot com>
- To: <gcc at gcc dot gnu dot org>
- Date: Thu, 9 Oct 2014 11:23:27 -0700
- Subject: fast-math optimization question
- Authentication-results: sourceware.org; auth=none
I have a -ffast-math (missing?) optimization question. I noticed on MIPS
that if I compiled:
#include <math.h>
extern x;
void foo() { x = sin(log(x)); }
GCC will extend 'x' to double precision, call the double precision log and sin
functions and then truncate the result to single precision.
If instead, I have:
#include <math.h>
extern x;
void foo() { x = log(x); x = sin(x); }
Then GCC will call the single precision log and sin functions and not do
any extensions or truncations. In addition to avoiding the extend/trunc
instructions the single precision log and sin functions are presumably
faster then the double precision ones making the entire code much faster.
Is there a reason why GCC couldn't (under -ffast-math) call the single
precision routines for the first case?
Steve Ellcey
sellcey@mips.com