Index: src/x64/deoptimizer-x64.cc |
diff --git a/src/x64/deoptimizer-x64.cc b/src/x64/deoptimizer-x64.cc |
index d32310a52ae0c4595565d8b3f05489f21367ebe6..f58170ef7edfd4fb752618171b8babf8029f4c8f 100644 |
--- a/src/x64/deoptimizer-x64.cc |
+++ b/src/x64/deoptimizer-x64.cc |
@@ -454,35 +454,39 @@ void Deoptimizer::DoCompiledStubFrame(TranslationIterator* iterator, |
// FROM TO <-rbp |
// | .... | | .... | |
// +-------------------------+ +-------------------------+ |
- // | JSFunction continuation | | JSFunction continuation | |
+ // | JSFunction continuation | | parameter 1 | |
+ // +-------------------------+ +-------------------------+ |
+ // | | saved frame (rbp) | | .... | |
+ // | +=========================+<-rbp +-------------------------+ |
+ // | | JSFunction context | | parameter n | |
+ // v +-------------------------+ +-------------------------| |
+ // | COMPILED_STUB marker | | JSFunction continuation | |
// +-------------------------+ +-------------------------+<-rsp |
- // | | saved frame (rbp) | |
- // | +=========================+<-rbp |
- // | | JSFunction context | |
- // v +-------------------------+ |
- // | COMPILED_STUB marker | rbp = saved frame |
- // +-------------------------+ rsi = JSFunction context |
- // | | |
- // | ... | |
- // | | |
- // +-------------------------+<-rsp |
+ // | | rax = number of parameters |
+ // | ... | rbx = failure handler address |
+ // | | rbp = saved frame |
+ // +-------------------------+<-rsp rsi = JSFunction context |
// |
// |
- int output_frame_size = 1 * kPointerSize; |
- FrameDescription* output_frame = |
- new(output_frame_size) FrameDescription(output_frame_size, 0); |
- Code* notify_miss = |
- isolate_->builtins()->builtin(Builtins::kNotifyICMiss); |
- output_frame->SetState(Smi::FromInt(FullCodeGenerator::NO_REGISTERS)); |
- output_frame->SetContinuation( |
- reinterpret_cast<intptr_t>(notify_miss->entry())); |
ASSERT(compiled_code_->kind() == Code::COMPILED_STUB); |
int major_key = compiled_code_->major_key(); |
CodeStubInterfaceDescriptor* descriptor = |
isolate_->code_stub_interface_descriptor(major_key); |
- Handle<Code> miss_ic(descriptor->deoptimization_handler_); |
- output_frame->SetPc(reinterpret_cast<intptr_t>(miss_ic->instruction_start())); |
+ |
+ int output_frame_size = |
+ (1 + descriptor->register_param_count_) * kPointerSize; |
+ FrameDescription* output_frame = |
+ new(output_frame_size) FrameDescription(output_frame_size, 0); |
+ Code* notify_failure = |
+ isolate_->builtins()->builtin(Builtins::kNotifyStubFailure); |
+ output_frame->SetState(Smi::FromInt(FullCodeGenerator::NO_REGISTERS)); |
+ output_frame->SetContinuation( |
+ reinterpret_cast<intptr_t>(notify_failure->entry())); |
+ |
+ Code* code; |
+ CEntryStub(1, kDontSaveFPRegs).FindCodeInCache(&code, isolate_); |
+ output_frame->SetPc(reinterpret_cast<intptr_t>(code->instruction_start())); |
unsigned input_frame_size = input_->GetFrameSize(); |
intptr_t value = input_->GetFrameSlot(input_frame_size - kPointerSize); |
output_frame->SetFrameSlot(0, value); |
@@ -492,20 +496,22 @@ void Deoptimizer::DoCompiledStubFrame(TranslationIterator* iterator, |
value = input_->GetFrameSlot(input_frame_size - 3 * kPointerSize); |
output_frame->SetRegister(rsi.code(), value); |
- Translation::Opcode opcode = |
- static_cast<Translation::Opcode>(iterator->Next()); |
- ASSERT(opcode == Translation::REGISTER); |
- USE(opcode); |
- int input_reg = iterator->Next(); |
- intptr_t input_value = input_->GetRegister(input_reg); |
- output_frame->SetRegister(rdx.code(), input_value); |
- |
- int32_t next = iterator->Next(); |
- opcode = static_cast<Translation::Opcode>(next); |
- ASSERT(opcode == Translation::REGISTER); |
- input_reg = iterator->Next(); |
- input_value = input_->GetRegister(input_reg); |
- output_frame->SetRegister(rax.code(), input_value); |
+ int parameter_offset = kPointerSize * descriptor->register_param_count_; |
+ for (int i = 0; i < descriptor->register_param_count_; ++i) { |
+ Translation::Opcode opcode = |
+ static_cast<Translation::Opcode>(iterator->Next()); |
+ ASSERT(opcode == Translation::REGISTER); |
+ USE(opcode); |
+ int input_reg = iterator->Next(); |
+ intptr_t reg_value = input_->GetRegister(input_reg); |
+ output_frame->SetFrameSlot(parameter_offset, reg_value); |
+ parameter_offset -= kPointerSize; |
+ } |
+ |
+ intptr_t handler = |
+ reinterpret_cast<intptr_t>(descriptor->deoptimization_handler_); |
+ output_frame->SetRegister(rax.code(), descriptor->register_param_count_); |
+ output_frame->SetRegister(rbx.code(), handler); |
ASSERT(frame_index == 0); |
output_[frame_index] = output_frame; |