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

Issue 1768233002: [wasm] Int64Lowering of I64ShrU and I64ShrS on ia32. (Closed)

Created:
4 years, 9 months ago by ahaas
Modified:
4 years, 9 months ago
Reviewers:
titzer
CC:
v8-mips-ports_googlegroups.com, v8-ppc-ports_googlegroups.com, v8-reviews_googlegroups.com, v8-x87-ports_googlegroups.com
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[wasm] Int64Lowering of I64ShrU and I64ShrS on ia32. I implemented I64ShrU and I64ShrS the same as I64Shl in https://codereview.chromium.org/1756863002 R=titzer@chromium.org Committed: https://crrev.com/240b7db9c78685c603278bb1ac136b35de37b8c3 Cr-Commit-Position: refs/heads/master@{#34630}

Patch Set 1 #

Patch Set 2 : Forgot to save a file. #

Total comments: 4

Patch Set 3 : Renamed parameters. #

Patch Set 4 : Code cleanup #

Patch Set 5 : Rebase #

Total comments: 1

Patch Set 6 : Renamed PairX to XPair. #

Patch Set 7 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+362 lines, -48 lines) Patch
M src/compiler/arm/instruction-selector-arm.cc View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M src/compiler/ia32/code-generator-ia32.cc View 1 2 3 4 5 1 chunk +19 lines, -3 lines 0 comments Download
M src/compiler/ia32/instruction-codes-ia32.h View 1 2 3 4 5 1 chunk +3 lines, -1 line 0 comments Download
M src/compiler/ia32/instruction-scheduler-ia32.cc View 1 2 3 4 5 1 chunk +3 lines, -1 line 0 comments Download
M src/compiler/ia32/instruction-selector-ia32.cc View 1 2 3 4 5 1 chunk +43 lines, -1 line 0 comments Download
M src/compiler/instruction-selector.cc View 1 2 3 chunks +14 lines, -0 lines 0 comments Download
M src/compiler/int64-lowering.cc View 1 2 3 4 5 1 chunk +44 lines, -0 lines 0 comments Download
M src/compiler/machine-operator.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/machine-operator.cc View 1 chunk +3 lines, -1 line 0 comments Download
M src/compiler/mips/instruction-selector-mips.cc View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M src/compiler/opcodes.h View 1 chunk +3 lines, -1 line 0 comments Download
M src/compiler/ppc/instruction-selector-ppc.cc View 1 2 3 4 5 1 chunk +5 lines, -0 lines 0 comments Download
M src/compiler/raw-machine-assembler.h View 1 chunk +6 lines, -0 lines 0 comments Download
M src/compiler/typer.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M src/compiler/verifier.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/wasm-compiler.cc View 1 2 3 4 5 2 chunks +6 lines, -6 lines 0 comments Download
M src/compiler/x87/instruction-selector-x87.cc View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M src/ia32/assembler-ia32.h View 1 2 3 1 chunk +5 lines, -6 lines 0 comments Download
M src/ia32/assembler-ia32.cc View 1 2 3 3 chunks +15 lines, -10 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M src/ia32/disasm-ia32.cc View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 1 2 3 4 5 1 chunk +6 lines, -2 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 1 2 3 4 5 1 chunk +55 lines, -11 lines 0 comments Download
M test/cctest/test-disasm-ia32.cc View 1 2 3 2 chunks +3 lines, -2 lines 0 comments Download
M test/cctest/wasm/test-run-wasm-64.cc View 1 2 1 chunk +66 lines, -0 lines 0 comments Download
M test/unittests/compiler/int64-lowering-unittest.cc View 1 2 3 4 5 1 chunk +30 lines, -0 lines 0 comments Download
M test/unittests/compiler/node-test-utils.h View 1 chunk +7 lines, -0 lines 0 comments Download
M test/unittests/compiler/node-test-utils.cc View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (3 generated)
ahaas
4 years, 9 months ago (2016-03-07 17:41:26 UTC) #1
titzer
https://codereview.chromium.org/1768233002/diff/20001/src/ia32/macro-assembler-ia32.cc File src/ia32/macro-assembler-ia32.cc (right): https://codereview.chromium.org/1768233002/diff/20001/src/ia32/macro-assembler-ia32.cc#newcode731 src/ia32/macro-assembler-ia32.cc:731: void MacroAssembler::PairShr(Register dst, Register src, uint8_t shift) { {dst} ...
4 years, 9 months ago (2016-03-07 19:25:35 UTC) #2
ahaas
https://codereview.chromium.org/1768233002/diff/20001/src/ia32/macro-assembler-ia32.cc File src/ia32/macro-assembler-ia32.cc (right): https://codereview.chromium.org/1768233002/diff/20001/src/ia32/macro-assembler-ia32.cc#newcode731 src/ia32/macro-assembler-ia32.cc:731: void MacroAssembler::PairShr(Register dst, Register src, uint8_t shift) { On ...
4 years, 9 months ago (2016-03-08 07:58:42 UTC) #3
titzer
LGTM other than naming suggestion. https://codereview.chromium.org/1768233002/diff/80001/src/ia32/macro-assembler-ia32.cc File src/ia32/macro-assembler-ia32.cc (right): https://codereview.chromium.org/1768233002/diff/80001/src/ia32/macro-assembler-ia32.cc#newcode709 src/ia32/macro-assembler-ia32.cc:709: void MacroAssembler::PairShl(Register high, Register ...
4 years, 9 months ago (2016-03-09 09:31:44 UTC) #4
ahaas
On 2016/03/09 at 09:31:44, titzer wrote: > LGTM other than naming suggestion. > > https://codereview.chromium.org/1768233002/diff/80001/src/ia32/macro-assembler-ia32.cc ...
4 years, 9 months ago (2016-03-09 16:22:32 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1768233002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1768233002/120001
4 years, 9 months ago (2016-03-09 16:22:56 UTC) #8
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 9 months ago (2016-03-09 16:37:38 UTC) #9
commit-bot: I haz the power
4 years, 9 months ago (2016-03-09 16:38:50 UTC) #11
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/240b7db9c78685c603278bb1ac136b35de37b8c3
Cr-Commit-Position: refs/heads/master@{#34630}

Powered by Google App Engine
This is Rietveld 408576698