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

Issue 1328603003: Vector ICs: platform support for vector-based stores. (Closed)

Created:
5 years, 3 months ago by mvstanton
Modified:
5 years, 3 months ago
CC:
v8-dev, v8-mips-ports_googlegroups.com, rmcilroy
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Vector ICs: platform support for vector-based stores. The last changes for vector store functionality, they are in 3 areas: 1) The new vector [keyed] store code stubs - implementation. 2) IC and handler compiler adjustments 3) Odds and ends. A change in ast.cc, a test update, a small Oracle fix. BUG= Committed: https://crrev.com/63af1b3aec6547e7cdf502666ff79c562de8b679 Cr-Commit-Position: refs/heads/master@{#30570}

Patch Set 1 #

Patch Set 2 : Fix x64 release compile. #

Patch Set 3 : MIPS* ports. #

Total comments: 9

Patch Set 4 : Addressed comments. #

Patch Set 5 : REBASE and turn off flag. #

Patch Set 6 : Fix rebase issue. #

Patch Set 7 : mips build fixes. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1495 lines, -177 lines) Patch
M src/arm/code-stubs-arm.cc View 1 2 3 4 5 3 chunks +168 lines, -5 lines 0 comments Download
M src/arm64/code-stubs-arm64.cc View 1 2 3 4 5 2 chunks +153 lines, -4 lines 0 comments Download
M src/ast.cc View 1 chunk +3 lines, -1 line 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 2 3 4 2 chunks +300 lines, -2 lines 0 comments Download
M src/ic/access-compiler.h View 1 chunk +0 lines, -3 lines 0 comments Download
M src/ic/arm/access-compiler-arm.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/ic/arm/handler-compiler-arm.cc View 2 chunks +19 lines, -8 lines 0 comments Download
M src/ic/arm/ic-arm.cc View 3 chunks +19 lines, -7 lines 0 comments Download
M src/ic/arm/ic-compiler-arm.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/ic/arm/stub-cache-arm.cc View 1 chunk +8 lines, -2 lines 0 comments Download
M src/ic/arm64/access-compiler-arm64.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/ic/arm64/handler-compiler-arm64.cc View 2 chunks +19 lines, -9 lines 0 comments Download
M src/ic/arm64/ic-arm64.cc View 3 chunks +9 lines, -7 lines 0 comments Download
M src/ic/arm64/ic-compiler-arm64.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/ic/arm64/stub-cache-arm64.cc View 1 chunk +8 lines, -2 lines 0 comments Download
M src/ic/ia32/access-compiler-ia32.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/ic/ia32/handler-compiler-ia32.cc View 5 chunks +31 lines, -12 lines 0 comments Download
M src/ic/ia32/ic-compiler-ia32.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/ic/ia32/ic-ia32.cc View 3 chunks +21 lines, -5 lines 0 comments Download
M src/ic/ia32/stub-cache-ia32.cc View 3 chunks +29 lines, -17 lines 0 comments Download
M src/ic/mips/access-compiler-mips.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M src/ic/mips/handler-compiler-mips.cc View 1 2 2 chunks +19 lines, -8 lines 0 comments Download
M src/ic/mips/ic-compiler-mips.cc View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M src/ic/mips/ic-mips.cc View 1 2 3 4 5 6 3 chunks +8 lines, -6 lines 0 comments Download
M src/ic/mips/stub-cache-mips.cc View 1 2 1 chunk +8 lines, -2 lines 0 comments Download
M src/ic/mips64/access-compiler-mips64.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M src/ic/mips64/handler-compiler-mips64.cc View 1 2 2 chunks +19 lines, -8 lines 0 comments Download
M src/ic/mips64/ic-compiler-mips64.cc View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M src/ic/mips64/ic-mips64.cc View 1 2 3 4 5 6 3 chunks +12 lines, -9 lines 0 comments Download
M src/ic/mips64/stub-cache-mips64.cc View 1 2 1 chunk +8 lines, -2 lines 0 comments Download
M src/ic/x64/access-compiler-x64.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/ic/x64/handler-compiler-x64.cc View 4 chunks +23 lines, -8 lines 0 comments Download
M src/ic/x64/ic-compiler-x64.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/ic/x64/ic-x64.cc View 1 3 chunks +11 lines, -3 lines 0 comments Download
M src/ic/x64/stub-cache-x64.cc View 1 chunk +10 lines, -3 lines 0 comments Download
M src/mips/code-stubs-mips.cc View 1 2 3 4 2 chunks +165 lines, -4 lines 0 comments Download
M src/mips64/code-stubs-mips64.cc View 1 2 3 4 2 chunks +160 lines, -4 lines 0 comments Download
M src/type-info.h View 1 chunk +0 lines, -1 line 0 comments Download
M src/type-info.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 2 3 4 5 2 chunks +146 lines, -4 lines 0 comments Download
M test/cctest/test-feedback-vector.cc View 1 2 3 5 chunks +85 lines, -17 lines 0 comments Download

