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

Issue 23537067: Add support for keyed-call on arrays of fast elements (Closed)

Created:
7 years, 3 months ago by Toon Verwaest
Modified:
7 years, 1 month ago
Reviewers:
danno
CC:
v8-dev
Visibility:
Public.

Description

Add support for keyed-call on arrays of fast elements R=danno@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=17746

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : Compare with actual map loaded from the context #

Total comments: 20

Patch Set 4 : Addressed comments #

Total comments: 4

Patch Set 5 : Addressed comments #

Patch Set 6 : Rebase #

Patch Set 7 : Rebased on mvstanton's deoptimizer cleanup #

Patch Set 8 : X64 port #

Patch Set 9 : ARM port and clean up frameless SP-relative argument fetching #

Unified diffs Side-by-side diffs Delta from patch set Stats (+488 lines, -82 lines) Patch
M src/arm/code-stubs-arm.cc View 1 2 3 4 5 6 7 8 2 chunks +31 lines, -0 lines 0 comments Download
M src/arm/lithium-arm.cc View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -2 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 1 2 3 4 5 6 7 8 2 chunks +27 lines, -3 lines 0 comments Download
M src/ast.h View 1 2 3 4 5 6 3 chunks +3 lines, -0 lines 0 comments Download
M src/ast.cc View 1 2 3 4 5 6 2 chunks +5 lines, -1 line 0 comments Download
M src/code-stubs.h View 1 2 3 4 5 6 8 chunks +86 lines, -6 lines 0 comments Download
M src/code-stubs.cc View 1 2 3 4 5 6 7 3 chunks +12 lines, -0 lines 0 comments Download
M src/code-stubs-hydrogen.cc View 1 2 3 4 5 6 1 chunk +26 lines, -0 lines 0 comments Download
M src/compiler.h View 1 2 3 4 5 2 chunks +7 lines, -0 lines 0 comments Download
M src/compiler.cc View 1 2 3 4 5 6 5 chunks +14 lines, -6 lines 0 comments Download
M src/deoptimizer.cc View 1 2 3 4 5 6 3 chunks +11 lines, -5 lines 0 comments Download
M src/frames.cc View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M src/heap.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M src/heap.cc View 1 2 3 4 5 6 1 chunk +6 lines, -0 lines 0 comments Download
M src/hydrogen.h View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download
M src/hydrogen.cc View 1 2 3 4 5 6 2 chunks +18 lines, -6 lines 0 comments Download
M src/hydrogen-instructions.h View 1 2 3 4 5 6 2 chunks +23 lines, -2 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 2 3 4 5 6 7 2 chunks +31 lines, -0 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 1 2 3 4 5 6 7 8 2 chunks +27 lines, -3 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 1 2 3 4 5 6 1 chunk +4 lines, -2 lines 0 comments Download
M src/ic.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/ic.cc View 1 2 3 4 5 6 2 chunks +48 lines, -8 lines 0 comments Download
M src/isolate.cc View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
M src/lithium.cc View 1 2 3 4 5 6 1 chunk +2 lines, -1 line 0 comments Download
M src/objects-inl.h View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
M src/type-info.h View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/type-info.cc View 1 2 3 4 5 3 chunks +10 lines, -2 lines 0 comments Download
M src/typing.cc View 1 2 3 4 5 1 chunk +1 line, -2 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 2 3 4 5 6 7 2 chunks +31 lines, -0 lines 0 comments Download
M src/x64/lithium-codegen-x64.cc View 1 2 3 4 5 6 7 8 2 chunks +19 lines, -2 lines 0 comments Download
M src/x64/lithium-x64.cc View 1 2 3 4 5 6 7 1 chunk +4 lines, -2 lines 0 comments Download
A + test/mjsunit/keyed-array-call.js View 1 2 3 4 5 1 chunk +23 lines, -27 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
Toon Verwaest
PTAL. Ia32 only for now.
7 years, 3 months ago (2013-09-24 16:24:43 UTC) #1
danno
https://codereview.chromium.org/23537067/diff/6001/src/code-stubs-hydrogen.cc File src/code-stubs-hydrogen.cc (right): https://codereview.chromium.org/23537067/diff/6001/src/code-stubs-hydrogen.cc#newcode586 src/code-stubs-hydrogen.cc:586: } This is a total hack. I am not ...
7 years, 2 months ago (2013-10-02 08:49:10 UTC) #2
Toon Verwaest
Addressed comments, PTAL again. https://chromiumcodereview.appspot.com/23537067/diff/6001/src/code-stubs-hydrogen.cc File src/code-stubs-hydrogen.cc (right): https://chromiumcodereview.appspot.com/23537067/diff/6001/src/code-stubs-hydrogen.cc#newcode586 src/code-stubs-hydrogen.cc:586: } On 2013/10/02 08:49:11, danno ...
7 years, 2 months ago (2013-10-02 16:28:16 UTC) #3
danno
https://codereview.chromium.org/23537067/diff/13001/src/ia32/lithium-ia32.cc File src/ia32/lithium-ia32.cc (right): https://codereview.chromium.org/23537067/diff/13001/src/ia32/lithium-ia32.cc#newcode1403 src/ia32/lithium-ia32.cc:1403: if (instr->IsTailCall()) return DefineFixed(result, eax); nit: I think I ...
7 years, 2 months ago (2013-10-11 16:13:24 UTC) #4
Toon Verwaest
Addressed comments, PTAL again. https://chromiumcodereview.appspot.com/23537067/diff/13001/src/ia32/lithium-ia32.cc File src/ia32/lithium-ia32.cc (right): https://chromiumcodereview.appspot.com/23537067/diff/13001/src/ia32/lithium-ia32.cc#newcode1403 src/ia32/lithium-ia32.cc:1403: if (instr->IsTailCall()) return DefineFixed(result, eax); ...
7 years, 1 month ago (2013-11-04 13:59:44 UTC) #5
danno
lgtm
7 years, 1 month ago (2013-11-14 13:18:56 UTC) #6
Toon Verwaest
7 years, 1 month ago (2013-11-14 13:46:41 UTC) #7
Message was sent while issue was closed.
Committed patchset #9 manually as r17746 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698