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

Issue 2438553003: [ic] Support data handlers that represent simple field stores. (Closed)

Created:
4 years, 2 months ago by Igor Sheludko
Modified:
4 years ago
Reviewers:
Jakob Kummerow
CC:
v8-reviews_googlegroups.com, Michael Hablich
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[ic] Support data handlers that represent simple field stores. BUG= Review-Url: https://codereview.chromium.org/2438553003 Committed: https://crrev.com/c2a5dc81c7a26579a599ddaf31a7cf84706135b9 Cr-Original-Original-Commit-Position: refs/heads/master@{#40503} Cr-Original-Commit-Position: refs/heads/master@{#40511} Cr-Commit-Position: refs/heads/master@{#40524}

Patch Set 1 #

Patch Set 2 : Fix for a GC stress issues #

Patch Set 3 : One more fix for GC stress issues #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+267 lines, -23 lines) Patch
M src/code-stub-assembler.h View 1 chunk +15 lines, -0 lines 0 comments Download
M src/code-stub-assembler.cc View 4 chunks +124 lines, -6 lines 0 comments Download
M src/counters.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/flag-definitions.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/ic/handler-configuration.h View 1 chunk +31 lines, -0 lines 0 comments Download
M src/ic/handler-configuration-inl.h View 1 chunk +31 lines, -0 lines 0 comments Download
M src/ic/ic.cc View 1 2 5 chunks +52 lines, -11 lines 2 comments Download
M src/lookup.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/lookup.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M src/type-feedback-vector.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/type-feedback-vector.cc View 1 chunk +2 lines, -4 lines 0 comments Download

Messages

Total messages: 51 (35 generated)
Igor Sheludko
PTAL&CQ
4 years, 2 months ago (2016-10-21 10:18:37 UTC) #10
Jakob Kummerow
lgtm
4 years, 2 months ago (2016-10-21 12:04:46 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2438553003/20001
4 years, 2 months ago (2016-10-21 12:04:52 UTC) #13
commit-bot: I haz the power
Committed patchset #1 (id:20001)
4 years, 2 months ago (2016-10-21 12:08:34 UTC) #15
jgruber
A revert of this CL (patchset #1 id:20001) has been created in https://chromiumcodereview.appspot.com/2439053002/ by jgruber@chromium.org. ...
4 years, 2 months ago (2016-10-21 12:45:48 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2438553003/40001
4 years, 2 months ago (2016-10-21 16:24:55 UTC) #24
commit-bot: I haz the power
Committed patchset #2 (id:40001)
4 years, 2 months ago (2016-10-21 16:42:28 UTC) #26
Igor Sheludko
A revert of this CL (patchset #2 id:40001) has been created in https://codereview.chromium.org/2442523003/ by ishell@chromium.org. ...
4 years, 2 months ago (2016-10-21 17:53:53 UTC) #27
Igor Sheludko
I should have not used the smi store handler for the cases that are not ...
4 years, 2 months ago (2016-10-21 21:29:53 UTC) #31
Jakob Kummerow
lgtm https://codereview.chromium.org/2438553003/diff/60001/src/ic/ic.cc File src/ic/ic.cc (right): https://codereview.chromium.org/2438553003/diff/60001/src/ic/ic.cc#newcode1041 src/ic/ic.cc:1041: handler = Smi::FromInt(1); Come to think of it: ...
4 years, 1 month ago (2016-10-24 09:56:19 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2438553003/60001
4 years, 1 month ago (2016-10-24 09:56:30 UTC) #41
commit-bot: I haz the power
Committed patchset #3 (id:60001)
4 years, 1 month ago (2016-10-24 10:00:10 UTC) #43
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/1f697f4231e772df28eb46c39a972f4f6b7e1672 Cr-Commit-Position: refs/heads/master@{#40503}
4 years, 1 month ago (2016-11-17 22:09:47 UTC) #46
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/d2557f2e9da4beb904ad07f6b125d853b6d7476d Cr-Commit-Position: refs/heads/master@{#40511}
4 years, 1 month ago (2016-11-17 22:10:08 UTC) #48
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/c2a5dc81c7a26579a599ddaf31a7cf84706135b9 Cr-Commit-Position: refs/heads/master@{#40524}
4 years, 1 month ago (2016-11-17 22:10:43 UTC) #50
Igor Sheludko
4 years ago (2016-12-05 07:30:07 UTC) #51
Message was sent while issue was closed.
https://codereview.chromium.org/2438553003/diff/60001/src/ic/ic.cc
File src/ic/ic.cc (right):

https://codereview.chromium.org/2438553003/diff/60001/src/ic/ic.cc#newcode1041
src/ic/ic.cc:1041: handler = Smi::FromInt(1);
On 2016/10/24 09:56:19, Jakob Kummerow wrote:
> Come to think of it: why is this line not "return;"? What's the advantage of
> putting dummy values into the cache?

Actually, we should have not even got here with such a map. It should be
filtered out with all the other dead maps. I'll address that in next CL.

Powered by Google App Engine
This is Rietveld 408576698