Index: src/arm64/lithium-codegen-arm64.cc |
diff --git a/src/arm64/lithium-codegen-arm64.cc b/src/arm64/lithium-codegen-arm64.cc |
index b064d3da9f12870157ecfc9f4b60e923129fcc42..ef20c67f80c4fc508f259720a88d6a06cd6d35d6 100644 |
--- a/src/arm64/lithium-codegen-arm64.cc |
+++ b/src/arm64/lithium-codegen-arm64.cc |
@@ -5744,6 +5744,15 @@ void LCodeGen::DoTransitionElementsKind(LTransitionElementsKind* instr) { |
} |
+void LCodeGen::DoArrayShift(LArrayShift* instr) { |
+ ASSERT(ToRegister(instr->context()).is(cp)); |
+ ASSERT(ToRegister(instr->object()).is(x0)); |
+ ASSERT(ToRegister(instr->result()).is(x0)); |
+ ArrayShiftStub stub(isolate(), instr->hydrogen()->kind()); |
+ CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
+} |
+ |
+ |
void LCodeGen::DoTrapAllocationMemento(LTrapAllocationMemento* instr) { |
Register object = ToRegister(instr->object()); |
Register temp1 = ToRegister(instr->temp1()); |