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

Issue 159584: X64: Fix error in division & modulus, adjust mjsunit test status, fix lint er... (Closed)

Created:
11 years, 4 months ago by William Hesse
Modified:
9 years, 7 months ago
CC:
v8-dev
Visibility:
Public.

Description

X64: Fix error in division & modulus, adjust mjsunit test status, fix lint error in objects.h Committed: http://code.google.com/p/v8/source/detail?r=2581

Patch Set 1 #

Patch Set 2 : '' #

Total comments: 3

Patch Set 3 : '' #

Total comments: 6

Patch Set 4 : '' #

Patch Set 5 : '' #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+70 lines, -58 lines) Patch
M src/objects.h View 1 2 3 1 chunk +7 lines, -5 lines 0 comments Download
M src/x64/assembler-x64.h View 3 1 chunk +5 lines, -1 line 0 comments Download
M src/x64/assembler-x64.cc View 3 3 chunks +17 lines, -1 line 0 comments Download
M src/x64/codegen-x64.cc View 1 2 3 10 chunks +39 lines, -45 lines 1 comment Download
M src/x64/macro-assembler-x64.cc View 3 1 chunk +2 lines, -2 lines 0 comments Download
M test/mjsunit/mjsunit.status View 1 2 3 1 chunk +0 lines, -4 lines 0 comments Download

Messages

Total messages: 6 (0 generated)
William Hesse
11 years, 4 months ago (2009-07-29 11:39:01 UTC) #1
Lasse Reichstein
LGTM http://codereview.chromium.org/159584/diff/9/1004 File src/x64/codegen-x64.cc (right): http://codereview.chromium.org/159584/diff/9/1004#newcode4968 Line 4968: if (!left_is_in_rax) __ movq(rax, left->reg()); Use movsxlq(rax, ...
11 years, 4 months ago (2009-07-29 13:03:56 UTC) #2
William Hesse
Comments addressed by using idivl instead of idivq. Please rereview.
11 years, 4 months ago (2009-07-29 14:36:12 UTC) #3
Lasse Reichstein
LGTM http://codereview.chromium.org/159584/diff/14/17 File src/x64/codegen-x64.cc (right): http://codereview.chromium.org/159584/diff/14/17#newcode5009 Line 5009: // zero. The frame is unchanged in ...
11 years, 4 months ago (2009-07-30 05:11:16 UTC) #4
William Hesse
http://codereview.chromium.org/159584/diff/14/17 File src/x64/codegen-x64.cc (right): http://codereview.chromium.org/159584/diff/14/17#newcode5009 Line 5009: // zero. The frame is unchanged in this ...
11 years, 4 months ago (2009-07-30 07:29:03 UTC) #5
Kevin Millikin (Chromium)
11 years, 4 months ago (2009-07-30 07:52:05 UTC) #6
Drive by.

http://codereview.chromium.org/159584/diff/38/1017
File src/x64/codegen-x64.cc (right):

http://codereview.chromium.org/159584/diff/38/1017#newcode5009
Line 5009: // and the target, so a Label can be used.
To me this is less precise than what was before.

Try: "The frame is unchanged on all paths reaching non_zero_result, so..." or
"There is no frame effect on any path reaching non_zero_result, so...".

And write the same thing at both sites so the reader doesn't have to puzzle out
whether it's the same reason or a different one.

Powered by Google App Engine
This is Rietveld 408576698