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

Issue 150813004: In-heap small typed arrays (Closed)

Created:
6 years, 10 months ago by Dmitry Lomov (no reviews)
Modified:
6 years, 9 months ago
CC:
v8-dev, Paweł Hajdan Jr.
Visibility:
Public.

Description

This implements allocating small typed arrays in heap. R=mvstanton@chromium.org, verwaest@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=20279

Patch Set 1 : Patch for review #

Total comments: 9

Patch Set 2 : CR feedback + rebase #

Total comments: 12

Patch Set 3 : CR feedback #

Total comments: 6

Patch Set 4 : CR feedback #

Patch Set 5 : Rebased patch for landing #

Patch Set 6 : Fix windows build #

Patch Set 7 : Win64 build fix + WebKit tests #

Patch Set 8 : Patch for landing #

Unified diffs Side-by-side diffs Delta from patch set Stats (+732 lines, -187 lines) Patch
M include/v8.h View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M src/accessors.cc View 1 2 2 chunks +2 lines, -6 lines 0 comments Download
M src/api.cc View 1 2 3 4 5 6 7 2 chunks +12 lines, -3 lines 0 comments Download
M src/bootstrapper.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M src/elements-kind.h View 1 2 3 chunks +13 lines, -2 lines 0 comments Download
M src/elements-kind.cc View 1 2 1 chunk +16 lines, -3 lines 0 comments Download
M src/flag-definitions.h View 1 2 3 4 1 chunk +3 lines, -0 lines 0 comments Download
M src/heap.h View 1 2 3 4 5 3 chunks +16 lines, -0 lines 0 comments Download
M src/heap.cc View 1 2 3 4 5 5 chunks +40 lines, -1 line 0 comments Download
M src/hydrogen.h View 1 2 3 4 5 6 2 chunks +13 lines, -0 lines 0 comments Download
M src/hydrogen.cc View 1 2 3 4 5 6 7 11 chunks +189 lines, -57 lines 0 comments Download
M src/objects.h View 1 2 3 4 5 6 7 7 chunks +28 lines, -2 lines 0 comments Download
M src/objects.cc View 1 2 3 4 5 6 7 10 chunks +98 lines, -29 lines 0 comments Download
M src/objects-debug.cc View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M src/objects-inl.h View 1 2 3 4 5 5 chunks +109 lines, -20 lines 0 comments Download
M src/runtime.h View 1 2 3 4 5 6 3 chunks +15 lines, -2 lines 0 comments Download
M src/runtime.cc View 1 2 3 4 5 6 7 12 chunks +87 lines, -24 lines 0 comments Download
M src/typedarray.js View 1 2 3 4 5 6 1 chunk +6 lines, -2 lines 0 comments Download
M test/mjsunit/elements-kind.js View 1 2 4 chunks +80 lines, -33 lines 0 comments Download
M test/mjsunit/external-array.js View 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
Dmitry Lomov (no reviews)
Michael, Toon, PTAL. It is a biggish patch :)
6 years, 9 months ago (2014-02-27 10:08:51 UTC) #1
mvstanton
Hi Dmitry, I didn't yet look at hydrogen.cc, but other files look good. https://codereview.chromium.org/150813004/diff/180001/src/flag-definitions.h File ...
6 years, 9 months ago (2014-03-03 10:37:49 UTC) #2
Dmitry Lomov (no reviews)
Comments addressed, please take another look (I am sorry, I had to rebase this) https://codereview.chromium.org/150813004/diff/180001/src/flag-definitions.h ...
6 years, 9 months ago (2014-03-10 09:20:34 UTC) #3
Toon Verwaest
I added some more superficial comments inline. My main comment is though: are typed elements ...
6 years, 9 months ago (2014-03-10 14:15:34 UTC) #4
mvstanton
LGTM. A few comments. https://codereview.chromium.org/150813004/diff/180001/src/runtime.cc File src/runtime.cc (right): https://codereview.chromium.org/150813004/diff/180001/src/runtime.cc#newcode1063 src/runtime.cc:1063: memcpy( On 2014/03/10 09:20:35, Dmitry ...
6 years, 9 months ago (2014-03-11 10:43:50 UTC) #5
Dmitry Lomov
On 2014/03/10 14:15:34, Toon Verwaest wrote: > I added some more superficial comments inline. > ...
6 years, 9 months ago (2014-03-11 10:52:13 UTC) #6
Dmitry Lomov (no reviews)
PTAL (sorry, I had to rebase again) https://codereview.chromium.org/150813004/diff/200001/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/150813004/diff/200001/src/hydrogen.cc#newcode8466 src/hydrogen.cc:8466: static Handle<Map> ...
6 years, 9 months ago (2014-03-24 08:31:22 UTC) #7
Toon Verwaest
A few more comments. Would be nice to have that hydrogen code split up a ...
6 years, 9 months ago (2014-03-24 11:16:12 UTC) #8
Dmitry Lomov (no reviews)
Comments addressed, PTAL https://codereview.chromium.org/150813004/diff/220001/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/150813004/diff/220001/src/hydrogen.cc#newcode8583 src/hydrogen.cc:8583: HType::JSArray(), On 2014/03/24 11:16:12, Toon Verwaest ...
6 years, 9 months ago (2014-03-25 10:17:39 UTC) #9
Toon Verwaest
lgtm
6 years, 9 months ago (2014-03-25 10:49:01 UTC) #10
Dmitry Lomov (no reviews)
Committed patchset #5 manually as r20240 (presubmit successful).
6 years, 9 months ago (2014-03-25 12:52:08 UTC) #11
Dmitry Lomov (no reviews)
Committed patchset #6 manually as r20244 (presubmit successful).
6 years, 9 months ago (2014-03-25 13:22:43 UTC) #12
Dmitry Lomov (no reviews)
6 years, 9 months ago (2014-03-26 12:50:34 UTC) #13
Message was sent while issue was closed.
Committed patchset #8 manually as r20279 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698