| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index d8409a3f89c8250155d645b73b189ece198083d4..e145673b4262bc46edb0cba3a6891fa8ce82f6f0 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -1357,6 +1357,12 @@ void InstructionSelector::VisitNode(Node* node) {
|
| return MarkAsSimd128(node), VisitCreateInt32x4(node);
|
| case IrOpcode::kInt32x4ExtractLane:
|
| return MarkAsWord32(node), VisitInt32x4ExtractLane(node);
|
| + case IrOpcode::kInt32x4ReplaceLane:
|
| + return MarkAsSimd128(node), VisitInt32x4ReplaceLane(node);
|
| + case IrOpcode::kInt32x4Add:
|
| + return MarkAsSimd128(node), VisitInt32x4Add(node);
|
| + case IrOpcode::kInt32x4Sub:
|
| + return MarkAsSimd128(node), VisitInt32x4Sub(node);
|
| default:
|
| V8_Fatal(__FILE__, __LINE__, "Unexpected operator #%d:%s @ node #%d",
|
| node->opcode(), node->op()->mnemonic(), node->id());
|
| @@ -1690,6 +1696,14 @@ void InstructionSelector::VisitCreateInt32x4(Node* node) { UNIMPLEMENTED(); }
|
| void InstructionSelector::VisitInt32x4ExtractLane(Node* node) {
|
| UNIMPLEMENTED();
|
| }
|
| +
|
| +void InstructionSelector::VisitInt32x4ReplaceLane(Node* node) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +void InstructionSelector::VisitInt32x4Add(Node* node) { UNIMPLEMENTED(); }
|
| +
|
| +void InstructionSelector::VisitInt32x4Sub(Node* node) { UNIMPLEMENTED(); }
|
| #endif // !V8_TARGET_ARCH_X64
|
|
|
| void InstructionSelector::VisitFinishRegion(Node* node) { EmitIdentity(node); }
|
|
|