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

Issue 2294743003: [wasm] simd scalar lowering F32x4Add and I32x4Add (Closed)

Created:
4 years, 3 months ago by aseemgarg
Modified:
4 years, 1 month ago
Reviewers:
gdeepti, titzer, bradnelson
CC:
v8-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[wasm] simd scalar lowering F32x4Add and I32x4Add BUG=v8:4124 TEST:test-run-wasm-simd-lowering R=titzer@chromium.org,bradnelson@chromium.org,gdeepti@chromium.org Committed: https://crrev.com/cf9ee0ec6c3768bf7f47363056169ce0624348ef Cr-Commit-Position: refs/heads/master@{#40448}

Patch Set 1 #

Total comments: 32

Patch Set 2 : [wasm] simd scalar lowering F32x4Add and I32x4Add #

Patch Set 3 : [wasm] simd scalar lowering F32x4Add and I32x4Add #

Total comments: 14

Patch Set 4 : [wasm] simd scalar lowering F32x4Add and I32x4Add #

Total comments: 2

Patch Set 5 : [wasm] simd scalar lowering F32x4Add and I32x4Add #

Unified diffs Side-by-side diffs Delta from patch set Stats (+655 lines, -57 lines) Patch
M BUILD.gn View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
A + src/compiler/simd-scalar-lowering.h View 1 2 3 3 chunks +23 lines, -28 lines 0 comments Download
A src/compiler/simd-scalar-lowering.cc View 1 2 3 1 chunk +409 lines, -0 lines 0 comments Download
M src/compiler/wasm-compiler.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/wasm-compiler.cc View 1 2 3 4 5 chunks +26 lines, -0 lines 0 comments Download
M src/compiler/wasm-linkage.cc View 1 2 3 4 4 chunks +28 lines, -19 lines 0 comments Download
M src/v8.gyp View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M src/wasm/ast-decoder.cc View 1 2 3 4 4 chunks +56 lines, -9 lines 0 comments Download
M src/wasm/wasm-macro-gen.h View 1 1 chunk +5 lines, -0 lines 0 comments Download
M src/wasm/wasm-module.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M test/cctest/BUILD.gn View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M test/cctest/cctest.gyp View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
A test/cctest/wasm/test-run-wasm-simd-lowering.cc View 1 1 chunk +96 lines, -0 lines 0 comments Download
M test/cctest/wasm/wasm-run-utils.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 31 (18 generated)
aseemgarg
Please see if basic idea looks fine. Will submit after finishing with tests for function ...
4 years, 3 months ago (2016-08-30 11:45:50 UTC) #1
gdeepti
https://codereview.chromium.org/2294743003/diff/1/test/cctest/cctest.gyp File test/cctest/cctest.gyp (right): https://codereview.chromium.org/2294743003/diff/1/test/cctest/cctest.gyp#newcode222 test/cctest/cctest.gyp:222: 'wasm/test-run-wasm-simd-lowering.cc', Is there a reason we run the tests ...
4 years, 3 months ago (2016-08-30 17:16:06 UTC) #2
bradnelson
https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc File src/compiler/simd-scalar-lowering.cc (right): https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc#newcode78 src/compiler/simd-scalar-lowering.cc:78: SetLoweredType ? https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc#newcode89 src/compiler/simd-scalar-lowering.cc:89: FOREACH_FLOAT32X4_OPCODE(CASE_STMT) { Indent is weird, ...
4 years, 3 months ago (2016-08-31 22:42:08 UTC) #3
titzer
https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc File src/compiler/simd-scalar-lowering.cc (right): https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc#newcode155 src/compiler/simd-scalar-lowering.cc:155: Node* new_node[4]; On 2016/08/31 22:42:08, bradnelson wrote: > constant ...
4 years, 3 months ago (2016-09-05 12:59:35 UTC) #7
titzer
https://codereview.chromium.org/2294743003/diff/1/test/cctest/wasm/test-run-wasm-module-helper.h File test/cctest/wasm/test-run-wasm-module-helper.h (right): https://codereview.chromium.org/2294743003/diff/1/test/cctest/wasm/test-run-wasm-module-helper.h#newcode23 test/cctest/wasm/test-run-wasm-module-helper.h:23: class TestRunWasmModuleHelper { On 2016/08/31 22:42:08, bradnelson wrote: > ...
4 years, 3 months ago (2016-09-05 13:01:45 UTC) #8
aseemgarg
https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc File src/compiler/simd-scalar-lowering.cc (right): https://codereview.chromium.org/2294743003/diff/1/src/compiler/simd-scalar-lowering.cc#newcode78 src/compiler/simd-scalar-lowering.cc:78: On 2016/08/31 22:42:08, bradnelson wrote: > SetLoweredType ? Done. ...
4 years, 2 months ago (2016-10-10 17:35:17 UTC) #9
titzer
Looks mostly good https://codereview.chromium.org/2294743003/diff/40001/src/compiler/simd-scalar-lowering.cc File src/compiler/simd-scalar-lowering.cc (right): https://codereview.chromium.org/2294743003/diff/40001/src/compiler/simd-scalar-lowering.cc#newcode135 src/compiler/simd-scalar-lowering.cc:135: int parameter_count = GetParameterCountAfterLowering(signature()); We should ...
4 years, 2 months ago (2016-10-12 19:06:56 UTC) #18
aseemgarg
https://codereview.chromium.org/2294743003/diff/40001/src/compiler/simd-scalar-lowering.cc File src/compiler/simd-scalar-lowering.cc (right): https://codereview.chromium.org/2294743003/diff/40001/src/compiler/simd-scalar-lowering.cc#newcode135 src/compiler/simd-scalar-lowering.cc:135: int parameter_count = GetParameterCountAfterLowering(signature()); On 2016/10/12 19:06:55, titzer wrote: ...
4 years, 2 months ago (2016-10-17 19:01:44 UTC) #19
titzer
lgtm modulo last comment https://codereview.chromium.org/2294743003/diff/40001/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2294743003/diff/40001/src/wasm/ast-decoder.cc#newcode244 src/wasm/ast-decoder.cc:244: WasmOpcode opcode = ExtractWasmOpcode(pc); On ...
4 years, 2 months ago (2016-10-19 18:31:49 UTC) #24
aseemgarg
https://codereview.chromium.org/2294743003/diff/40001/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2294743003/diff/40001/src/wasm/ast-decoder.cc#newcode244 src/wasm/ast-decoder.cc:244: WasmOpcode opcode = ExtractWasmOpcode(pc); On 2016/10/19 18:31:49, titzer wrote: ...
4 years, 2 months ago (2016-10-19 23:37:33 UTC) #25
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/2294743003/80001
4 years, 2 months ago (2016-10-19 23:38:39 UTC) #28
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 2 months ago (2016-10-20 00:19:42 UTC) #29
commit-bot: I haz the power
4 years, 1 month ago (2016-11-17 22:07:08 UTC) #31
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/cf9ee0ec6c3768bf7f47363056169ce0624348ef
Cr-Commit-Position: refs/heads/master@{#40448}

Powered by Google App Engine
This is Rietveld 408576698