Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Feb 2008 15:30:58 +0000 (UTC)
From:      Bruce Evans <bde@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/lib/msun/src e_rem_pio2.c
Message-ID:  <200802191530.m1JFUwJe059423@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
bde         2008-02-19 15:30:58 UTC

  FreeBSD src repository

  Modified files:
    lib/msun/src         e_rem_pio2.c 
  Log:
  Optimize for 3pi/4 <= |x| <= 9pi/4 in much the same way as for
  pi/4 <= |x| <= 3pi/4.  Use the same branch ladder as for float precision.
  Remove the optimization for |x| near pi/2 and don't do it near the
  multiples of pi/2 in the newly optimized range, since it requires
  fairly large code to handle only relativley few cases.  Ifdef out
  optimization for |x| <= pi/4 since this case can't occur because it
  is done in callers.
  
  On amd64 (A64), for cos() and sin() with uniformly distributed args,
  no cache misses, some parallelism in the caller, and good but not great
  CC and CFLAGS, etc., this saves about 40 cycles or 38% in the newly
  optimized range, or about 27% on average across the range |x| <= 2pi
  (~65 cycles for most args, while the A64 hardware fcos and fsin take
  ~75 cycles for half the args and 125 cycles for the other half).  The
  speedup for tan() is much smaller, especially relatively.  The speedup
  on i386 (A64) is slightly smaller, especially relatively.  i386 is
  still much slower than amd64 here (unlike in the float case where it
  is slightly faster).
  
  Revision  Changes    Path
  1.11      +56 -18    src/lib/msun/src/e_rem_pio2.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200802191530.m1JFUwJe059423>