| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index 33d0ba0ab74ecd1c42f21b3530e316ad11039b9e..2b620a393b6a22911e323ae1716e0c647798fe20 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -1150,6 +1150,10 @@ void InstructionSelector::VisitNode(Node* node) {
|
| }
|
| case IrOpcode::kCheckedStore:
|
| return VisitCheckedStore(node);
|
| + case IrOpcode::kInt32PairAdd:
|
| + MarkAsWord32(NodeProperties::FindProjection(node, 0));
|
| + MarkAsWord32(NodeProperties::FindProjection(node, 1));
|
| + return VisitInt32PairAdd(node);
|
| case IrOpcode::kWord32PairShl:
|
| MarkAsWord32(NodeProperties::FindProjection(node, 0));
|
| MarkAsWord32(NodeProperties::FindProjection(node, 1));
|
| @@ -1387,6 +1391,8 @@ void InstructionSelector::VisitBitcastInt64ToFloat64(Node* node) {
|
|
|
| // 32 bit targets do not implement the following instructions.
|
| #if V8_TARGET_ARCH_64_BIT
|
| +void InstructionSelector::VisitInt32PairAdd(Node* node) { UNIMPLEMENTED(); }
|
| +
|
| void InstructionSelector::VisitWord32PairShl(Node* node) { UNIMPLEMENTED(); }
|
|
|
| void InstructionSelector::VisitWord32PairShr(Node* node) { UNIMPLEMENTED(); }
|
| @@ -1471,6 +1477,7 @@ void InstructionSelector::VisitProjection(Node* node) {
|
| case IrOpcode::kTryTruncateFloat64ToInt64:
|
| case IrOpcode::kTryTruncateFloat32ToUint64:
|
| case IrOpcode::kTryTruncateFloat64ToUint64:
|
| + case IrOpcode::kInt32PairAdd:
|
| case IrOpcode::kWord32PairShl:
|
| case IrOpcode::kWord32PairShr:
|
| case IrOpcode::kWord32PairSar:
|
|
|