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

Issue 2626263004: [wasm] Implement WebAssembly.Module.customSections. (Closed)

Created:
3 years, 11 months ago by titzer
Modified:
3 years, 11 months ago
Reviewers:
ahaas, rossberg
CC:
v8-reviews_googlegroups.com
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[wasm] Implement WebAssembly.Module.customSections. R=ahaas@chromium.org,rossberg@chromium.org BUG=chromium:575167 Review-Url: https://codereview.chromium.org/2626263004 Cr-Commit-Position: refs/heads/master@{#42634} Committed: https://chromium.googlesource.com/v8/v8/+/68efecff6009b7cae0b2ac1ddedce7810ec86e00

Patch Set 1 #

Total comments: 1

Patch Set 2 : Fix semantics #

Total comments: 10

Patch Set 3 : [wasm] Implement WebAssembly.Module.customSections. #

Patch Set 4 : [wasm] Implement WebAssembly.Module.customSections. #

Patch Set 5 : Remove DCHECKs again #

Unified diffs Side-by-side diffs Delta from patch set Stats (+328 lines, -57 lines) Patch
M src/wasm/module-decoder.h View 1 chunk +12 lines, -0 lines 0 comments Download
M src/wasm/module-decoder.cc View 1 2 3 4 1 chunk +30 lines, -0 lines 0 comments Download
M src/wasm/wasm-js.cc View 1 2 4 5 chunks +65 lines, -51 lines 0 comments Download
M src/wasm/wasm-module.h View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M src/wasm/wasm-module.cc View 1 2 4 chunks +70 lines, -3 lines 0 comments Download
M test/mjsunit/wasm/js-api.js View 1 2 2 chunks +70 lines, -0 lines 0 comments Download
M test/unittests/wasm/module-decoder-unittest.cc View 1 1 chunk +78 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 34 (20 generated)
titzer
3 years, 11 months ago (2017-01-13 14:39:46 UTC) #1
ahaas
https://codereview.chromium.org/2626263004/diff/1/src/wasm/module-decoder.cc File src/wasm/module-decoder.cc (right): https://codereview.chromium.org/2626263004/diff/1/src/wasm/module-decoder.cc#newcode1251 src/wasm/module-decoder.cc:1251: byte section_code = decoder.consume_u8("section code"); The section code should ...
3 years, 11 months ago (2017-01-13 15:01:26 UTC) #2
ahaas
On 2017/01/13 at 15:01:26, ahaas wrote: > https://codereview.chromium.org/2626263004/diff/1/src/wasm/module-decoder.cc > File src/wasm/module-decoder.cc (right): > > https://codereview.chromium.org/2626263004/diff/1/src/wasm/module-decoder.cc#newcode1251 ...
3 years, 11 months ago (2017-01-13 16:51:39 UTC) #3
titzer
On 2017/01/13 16:51:39, ahaas wrote: > On 2017/01/13 at 15:01:26, ahaas wrote: > > https://codereview.chromium.org/2626263004/diff/1/src/wasm/module-decoder.cc ...
3 years, 11 months ago (2017-01-23 18:24:13 UTC) #6
titzer
Please take another look, as the semantics of WebAssembly.Module.customSections has been clarified since the original ...
3 years, 11 months ago (2017-01-23 18:24:49 UTC) #7
rossberg
https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-module.cc File src/wasm/wasm-module.cc (right): https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-module.cc#newcode2738 src/wasm/wasm-module.cc:2738: // TODO(titzer): throw out of memory? Yes please. https://codereview.chromium.org/2626263004/diff/20001/test/mjsunit/wasm/js-api.js ...
3 years, 11 months ago (2017-01-24 11:34:42 UTC) #10
ahaas
https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc File src/wasm/wasm-js.cc (right): https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc#newcode266 src/wasm/wasm-js.cc:266: if (!maybe_module.is_null()) { You do not set the return ...
3 years, 11 months ago (2017-01-24 11:35:13 UTC) #11
titzer
https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc File src/wasm/wasm-js.cc (right): https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc#newcode266 src/wasm/wasm-js.cc:266: if (!maybe_module.is_null()) { On 2017/01/24 11:35:13, ahaas wrote: > ...
3 years, 11 months ago (2017-01-24 12:38:39 UTC) #16
ahaas
https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc File src/wasm/wasm-js.cc (right): https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc#newcode266 src/wasm/wasm-js.cc:266: if (!maybe_module.is_null()) { On 2017/01/24 at 12:38:39, titzer wrote: ...
3 years, 11 months ago (2017-01-24 12:42:21 UTC) #17
titzer
On 2017/01/24 12:42:21, ahaas wrote: > https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc > File src/wasm/wasm-js.cc (right): > > https://codereview.chromium.org/2626263004/diff/20001/src/wasm/wasm-js.cc#newcode266 > ...
3 years, 11 months ago (2017-01-24 12:48:18 UTC) #20
ahaas
lgtm
3 years, 11 months ago (2017-01-24 12:55:37 UTC) #21
rossberg
lgtm
3 years, 11 months ago (2017-01-24 13:06:53 UTC) #24
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/2626263004/80001
3 years, 11 months ago (2017-01-24 15:21:05 UTC) #31
commit-bot: I haz the power
3 years, 11 months ago (2017-01-24 15:23:08 UTC) #34
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://chromium.googlesource.com/v8/v8/+/68efecff6009b7cae0b2ac1ddedce7810ec...

Powered by Google App Engine
This is Rietveld 408576698