Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Issue 50563003: Implement Math.sin, cos and tan using table lookup and spline interpolation. (Closed)

Created:
7 years, 1 month ago by Yang
Modified:
7 years, 1 month ago
CC:
v8-dev
Visibility:
Public.

Description

Implement Math.sin, cos and tan using table lookup and spline interpolation. R=jkummerow@chromium.org BUG= Committed: https://code.google.com/p/v8/source/detail?r=17594

Patch Set 1 #

Total comments: 5

Patch Set 2 : correct comment #

Patch Set 3 : addressed comments #

Total comments: 5

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+271 lines, -196 lines) Patch
M src/arm/full-codegen-arm.cc View 2 chunks +7 lines, -33 lines 0 comments Download
M src/hydrogen.cc View 6 chunks +15 lines, -37 lines 0 comments Download
M src/ia32/full-codegen-ia32.cc View 2 chunks +7 lines, -33 lines 0 comments Download
M src/math.js View 1 2 3 5 chunks +69 lines, -3 lines 0 comments Download
M src/mips/full-codegen-mips.cc View 2 chunks +7 lines, -36 lines 0 comments Download
M src/objects.h View 4 chunks +7 lines, -3 lines 0 comments Download
M src/objects.cc View 1 2 2 chunks +10 lines, -14 lines 0 comments Download
M src/objects-inl.h View 1 2 2 chunks +3 lines, -0 lines 0 comments Download
M src/runtime.h View 3 chunks +3 lines, -3 lines 0 comments Download
M src/runtime.cc View 1 2 2 chunks +43 lines, -0 lines 0 comments Download
M src/x64/full-codegen-x64.cc View 2 chunks +7 lines, -33 lines 0 comments Download
M test/mjsunit/sin-cos.js View 1 2 3 4 5 1 chunk +93 lines, -1 line 0 comments Download

Messages

Total messages: 7 (0 generated)
Yang
Please take a look. For the record, the root mean square of the absolute error ...
7 years, 1 month ago (2013-10-29 15:56:15 UTC) #1
Jakob Kummerow
LGTM with comments. https://codereview.chromium.org/50563003/diff/1/src/math.js File src/math.js (right): https://codereview.chromium.org/50563003/diff/1/src/math.js#newcode220 src/math.js:220: var samples = 2048; // Table ...
7 years, 1 month ago (2013-10-29 17:17:53 UTC) #2
Sven Panne
DBC https://codereview.chromium.org/50563003/diff/80001/src/math.js File src/math.js (right): https://codereview.chromium.org/50563003/diff/80001/src/math.js#newcode207 src/math.js:207: var MathSinImpl = function(x) { Why do we ...
7 years, 1 month ago (2013-10-30 07:51:56 UTC) #3
Jakob Kummerow
https://codereview.chromium.org/50563003/diff/80001/src/math.js File src/math.js (right): https://codereview.chromium.org/50563003/diff/80001/src/math.js#newcode207 src/math.js:207: var MathSinImpl = function(x) { On 2013/10/30 07:51:56, Sven ...
7 years, 1 month ago (2013-10-30 08:04:44 UTC) #4
Sven Panne
https://codereview.chromium.org/50563003/diff/80001/src/math.js File src/math.js (right): https://codereview.chromium.org/50563003/diff/80001/src/math.js#newcode207 src/math.js:207: var MathSinImpl = function(x) { On 2013/10/30 08:04:44, Jakob ...
7 years, 1 month ago (2013-10-30 08:19:10 UTC) #5
Yang
On 2013/10/30 08:19:10, Sven Panne wrote: > https://codereview.chromium.org/50563003/diff/80001/src/math.js > File src/math.js (right): > > https://codereview.chromium.org/50563003/diff/80001/src/math.js#newcode207 ...
7 years, 1 month ago (2013-10-30 12:33:19 UTC) #6
Yang
7 years, 1 month ago (2013-11-08 13:10:51 UTC) #7
Message was sent while issue was closed.
Committed patchset #6 manually as r17594 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698