v8/third_party/fdlibm
yangguo@chromium.org 0f81d7698a Implement Math.log1p using port from fdlibm.
Port contributed by Raymond Toy <rtoy@google.com>.

R=rtoy@chromium.org
LOG=N
BUG=v8:3481

Review URL: https://codereview.chromium.org/457643002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23082 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2014-08-12 13:36:33 +00:00
..
fdlibm.cc Implement Math.log1p using port from fdlibm. 2014-08-12 13:36:33 +00:00
fdlibm.h Implement Math.log1p using port from fdlibm. 2014-08-12 13:36:33 +00:00
fdlibm.js Implement Math.log1p using port from fdlibm. 2014-08-12 13:36:33 +00:00
LICENSE Reland "Implement trigonometric functions using a fdlibm port." 2014-08-06 11:39:39 +00:00
README.v8 Reland "Implement trigonometric functions using a fdlibm port." 2014-08-06 11:39:39 +00:00

Name: Freely Distributable LIBM 
Short Name: fdlibm
URL: http://www.netlib.org/fdlibm/
Version: 5.3 
License: Freely Distributable.
License File: LICENSE.
Security Critical: yes.
License Android Compatible: yes.

Description:
This is used to provide a accurate implementation for trigonometric functions
used in V8.

Local Modifications:
For the use in V8, fdlibm has been reduced to include only sine, cosine and
tangent.  To make inlining into generated code possible, a large portion of
that has been translated to Javascript.  The rest remains in C, but has been
refactored and reformatted to interoperate with the rest of V8.