Re: RFR: JDK-8301205: Port fdlibm log10 to Java [v3]

2023-01-30 Thread Joe Darcy
> Restarting the port of FDLIBM to Java with the log10 method. > > There are two port, the first a near-transliteration from C port to use as a > test reference in > > test/jdk/java/lang/StrictMath/FdlibmTranslit.java > > and a more idiomatic Java port in > > src/java.base/share/classes/java/

Re: RFR: JDK-8301205: Port fdlibm log10 to Java [v2]

2023-01-30 Thread Brian Burkhalter
On Fri, 27 Jan 2023 17:53:40 GMT, Joe Darcy wrote: >> Restarting the port of FDLIBM to Java with the log10 method. >> >> There are two port, the first a near-transliteration from C port to use as a >> test reference in >> >> test/jdk/java/lang/StrictMath/FdlibmTranslit.java >> >> and a more i

Re: RFR: JDK-8301205: Port fdlibm log10 to Java [v2]

2023-01-27 Thread Joe Darcy
On Fri, 27 Jan 2023 13:47:07 GMT, Raffaello Giulietti wrote: >> src/java.base/share/classes/java/lang/FdLibm.java line 820: >> >>> 818: hx = (hx & 0x000f_) | ((0x3ff - i) << 20); >>> 819: y = (double)(k + i); >>> 820: x = __HI(x, hx); >> >> `

Re: RFR: JDK-8301205: Port fdlibm log10 to Java [v2]

2023-01-27 Thread Joe Darcy
> Restarting the port of FDLIBM to Java with the log10 method. > > There are two port, the first a near-transliteration from C port to use as a > test reference in > > test/jdk/java/lang/StrictMath/FdlibmTranslit.java > > and a more idiomatic Java port in > > src/java.base/share/classes/java/

Re: RFR: JDK-8301205: Port fdlibm log10 to Java

2023-01-27 Thread Raffaello Giulietti
On Fri, 27 Jan 2023 06:52:31 GMT, Joe Darcy wrote: > Restarting the port of FDLIBM to Java with the log10 method. > > There are two port, the first a near-transliteration from C port to use as a > test reference in > > test/jdk/java/lang/StrictMath/FdlibmTranslit.java > > and a more idiomatic

Re: RFR: JDK-8301205: Port fdlibm log10 to Java

2023-01-27 Thread Raffaello Giulietti
On Fri, 27 Jan 2023 13:45:18 GMT, Raffaello Giulietti wrote: >> Restarting the port of FDLIBM to Java with the log10 method. >> >> There are two port, the first a near-transliteration from C port to use as a >> test reference in >> >> test/jdk/java/lang/StrictMath/FdlibmTranslit.java >> >> a

Re: RFR: JDK-8301205: Port fdlibm log10 to Java

2023-01-26 Thread Joe Darcy
On Fri, 27 Jan 2023 06:52:31 GMT, Joe Darcy wrote: > Restarting the port of FDLIBM to Java with the log10 method. > > There are two port, the first a near-transliteration from C port to use as a > test reference in > > test/jdk/java/lang/StrictMath/FdlibmTranslit.java > > and a more idiomatic

RFR: JDK-8301205: Port fdlibm log10 to Java

2023-01-26 Thread Joe Darcy
Restarting the port of FDLIBM to Java with the log10 method. There are two port, the first a near-transliteration from C port to use as a test reference in test/jdk/java/lang/StrictMath/FdlibmTranslit.java and a more idiomatic Java port in src/java.base/share/classes/java/lang/FdLibm.java Fi