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

Issue 6374002: X64 Crank: Implemented DoBranch and all *AndBranch comparisons. (Closed)

Created:
9 years, 11 months ago by Lasse Reichstein
Modified:
9 years, 6 months ago
Reviewers:
William Hesse, Rico
CC:
v8-dev
Visibility:
Public.

Description

X64 Crank: Implemented DoBranch and all *AndBranch comparisons. Committed: http://code.google.com/p/v8/source/detail?r=6385

Patch Set 1 #

Total comments: 21

Patch Set 2 : Address review comments. #

Patch Set 3 : Removed unnecessary temporary. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+732 lines, -68 lines) Patch
M src/ia32/lithium-codegen-ia32.cc View 1 2 12 chunks +22 lines, -23 lines 0 comments Download
M src/objects.h View 1 2 2 chunks +6 lines, -2 lines 0 comments Download
M src/x64/assembler-x64.h View 1 1 chunk +4 lines, -0 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 2 chunks +107 lines, -4 lines 0 comments Download
M src/x64/lithium-codegen-x64.h View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/x64/lithium-codegen-x64.cc View 1 2 15 chunks +418 lines, -26 lines 0 comments Download
M src/x64/lithium-x64.h View 1 2 2 chunks +4 lines, -6 lines 0 comments Download
M src/x64/lithium-x64.cc View 1 2 2 chunks +120 lines, -4 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 2 chunks +8 lines, -0 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 2 chunks +41 lines, -0 lines 0 comments Download
M test/cctest/cctest.status View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 4 (0 generated)
Lasse Reichstein
9 years, 11 months ago (2011-01-18 13:14:50 UTC) #1
William Hesse
LGTM, with comments. http://codereview.chromium.org/6374002/diff/1/src/x64/code-stubs-x64.cc File src/x64/code-stubs-x64.cc (right): http://codereview.chromium.org/6374002/diff/1/src/x64/code-stubs-x64.cc#newcode4333 src/x64/code-stubs-x64.cc:4333: __ sbbl(rax, rcx); // Subtract one ...
9 years, 11 months ago (2011-01-18 14:01:50 UTC) #2
Lasse Reichstein
http://codereview.chromium.org/6374002/diff/1/src/x64/code-stubs-x64.cc File src/x64/code-stubs-x64.cc (right): http://codereview.chromium.org/6374002/diff/1/src/x64/code-stubs-x64.cc#newcode4333 src/x64/code-stubs-x64.cc:4333: __ sbbl(rax, rcx); // Subtract one if below (aka. ...
9 years, 11 months ago (2011-01-19 09:20:35 UTC) #3
Lasse Reichstein
9 years, 11 months ago (2011-01-19 10:14:53 UTC) #4
http://codereview.chromium.org/6374002/diff/1/src/x64/lithium-codegen-x64.cc
File src/x64/lithium-codegen-x64.cc (right):

http://codereview.chromium.org/6374002/diff/1/src/x64/lithium-codegen-x64.cc#...
src/x64/lithium-codegen-x64.cc:1344: __ CmpObjectType(temp, JS_FUNCTION_TYPE,
temp2);
I removed the second temp register, and just stopped claiming (incorrectly) that
the function doesn't clobber input.
The above line would actually clobber input if it is aliased to temp2.

Powered by Google App Engine
This is Rietveld 408576698