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

Issue 2264533002: [wasm] Add native x64 implementations for I32x4Splat, I32x4ExtractLane (Closed)

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

Description

[wasm] Add native x64 implementations for I32x4Splat, I32x4ExtractLane - Instruction selection, code generation, test for Splat/Extract - Fixes for AstS128 Locals in wasm R=bbudge@chromium.org, titzer@chromium.org Committed: https://crrev.com/6122465c88a7dbaf2f5a46d61e12a6d1a5ce08ce Cr-Commit-Position: refs/heads/master@{#38843}

Patch Set 1 #

Patch Set 2 #

Patch Set 3 : Formatting #

Patch Set 4 : Fix build #

Patch Set 5 : Fix mips build #

Patch Set 6 : Fix cctest.status #

Patch Set 7 : Formatting #

Patch Set 8 : cctest #

Total comments: 8

Patch Set 9 : Review changes #

Patch Set 10 : Fix test comment #

Total comments: 6

Patch Set 11 : Review changes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+121 lines, -8 lines) Patch
M src/compiler/instruction-selector.h View 1 2 chunks +5 lines, -0 lines 0 comments Download
M src/compiler/instruction-selector.cc View 1 2 3 4 5 6 7 8 3 chunks +12 lines, -1 line 0 comments Download
M src/compiler/wasm-compiler.h View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/wasm-compiler.cc View 1 2 3 4 5 6 7 8 9 10 2 chunks +10 lines, -2 lines 0 comments Download
M src/compiler/x64/code-generator-x64.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +12 lines, -0 lines 0 comments Download
M src/compiler/x64/instruction-codes-x64.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +3 lines, -1 line 0 comments Download
M src/compiler/x64/instruction-scheduler-x64.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/x64/instruction-selector-x64.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +11 lines, -0 lines 0 comments Download
M src/wasm/ast-decoder.cc View 1 2 chunks +5 lines, -0 lines 0 comments Download
M src/wasm/module-decoder.cc View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/wasm/wasm-opcodes.h View 1 1 chunk +2 lines, -2 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/cctest.gyp View 1 2 3 4 5 6 7 1 chunk +2 lines, -1 line 0 comments Download
A test/cctest/wasm/test-run-wasm-simd.cc View 1 2 3 4 5 6 7 8 9 1 chunk +52 lines, -0 lines 0 comments Download

Messages

Total messages: 48 (39 generated)
gdeepti
4 years, 4 months ago (2016-08-19 19:21:34 UTC) #25
bbudge
https://codereview.chromium.org/2264533002/diff/140001/src/compiler/x64/code-generator-x64.cc File src/compiler/x64/code-generator-x64.cc (right): https://codereview.chromium.org/2264533002/diff/140001/src/compiler/x64/code-generator-x64.cc#newcode1749 src/compiler/x64/code-generator-x64.cc:1749: case kSSECreateInt32x4: { Would this be the AVX implementation ...
4 years, 4 months ago (2016-08-22 19:09:53 UTC) #28
gdeepti
https://codereview.chromium.org/2264533002/diff/140001/src/compiler/x64/code-generator-x64.cc File src/compiler/x64/code-generator-x64.cc (right): https://codereview.chromium.org/2264533002/diff/140001/src/compiler/x64/code-generator-x64.cc#newcode1749 src/compiler/x64/code-generator-x64.cc:1749: case kSSECreateInt32x4: { On 2016/08/22 19:09:52, bbudge wrote: > ...
4 years, 4 months ago (2016-08-22 23:26:12 UTC) #35
titzer
lgtm with comments https://codereview.chromium.org/2264533002/diff/180001/src/compiler/wasm-compiler.cc File src/compiler/wasm-compiler.cc (right): https://codereview.chromium.org/2264533002/diff/180001/src/compiler/wasm-compiler.cc#newcode2870 src/compiler/wasm-compiler.cc:2870: return graph()->NewNode(jsgraph()->machine()->CreateInt32x4(), Can you add a ...
4 years, 4 months ago (2016-08-23 13:06:40 UTC) #36
bbudge
LGTM w/change to code generator. https://codereview.chromium.org/2264533002/diff/140001/test/cctest/wasm/test-run-wasm-simd.cc File test/cctest/wasm/test-run-wasm-simd.cc (right): https://codereview.chromium.org/2264533002/diff/140001/test/cctest/wasm/test-run-wasm-simd.cc#newcode31 test/cctest/wasm/test-run-wasm-simd.cc:31: WASM_BLOCK(WASM_SET_LOCAL(1, WASM_SIMD_I32x4_SPLAT(WASM_GET_LOCAL(0))), On 2016/08/22 ...
4 years, 4 months ago (2016-08-23 13:57:13 UTC) #37
gdeepti
https://codereview.chromium.org/2264533002/diff/140001/test/cctest/wasm/test-run-wasm-simd.cc File test/cctest/wasm/test-run-wasm-simd.cc (right): https://codereview.chromium.org/2264533002/diff/140001/test/cctest/wasm/test-run-wasm-simd.cc#newcode31 test/cctest/wasm/test-run-wasm-simd.cc:31: WASM_BLOCK(WASM_SET_LOCAL(1, WASM_SIMD_I32x4_SPLAT(WASM_GET_LOCAL(0))), On 2016/08/23 13:57:13, bbudge wrote: > On ...
4 years, 4 months ago (2016-08-23 19:53:34 UTC) #42
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/2264533002/200001
4 years, 4 months ago (2016-08-23 19:54:43 UTC) #45
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 4 months ago (2016-08-23 19:59:26 UTC) #46
commit-bot: I haz the power
4 years, 4 months ago (2016-08-23 19:59:53 UTC) #48
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/6122465c88a7dbaf2f5a46d61e12a6d1a5ce08ce
Cr-Commit-Position: refs/heads/master@{#38843}

Powered by Google App Engine
This is Rietveld 408576698