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

Issue 17153011: DataView implementation. (Closed)

Created:
7 years, 6 months ago by Dmitry Lomov (no reviews)
Modified:
7 years, 6 months ago
Reviewers:
rossberg
CC:
v8-dev
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Self-review #

Total comments: 47

Patch Set 3 : Fixed bug with neutering + small rename #

Patch Set 4 : CR feedback #

Total comments: 4

Patch Set 5 : Fixes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1161 lines, -72 lines) Patch
M include/v8.h View 1 chunk +1 line, -1 line 0 comments Download
M src/api.cc View 1 2 2 chunks +13 lines, -7 lines 0 comments Download
M src/bootstrapper.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M src/contexts.h View 2 chunks +2 lines, -0 lines 0 comments Download
M src/factory.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/factory.cc View 1 chunk +10 lines, -0 lines 0 comments Download
M src/globals.h View 1 chunk +13 lines, -0 lines 0 comments Download
M src/heap.cc View 1 2 3 3 chunks +14 lines, -10 lines 0 comments Download
M src/macros.py View 1 chunk +1 line, -0 lines 0 comments Download
M src/messages.js View 1 2 chunks +6 lines, -0 lines 0 comments Download
M src/objects.h View 1 2 3 9 chunks +57 lines, -15 lines 0 comments Download
M src/objects.cc View 2 chunks +12 lines, -1 line 0 comments Download
M src/objects-debug.cc View 1 2 3 4 chunks +16 lines, -2 lines 0 comments Download
M src/objects-inl.h View 1 2 4 chunks +17 lines, -5 lines 0 comments Download
M src/objects-printer.cc View 4 chunks +19 lines, -2 lines 0 comments Download
M src/objects-visiting.h View 3 chunks +3 lines, -0 lines 0 comments Download
M src/objects-visiting.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M src/objects-visiting-inl.h View 1 2 6 chunks +37 lines, -2 lines 0 comments Download
M src/runtime.h View 1 chunk +22 lines, -0 lines 0 comments Download
M src/runtime.cc View 1 2 3 4 3 chunks +220 lines, -3 lines 0 comments Download
M src/typedarray.js View 1 2 3 1 chunk +245 lines, -0 lines 0 comments Download
M src/types.cc View 1 chunk +1 line, -0 lines 0 comments Download
M test/cctest/test-api.cc View 1 2 2 chunks +3 lines, -1 line 0 comments Download
M test/cctest/test-weaktypedarrays.cc View 1 2 3 6 chunks +24 lines, -20 lines 0 comments Download
M test/mjsunit/fuzz-natives-part1.js View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M test/mjsunit/fuzz-natives-part2.js View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M test/mjsunit/fuzz-natives-part3.js View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M test/mjsunit/fuzz-natives-part4.js View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
A test/mjsunit/harmony/dataview-accessors.js View 1 2 3 4 1 chunk +312 lines, -0 lines 0 comments Download
M test/mjsunit/harmony/typedarrays.js View 1 2 3 4 chunks +80 lines, -3 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
Dmitry Lomov (no reviews)
Andreas, please take a look. This is a DataView implementation, following mostly the Khronos spec.
7 years, 6 months ago (2013-06-20 13:52:24 UTC) #1
rossberg
https://codereview.chromium.org/17153011/diff/2001/src/objects-debug.cc File src/objects-debug.cc (left): https://codereview.chromium.org/17153011/diff/2001/src/objects-debug.cc#oldcode765 src/objects-debug.cc:765: CHECK(IsJSTypedArray()); Why not CHECK(IsJSArrayBufferView())? https://codereview.chromium.org/17153011/diff/2001/src/objects-debug.cc File src/objects-debug.cc (right): https://codereview.chromium.org/17153011/diff/2001/src/objects-debug.cc#newcode780 ...
7 years, 6 months ago (2013-06-21 08:44:01 UTC) #2
Dmitry Lomov (no reviews)
Thanks a lot for thorough - and fast! - review. Comments addressed, PTAL. https://codereview.chromium.org/17153011/diff/2001/src/objects-debug.cc File ...
7 years, 6 months ago (2013-06-21 11:32:10 UTC) #3
rossberg
https://codereview.chromium.org/17153011/diff/2001/test/mjsunit/harmony/dataview-accessors.js File test/mjsunit/harmony/dataview-accessors.js (right): https://codereview.chromium.org/17153011/diff/2001/test/mjsunit/harmony/dataview-accessors.js#newcode64 test/mjsunit/harmony/dataview-accessors.js:64: if (index < 0) index = 0; On 2013/06/21 ...
7 years, 6 months ago (2013-06-21 12:25:53 UTC) #4
Dmitry Lomov (no reviews)
More comments addressed. https://codereview.chromium.org/17153011/diff/2001/test/mjsunit/harmony/dataview-accessors.js File test/mjsunit/harmony/dataview-accessors.js (right): https://codereview.chromium.org/17153011/diff/2001/test/mjsunit/harmony/dataview-accessors.js#newcode64 test/mjsunit/harmony/dataview-accessors.js:64: if (index < 0) index = ...
7 years, 6 months ago (2013-06-21 12:39:20 UTC) #5
rossberg
lgtm
7 years, 6 months ago (2013-06-21 12:50:07 UTC) #6
Dmitry Lomov (no reviews)
7 years, 6 months ago (2013-06-21 13:03:02 UTC) #7
Message was sent while issue was closed.
Committed patchset #5 manually as r15269 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698