Messages

Total messages: 20 (7 generated)
mvstanton
Hi guys, This CL makes vector store support complete in the tree. Benedikt: could you ...
5 years, 3 months ago (2015-09-02 09:56:03 UTC) #2
mvstanton
Mips team, could you guys address mips/mips64 port? Let me know any questions, thanks!
5 years, 3 months ago (2015-09-02 10:01:02 UTC) #3
Benedikt Meurer
LGTM from me on code-stubs (although the ia32 dance looks hairy; I bet we need ...
5 years, 3 months ago (2015-09-02 19:25:35 UTC) #5
paul.l...
Hi Michael, the MIPS ports are ready in https://codereview.chromium.org/1318353003/
5 years, 3 months ago (2015-09-03 05:21:46 UTC) #6
Jakob Kummerow
Looks good. Some comments. https://codereview.chromium.org/1328603003/diff/40001/src/ast.cc File src/ast.cc (right): https://codereview.chromium.org/1328603003/diff/40001/src/ast.cc#newcode353 src/ast.cc:353: if (saw_computed_name && This is ...
5 years, 3 months ago (2015-09-03 11:27:40 UTC) #7
mvstanton
Thanks all! https://codereview.chromium.org/1328603003/diff/40001/src/ast.cc File src/ast.cc (right): https://codereview.chromium.org/1328603003/diff/40001/src/ast.cc#newcode353 src/ast.cc:353: if (saw_computed_name && On 2015/09/03 11:27:39, Jakob ...
5 years, 3 months ago (2015-09-03 15:25:27 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1328603003/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1328603003/100001
5 years, 3 months ago (2015-09-03 15:25:52 UTC) #11
commit-bot: I haz the power
All required reviewers (with asterisk prefixes) have not yet approved this CL. No L-G-T-M from ...
5 years, 3 months ago (2015-09-03 15:25:55 UTC) #13
Jakob Kummerow
lgtm
5 years, 3 months ago (2015-09-03 15:46:06 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1328603003/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1328603003/120001
5 years, 3 months ago (2015-09-03 16:52:21 UTC) #17
commit-bot: I haz the power
Committed patchset #7 (id:120001)
5 years, 3 months ago (2015-09-03 17:18:15 UTC) #18
commit-bot: I haz the power
Patchset 7 (id:??) landed as https://crrev.com/63af1b3aec6547e7cdf502666ff79c562de8b679 Cr-Commit-Position: refs/heads/master@{#30570}
5 years, 3 months ago (2015-09-03 17:18:33 UTC) #19
Michael Achenbach
5 years, 3 months ago (2015-09-03 17:43:48 UTC) #20
Message was sent while issue was closed.
A revert of this CL (patchset #7 id:120001) has been created in
https://codereview.chromium.org/1303053004/ by machenbach@chromium.org.

The reason for reverting is: [Sheriff] Breaks compile on arm:
http://build.chromium.org/p/client.v8/builders/V8%20Arm%20-%20builder/builds/....

Powered by Google App Engine
This is Rietveld 408576698