Index: src/compiler/int64-lowering.cc |
diff --git a/src/compiler/int64-lowering.cc b/src/compiler/int64-lowering.cc |
index 116e261fcf0aa5c3cda989962b77ceb899e14881..4673f348806d00eb4f8479e00c840dcf0c7c97f8 100644 |
--- a/src/compiler/int64-lowering.cc |
+++ b/src/compiler/int64-lowering.cc |
@@ -271,6 +271,24 @@ void Int64Lowering::LowerNode(Node* node) { |
} |
// kExprI64Sub: |
+ case IrOpcode::kInt64Sub: { |
+ DCHECK(node->InputCount() == 2); |
+ |
+ Node* right = node->InputAt(1); |
+ node->ReplaceInput(1, GetReplacementLow(right)); |
+ node->AppendInput(zone(), GetReplacementHigh(right)); |
+ |
+ Node* left = node->InputAt(0); |
+ node->ReplaceInput(0, GetReplacementLow(left)); |
+ node->InsertInput(zone(), 1, GetReplacementHigh(left)); |
+ |
+ NodeProperties::ChangeOp(node, machine()->Int32PairSub()); |
+ // We access the additional return values through projections. |
+ Node* low_node = graph()->NewNode(common()->Projection(0), node); |
+ Node* high_node = graph()->NewNode(common()->Projection(1), node); |
+ ReplaceNode(node, low_node, high_node); |
+ break; |
+ } |
// kExprI64Mul: |
// kExprI64DivS: |
// kExprI64DivU: |