OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 } | 110 } |
111 // Replace relocation information on the code object. | 111 // Replace relocation information on the code object. |
112 code->set_relocation_info(*new_reloc); | 112 code->set_relocation_info(*new_reloc); |
113 } | 113 } |
114 } | 114 } |
115 | 115 |
116 | 116 |
117 void Deoptimizer::DeoptimizeFunction(JSFunction* function) { | 117 void Deoptimizer::DeoptimizeFunction(JSFunction* function) { |
118 if (!function->IsOptimized()) return; | 118 if (!function->IsOptimized()) return; |
119 | 119 |
| 120 // The optimized code is going to be patched, so we cannot use it |
| 121 // any more. Play safe and reset the whole cache. |
| 122 function->shared()->set_optimized_code_map(Smi::FromInt(0)); |
| 123 |
120 Isolate* isolate = function->GetIsolate(); | 124 Isolate* isolate = function->GetIsolate(); |
121 HandleScope scope(isolate); | 125 HandleScope scope(isolate); |
122 AssertNoAllocation no_allocation; | 126 AssertNoAllocation no_allocation; |
123 | 127 |
124 // Get the optimized code. | 128 // Get the optimized code. |
125 Code* code = function->code(); | 129 Code* code = function->code(); |
126 Address code_start_address = code->instruction_start(); | 130 Address code_start_address = code->instruction_start(); |
127 | 131 |
128 // We will overwrite the code's relocation info in-place. Relocation info | 132 // We will overwrite the code's relocation info in-place. Relocation info |
129 // is written backward. The relocation info is the payload of a byte | 133 // is written backward. The relocation info is the payload of a byte |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 DeoptimizingCodeListNode* node = new DeoptimizingCodeListNode(code); | 191 DeoptimizingCodeListNode* node = new DeoptimizingCodeListNode(code); |
188 DeoptimizerData* data = isolate->deoptimizer_data(); | 192 DeoptimizerData* data = isolate->deoptimizer_data(); |
189 node->set_next(data->deoptimizing_code_list_); | 193 node->set_next(data->deoptimizing_code_list_); |
190 data->deoptimizing_code_list_ = node; | 194 data->deoptimizing_code_list_ = node; |
191 | 195 |
192 // We might be in the middle of incremental marking with compaction. | 196 // We might be in the middle of incremental marking with compaction. |
193 // Tell collector to treat this code object in a special way and | 197 // Tell collector to treat this code object in a special way and |
194 // ignore all slots that might have been recorded on it. | 198 // ignore all slots that might have been recorded on it. |
195 isolate->heap()->mark_compact_collector()->InvalidateCode(code); | 199 isolate->heap()->mark_compact_collector()->InvalidateCode(code); |
196 | 200 |
197 // Set the code for the function to non-optimized version. | 201 // Iterate over all the functions which share the same code object |
198 function->ReplaceCode(function->shared()->code()); | 202 // and make them use unoptimized version. |
| 203 Context* context = function->context()->global_context(); |
| 204 Object* element = context->get(Context::OPTIMIZED_FUNCTIONS_LIST); |
| 205 SharedFunctionInfo* shared = function->shared(); |
| 206 while (!element->IsUndefined()) { |
| 207 JSFunction* func = JSFunction::cast(element); |
| 208 // Grab element before code replacement as ReplaceCode alters the list. |
| 209 element = func->next_function_link(); |
| 210 if (func->code() == code) { |
| 211 func->ReplaceCode(shared->code()); |
| 212 } |
| 213 } |
199 | 214 |
200 if (FLAG_trace_deopt) { | 215 if (FLAG_trace_deopt) { |
201 PrintF("[forced deoptimization: "); | 216 PrintF("[forced deoptimization: "); |
202 function->PrintName(); | 217 function->PrintName(); |
203 PrintF(" / %x]\n", reinterpret_cast<uint32_t>(function)); | 218 PrintF(" / %x]\n", reinterpret_cast<uint32_t>(function)); |
204 } | 219 } |
205 } | 220 } |
206 | 221 |
207 | 222 |
208 static const byte kJnsInstruction = 0x79; | 223 static const byte kJnsInstruction = 0x79; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 iterator.Next(); // Drop JS frames count. | 338 iterator.Next(); // Drop JS frames count. |
324 ASSERT(count == 1); | 339 ASSERT(count == 1); |
325 USE(count); | 340 USE(count); |
326 | 341 |
327 opcode = static_cast<Translation::Opcode>(iterator.Next()); | 342 opcode = static_cast<Translation::Opcode>(iterator.Next()); |
328 USE(opcode); | 343 USE(opcode); |
329 ASSERT(Translation::JS_FRAME == opcode); | 344 ASSERT(Translation::JS_FRAME == opcode); |
330 unsigned node_id = iterator.Next(); | 345 unsigned node_id = iterator.Next(); |
331 USE(node_id); | 346 USE(node_id); |
332 ASSERT(node_id == ast_id); | 347 ASSERT(node_id == ast_id); |
333 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator.Next())); | 348 int closure_id = iterator.Next(); |
334 USE(function); | 349 USE(closure_id); |
335 ASSERT(function == function_); | 350 ASSERT_EQ(Translation::kSelfLiteralId, closure_id); |
336 unsigned height = iterator.Next(); | 351 unsigned height = iterator.Next(); |
337 unsigned height_in_bytes = height * kPointerSize; | 352 unsigned height_in_bytes = height * kPointerSize; |
338 USE(height_in_bytes); | 353 USE(height_in_bytes); |
339 | 354 |
340 unsigned fixed_size = ComputeFixedSize(function_); | 355 unsigned fixed_size = ComputeFixedSize(function_); |
341 unsigned input_frame_size = input_->GetFrameSize(); | 356 unsigned input_frame_size = input_->GetFrameSize(); |
342 ASSERT(fixed_size + height_in_bytes == input_frame_size); | 357 ASSERT(fixed_size + height_in_bytes == input_frame_size); |
343 | 358 |
344 unsigned stack_slot_size = optimized_code_->stack_slots() * kPointerSize; | 359 unsigned stack_slot_size = optimized_code_->stack_slots() * kPointerSize; |
345 unsigned outgoing_height = data->ArgumentsStackHeight(bailout_id)->value(); | 360 unsigned outgoing_height = data->ArgumentsStackHeight(bailout_id)->value(); |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 // Set up the frame pointer and the context pointer. | 444 // Set up the frame pointer and the context pointer. |
430 output_[0]->SetRegister(ebp.code(), input_->GetRegister(ebp.code())); | 445 output_[0]->SetRegister(ebp.code(), input_->GetRegister(ebp.code())); |
431 output_[0]->SetRegister(esi.code(), input_->GetRegister(esi.code())); | 446 output_[0]->SetRegister(esi.code(), input_->GetRegister(esi.code())); |
432 | 447 |
433 unsigned pc_offset = data->OsrPcOffset()->value(); | 448 unsigned pc_offset = data->OsrPcOffset()->value(); |
434 uint32_t pc = reinterpret_cast<uint32_t>( | 449 uint32_t pc = reinterpret_cast<uint32_t>( |
435 optimized_code_->entry() + pc_offset); | 450 optimized_code_->entry() + pc_offset); |
436 output_[0]->SetPc(pc); | 451 output_[0]->SetPc(pc); |
437 } | 452 } |
438 Code* continuation = | 453 Code* continuation = |
439 function->GetIsolate()->builtins()->builtin(Builtins::kNotifyOSR); | 454 function_->GetIsolate()->builtins()->builtin(Builtins::kNotifyOSR); |
440 output_[0]->SetContinuation( | 455 output_[0]->SetContinuation( |
441 reinterpret_cast<uint32_t>(continuation->entry())); | 456 reinterpret_cast<uint32_t>(continuation->entry())); |
442 | 457 |
443 if (FLAG_trace_osr) { | 458 if (FLAG_trace_osr) { |
444 PrintF("[on-stack replacement translation %s: 0x%08" V8PRIxPTR " ", | 459 PrintF("[on-stack replacement translation %s: 0x%08" V8PRIxPTR " ", |
445 ok ? "finished" : "aborted", | 460 ok ? "finished" : "aborted", |
446 reinterpret_cast<intptr_t>(function)); | 461 reinterpret_cast<intptr_t>(function_)); |
447 function->PrintName(); | 462 function_->PrintName(); |
448 PrintF(" => pc=0x%0x]\n", output_[0]->GetPc()); | 463 PrintF(" => pc=0x%0x]\n", output_[0]->GetPc()); |
449 } | 464 } |
450 } | 465 } |
451 | 466 |
452 | 467 |
453 void Deoptimizer::DoComputeArgumentsAdaptorFrame(TranslationIterator* iterator, | 468 void Deoptimizer::DoComputeArgumentsAdaptorFrame(TranslationIterator* iterator, |
454 int frame_index) { | 469 int frame_index) { |
455 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); | 470 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); |
456 unsigned height = iterator->Next(); | 471 unsigned height = iterator->Next(); |
457 unsigned height_in_bytes = height * kPointerSize; | 472 unsigned height_in_bytes = height * kPointerSize; |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 uint32_t pc = reinterpret_cast<uint32_t>( | 661 uint32_t pc = reinterpret_cast<uint32_t>( |
647 construct_stub->instruction_start() + | 662 construct_stub->instruction_start() + |
648 isolate_->heap()->construct_stub_deopt_pc_offset()->value()); | 663 isolate_->heap()->construct_stub_deopt_pc_offset()->value()); |
649 output_frame->SetPc(pc); | 664 output_frame->SetPc(pc); |
650 } | 665 } |
651 | 666 |
652 | 667 |
653 void Deoptimizer::DoComputeJSFrame(TranslationIterator* iterator, | 668 void Deoptimizer::DoComputeJSFrame(TranslationIterator* iterator, |
654 int frame_index) { | 669 int frame_index) { |
655 int node_id = iterator->Next(); | 670 int node_id = iterator->Next(); |
656 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next())); | 671 JSFunction* function; |
| 672 if (frame_index != 0) { |
| 673 function = JSFunction::cast(ComputeLiteral(iterator->Next())); |
| 674 } else { |
| 675 int closure_id = iterator->Next(); |
| 676 USE(closure_id); |
| 677 ASSERT_EQ(Translation::kSelfLiteralId, closure_id); |
| 678 function = function_; |
| 679 } |
657 unsigned height = iterator->Next(); | 680 unsigned height = iterator->Next(); |
658 unsigned height_in_bytes = height * kPointerSize; | 681 unsigned height_in_bytes = height * kPointerSize; |
659 if (FLAG_trace_deopt) { | 682 if (FLAG_trace_deopt) { |
660 PrintF(" translating "); | 683 PrintF(" translating "); |
661 function->PrintName(); | 684 function->PrintName(); |
662 PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes); | 685 PrintF(" => node=%d, height=%d\n", node_id, height_in_bytes); |
663 } | 686 } |
664 | 687 |
665 // The 'fixed' part of the frame consists of the incoming parameters and | 688 // The 'fixed' part of the frame consists of the incoming parameters and |
666 // the part described by JavaScriptFrameConstants. | 689 // the part described by JavaScriptFrameConstants. |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 } | 1025 } |
1003 __ bind(&done); | 1026 __ bind(&done); |
1004 } | 1027 } |
1005 | 1028 |
1006 #undef __ | 1029 #undef __ |
1007 | 1030 |
1008 | 1031 |
1009 } } // namespace v8::internal | 1032 } } // namespace v8::internal |
1010 | 1033 |
1011 #endif // V8_TARGET_ARCH_IA32 | 1034 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |