Skip to content

Commit a52569e

Browse files
Milad FarazmandCommit Bot
authored andcommitted
PPC: [wasm-simd] Move bitmask into SIMD MVP
Port 6da647f Original Commit Message: Now that 86 has branched, we can move bitmask into the SIMD MVP, it will not affect the current OT. (We want any OT extension to include bitmask.) Bitmask was accepted into the proposal in WebAssembly/simd#201. [email protected], [email protected], [email protected], [email protected] BUG= LOG=N Change-Id: I7518e1e8d7513a6931ff026eb3089fa896a6b587 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2379227 Reviewed-by: Junliang Yan <[email protected]> Commit-Queue: Milad Farazmand <[email protected]> Cr-Commit-Position: refs/heads/master@{#69587}
1 parent f2851de commit a52569e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/compiler/backend/ppc/instruction-selector-ppc.cc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2402,6 +2402,12 @@ void InstructionSelector::VisitS128Const(Node* node) { UNIMPLEMENTED(); }
24022402

24032403
void InstructionSelector::VisitS128AndNot(Node* node) { UNIMPLEMENTED(); }
24042404

2405+
void InstructionSelector::VisitI8x16BitMask(Node* node) { UNIMPLEMENTED(); }
2406+
2407+
void InstructionSelector::VisitI16x8BitMask(Node* node) { UNIMPLEMENTED(); }
2408+
2409+
void InstructionSelector::VisitI32x4BitMask(Node* node) { UNIMPLEMENTED(); }
2410+
24052411
void InstructionSelector::EmitPrepareResults(
24062412
ZoneVector<PushParameter>* results, const CallDescriptor* call_descriptor,
24072413
Node* node) {

0 commit comments

Comments
 (0)