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

Issue 2300753005: [wasm] fix Simd ExtractLane to take immediate instead of param (Closed)

Created:
4 years, 3 months ago by aseemgarg
Modified:
4 years, 3 months ago
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] fix Simd ExtractLane to take immediate instead of param BUG=v8:4124 TEST:test-run-wasm-simd R=titzer@chromium.org,bradnelson@chromium.org,gdeepti@chromium.org Committed: https://crrev.com/7b3875d107d6813b458468d18850b452e03aeeea Cr-Commit-Position: refs/heads/master@{#39288}

Patch Set 1 #

Total comments: 8

Patch Set 2 : [wasm] fix Simd ExtractLane to take immediate instead of param #

Total comments: 8

Patch Set 3 : [wasm] fix Simd ExtractLane to take immediate instead of param #

Total comments: 2

Patch Set 4 : [wasm] fix Simd ExtractLane to take immediate instead of param #

Patch Set 5 : [wasm] fix Simd ExtractLane to take immediate instead of param #

Unified diffs Side-by-side diffs Delta from patch set Stats (+204 lines, -169 lines) Patch
M src/compiler/wasm-compiler.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler/wasm-compiler.cc View 1 2 3 4 2 chunks +11 lines, -3 lines 0 comments Download
M src/wasm/ast-decoder.cc View 1 2 3 4 4 chunks +39 lines, -11 lines 0 comments Download
M src/wasm/wasm-macro-gen.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M src/wasm/wasm-opcodes.h View 1 2 3 4 2 chunks +135 lines, -134 lines 0 comments Download
M src/wasm/wasm-opcodes.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/wasm/test-run-wasm-simd.cc View 1 2 1 chunk +15 lines, -18 lines 0 comments Download

Depends on Patchset:

Messages

Total messages: 27 (11 generated)
aseemgarg
4 years, 3 months ago (2016-09-01 00:23:36 UTC) #1
bradnelson
lgtm https://codereview.chromium.org/2300753005/diff/1/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2300753005/diff/1/src/wasm/ast-decoder.cc#newcode465 src/wasm/ast-decoder.cc:465: FOREACH_SIMD_MISC_OPCODE(DECLARE_OPCODE_CASE) { return 3; } Not keen on ...
4 years, 3 months ago (2016-09-01 00:51:35 UTC) #6
bradnelson
You'll need src/compiler owner to sign off too.
4 years, 3 months ago (2016-09-01 00:52:01 UTC) #7
gdeepti
https://codereview.chromium.org/2300753005/diff/1/src/compiler/wasm-compiler.cc File src/compiler/wasm-compiler.cc (right): https://codereview.chromium.org/2300753005/diff/1/src/compiler/wasm-compiler.cc#newcode2911 src/compiler/wasm-compiler.cc:2911: This can be merged into the function above by ...
4 years, 3 months ago (2016-09-01 00:52:52 UTC) #8
aseemgarg
https://codereview.chromium.org/2300753005/diff/1/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2300753005/diff/1/src/wasm/ast-decoder.cc#newcode465 src/wasm/ast-decoder.cc:465: FOREACH_SIMD_MISC_OPCODE(DECLARE_OPCODE_CASE) { return 3; } On 2016/09/01 00:51:34, bradnelson ...
4 years, 3 months ago (2016-09-01 00:57:15 UTC) #9
titzer
https://codereview.chromium.org/2300753005/diff/20001/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2300753005/diff/20001/src/wasm/ast-decoder.cc#newcode1411 src/wasm/ast-decoder.cc:1411: DCHECK(lane >= 0 && lane <= 3); Don't use ...
4 years, 3 months ago (2016-09-01 08:32:43 UTC) #10
bbudge
https://codereview.chromium.org/2300753005/diff/20001/src/wasm/wasm-opcodes.h File src/wasm/wasm-opcodes.h (right): https://codereview.chromium.org/2300753005/diff/20001/src/wasm/wasm-opcodes.h#newcode276 src/wasm/wasm-opcodes.h:276: #define FOREACH_SIMD_0_OPERAND_OPCODE(V) \ These names are confusing to me. ...
4 years, 3 months ago (2016-09-01 22:06:49 UTC) #11
aseemgarg
https://codereview.chromium.org/2300753005/diff/1/src/compiler/wasm-compiler.cc File src/compiler/wasm-compiler.cc (right): https://codereview.chromium.org/2300753005/diff/1/src/compiler/wasm-compiler.cc#newcode2911 src/compiler/wasm-compiler.cc:2911: On 2016/09/01 00:52:52, gdeepti wrote: > This can be ...
4 years, 3 months ago (2016-09-02 22:40:13 UTC) #12
titzer
https://codereview.chromium.org/2300753005/diff/40001/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2300753005/diff/40001/src/wasm/ast-decoder.cc#newcode1423 src/wasm/ast-decoder.cc:1423: error(pc_, pc_, "invalid simd opcode"); You'll have to break ...
4 years, 3 months ago (2016-09-05 12:49:50 UTC) #13
aseemgarg
https://codereview.chromium.org/2300753005/diff/40001/src/wasm/ast-decoder.cc File src/wasm/ast-decoder.cc (right): https://codereview.chromium.org/2300753005/diff/40001/src/wasm/ast-decoder.cc#newcode1423 src/wasm/ast-decoder.cc:1423: error(pc_, pc_, "invalid simd opcode"); On 2016/09/05 12:49:50, titzer ...
4 years, 3 months ago (2016-09-06 02:49:15 UTC) #14
titzer
lgtm
4 years, 3 months ago (2016-09-08 14:46:19 UTC) #15
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/2300753005/60001
4 years, 3 months ago (2016-09-08 16:02:27 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: v8_linux64_asan_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_asan_rel_ng/builds/8440) v8_linux64_avx2_rel_ng on master.tryserver.v8 (JOB_FAILED, ...
4 years, 3 months ago (2016-09-08 16:04:01 UTC) #20
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/2300753005/80001
4 years, 3 months ago (2016-09-08 16:36:15 UTC) #23
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 3 months ago (2016-09-08 17:15:25 UTC) #25
commit-bot: I haz the power
4 years, 3 months ago (2016-09-08 17:16:12 UTC) #27
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/7b3875d107d6813b458468d18850b452e03aeeea
Cr-Commit-Position: refs/heads/master@{#39288}

Powered by Google App Engine
This is Rietveld 408576698