Comment #3 on issue 3903 by [email protected]: Math.log10 is unexpectedly slow
https://code.google.com/p/v8/issues/detail?id=3903

I'd like to correct my previous comment.

In Chrome 40 we use a polyfill to implement Math.log10, which is why the performance difference is close to none.

In Chrome 41 we started using the previously linked Javascript port of fdlibm. The new implementation is more precise, but also a lot slower. It does some preprocessing before calling to Math.log, which is implemented in C++.

I wonder whether it makes sense to port fdlibm's log to avoid the call overhead.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to