Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 4ccda2df8b1e2040c73a8fbe858677ad64f1911f..425fdb50152411acb307337399c9ddab22a96eb1 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -134,6 +134,19 @@ void KeyedLoadFieldStub::InitializeInterfaceDescriptor( |
} |
+void KeyedArrayCallStub::InitializeInterfaceDescriptor( |
+ Isolate* isolate, |
+ CodeStubInterfaceDescriptor* descriptor) { |
+ static Register registers[] = { rcx }; |
+ descriptor->register_param_count_ = 1; |
+ descriptor->register_params_ = registers; |
+ descriptor->continuation_type_ = TAIL_CALL_CONTINUATION; |
+ descriptor->handler_arguments_mode_ = PASS_ARGUMENTS; |
+ descriptor->deoptimization_handler_ = |
+ FUNCTION_ADDR(KeyedCallIC_MissFromStubFailure); |
+} |
+ |
+ |
void KeyedStoreFastElementStub::InitializeInterfaceDescriptor( |
Isolate* isolate, |
CodeStubInterfaceDescriptor* descriptor) { |
@@ -5458,6 +5471,24 @@ void StubFailureTrampolineStub::Generate(MacroAssembler* masm) { |
} |
+void StubFailureTailCallTrampolineStub::Generate(MacroAssembler* masm) { |
+ CEntryStub ces(1, fp_registers_ ? kSaveFPRegs : kDontSaveFPRegs); |
+ __ Call(ces.GetCode(masm->isolate()), RelocInfo::CODE_TARGET); |
+ __ movq(rdi, rax); |
+ int parameter_count_offset = |
+ StubFailureTrampolineFrame::kCallerStackParameterCountFrameOffset; |
+ __ movq(rax, MemOperand(rbp, parameter_count_offset)); |
+ // The parameter count above includes the receiver for the arguments passed to |
+ // the deoptimization handler. Subtract the receiver for the parameter count |
+ // for the call. |
+ __ subl(rax, Immediate(1)); |
+ masm->LeaveFrame(StackFrame::STUB_FAILURE_TRAMPOLINE); |
+ ParameterCount argument_count(rax); |
+ __ InvokeFunction( |
+ rdi, argument_count, JUMP_FUNCTION, NullCallWrapper(), CALL_AS_METHOD); |
+} |
+ |
+ |
void ProfileEntryHookStub::MaybeCallEntryHook(MacroAssembler* masm) { |
if (masm->isolate()->function_entry_hook() != NULL) { |
// It's always safe to call the entry hook stub, as the hook itself |