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

Issue 2801683003: MIPS[64]: Support for some SIMD operations (8) (Closed)

Created:
3 years, 8 months ago by dusan.simicic
Modified:
3 years, 6 months ago
CC:
v8-reviews_googlegroups.com, v8-mips-ports_googlegroups.com
Target Ref:
refs/heads/master
Project:
v8
Visibility:
Public.

Description

MIPS[64]: Support for some SIMD operations (8) Add support for S1x4And, S1x4Or, S1x4Xor, S1x4Not, S1x4AnyTrue, S1x4AllTrue, S1x8And, S1x8Or, S1x8Xor, S1x8Not, S1x8AnyTrue, S1x8AllTrue, S1x16And, S1x16Or, S1x16Xor, S1x16Not, S1x16AnyTrue, S1x16AllTrue, SimdLoad, SimdStore operations for mips32 and mips64 architectures. BUG= Review-Url: https://codereview.chromium.org/2801683003 Cr-Commit-Position: refs/heads/master@{#45662} Committed: https://chromium.googlesource.com/v8/v8/+/3e3dbdf3e56583a0bc2d6d372b384bf7f31f29b3

Patch Set 1 #

Total comments: 12

Patch Set 2 : Review comments, rebase #

Patch Set 3 : Rebase #

Patch Set 4 : Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+690 lines, -31 lines) Patch
M src/compiler/instruction-selector.cc View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M src/compiler/mips/code-generator-mips.cc View 1 2 1 chunk +57 lines, -0 lines 0 comments Download
M src/compiler/mips/instruction-codes-mips.h View 1 2 1 chunk +9 lines, -1 line 0 comments Download
M src/compiler/mips/instruction-selector-mips.cc View 1 2 5 chunks +84 lines, -4 lines 0 comments Download
M src/compiler/mips64/code-generator-mips64.cc View 1 2 1 chunk +56 lines, -0 lines 0 comments Download
M src/compiler/mips64/instruction-codes-mips64.h View 1 2 1 chunk +9 lines, -1 line 0 comments Download
M src/compiler/mips64/instruction-selector-mips64.cc View 1 2 5 chunks +84 lines, -4 lines 0 comments Download
M src/mips/assembler-mips.h View 1 2 3 2 chunks +31 lines, -0 lines 0 comments Download
M src/mips/assembler-mips.cc View 1 2 3 2 chunks +24 lines, -1 line 0 comments Download
M src/mips/constants-mips.h View 1 2 3 2 chunks +40 lines, -0 lines 0 comments Download
M src/mips/macro-assembler-mips.h View 1 1 chunk +6 lines, -0 lines 0 comments Download
M src/mips/macro-assembler-mips.cc View 1 2 1 chunk +76 lines, -0 lines 0 comments Download
M src/mips64/assembler-mips64.h View 1 2 3 2 chunks +31 lines, -0 lines 0 comments Download
M src/mips64/assembler-mips64.cc View 1 2 3 2 chunks +24 lines, -1 line 0 comments Download
M src/mips64/constants-mips64.h View 1 2 3 2 chunks +40 lines, -0 lines 0 comments Download
M src/mips64/macro-assembler-mips64.h View 1 2 1 chunk +6 lines, -0 lines 0 comments Download
M src/mips64/macro-assembler-mips64.cc View 1 2 1 chunk +76 lines, -0 lines 0 comments Download
M test/cctest/test-disasm-mips.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M test/cctest/test-disasm-mips64.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M test/cctest/wasm/test-run-wasm-simd.cc View 1 2 3 8 chunks +27 lines, -13 lines 0 comments Download

Messages

Total messages: 30 (17 generated)
dusan.simicic
PTAL
3 years, 8 months ago (2017-04-05 12:19:48 UTC) #2
bbudge
lgtm https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc File src/compiler/mips/code-generator-mips.cc (right): https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc#newcode1709 src/compiler/mips/code-generator-mips.cc:1709: __ li(dst, -1); This surprised me before I ...
3 years, 8 months ago (2017-04-05 17:28:00 UTC) #3
dusan.simicic
https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc File src/compiler/mips/code-generator-mips.cc (right): https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc#newcode1709 src/compiler/mips/code-generator-mips.cc:1709: __ li(dst, -1); On 2017/04/05 17:28:00, bbudge wrote: > ...
3 years, 8 months ago (2017-04-06 10:50:11 UTC) #4
ivica.bogosavljevic
https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc File src/compiler/mips/code-generator-mips.cc (right): https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc#newcode1707 src/compiler/mips/code-generator-mips.cc:1707: __ bz_v(i.InputSimd128Register(0), &all_false); you should not use bz_v like ...
3 years, 7 months ago (2017-05-15 14:59:07 UTC) #5
dusan.simicic
https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc File src/compiler/mips/code-generator-mips.cc (right): https://codereview.chromium.org/2801683003/diff/1/src/compiler/mips/code-generator-mips.cc#newcode1707 src/compiler/mips/code-generator-mips.cc:1707: __ bz_v(i.InputSimd128Register(0), &all_false); On 2017/05/15 14:59:06, ivica.bogosavljevic wrote: > ...
3 years, 7 months ago (2017-05-19 08:55:02 UTC) #6
ivica.bogosavljevic
mips part lgtm
3 years, 7 months ago (2017-05-19 12:53:46 UTC) #7
dusan.simicic
+ jarin, +tebbi, +bmeurer for instruction-selector.cc and test-run-wasm-simd.cc PTAL
3 years, 7 months ago (2017-05-25 12:31:39 UTC) #9
dusan.simicic
ping Need lgtm from owners.
3 years, 6 months ago (2017-05-31 09:41:32 UTC) #10
Jarin
lgtm
3 years, 6 months ago (2017-05-31 12:07:22 UTC) #11
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/2801683003/40001
3 years, 6 months ago (2017-05-31 14:35:34 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: v8_presubmit on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_presubmit/builds/42179)
3 years, 6 months ago (2017-05-31 14:38:15 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/2801683003/60001
3 years, 6 months ago (2017-06-01 13:24:25 UTC) #27
commit-bot: I haz the power
3 years, 6 months ago (2017-06-01 13:25:59 UTC) #30
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/v8/v8/+/3e3dbdf3e56583a0bc2d6d372b384bf7f31...

Powered by Google App Engine
This is Rietveld 408576698