OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/crankshaft/hydrogen.h" | 5 #include "src/crankshaft/hydrogen.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "src/allocation-site-scopes.h" | 9 #include "src/allocation-site-scopes.h" |
10 #include "src/ast/ast-numbering.h" | 10 #include "src/ast/ast-numbering.h" |
(...skipping 5690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5701 | 5701 |
5702 void HOptimizedGraphBuilder::VisitFunctionLiteral(FunctionLiteral* expr) { | 5702 void HOptimizedGraphBuilder::VisitFunctionLiteral(FunctionLiteral* expr) { |
5703 DCHECK(!HasStackOverflow()); | 5703 DCHECK(!HasStackOverflow()); |
5704 DCHECK(current_block() != NULL); | 5704 DCHECK(current_block() != NULL); |
5705 DCHECK(current_block()->HasPredecessor()); | 5705 DCHECK(current_block()->HasPredecessor()); |
5706 Handle<SharedFunctionInfo> shared_info = Compiler::GetSharedFunctionInfo( | 5706 Handle<SharedFunctionInfo> shared_info = Compiler::GetSharedFunctionInfo( |
5707 expr, current_info()->script(), top_info()); | 5707 expr, current_info()->script(), top_info()); |
5708 // We also have a stack overflow if the recursive compilation did. | 5708 // We also have a stack overflow if the recursive compilation did. |
5709 if (HasStackOverflow()) return; | 5709 if (HasStackOverflow()) return; |
5710 // Use the fast case closure allocation code that allocates in new | 5710 // Use the fast case closure allocation code that allocates in new |
5711 // space for nested functions that don't need literals cloning. | 5711 // space for nested functions that don't need pretenuring. |
5712 HConstant* shared_info_value = Add<HConstant>(shared_info); | 5712 HConstant* shared_info_value = Add<HConstant>(shared_info); |
5713 HInstruction* instr; | 5713 HInstruction* instr; |
5714 if (!expr->pretenure() && shared_info->num_literals() == 0) { | 5714 if (!expr->pretenure()) { |
5715 FastNewClosureStub stub(isolate(), shared_info->language_mode(), | 5715 FastNewClosureStub stub(isolate(), shared_info->language_mode(), |
5716 shared_info->kind()); | 5716 shared_info->kind()); |
5717 FastNewClosureDescriptor descriptor(isolate()); | 5717 FastNewClosureDescriptor descriptor(isolate()); |
5718 HValue* values[] = {context(), shared_info_value}; | 5718 HValue* values[] = {context(), shared_info_value}; |
5719 HConstant* stub_value = Add<HConstant>(stub.GetCode()); | 5719 HConstant* stub_value = Add<HConstant>(stub.GetCode()); |
5720 instr = New<HCallWithDescriptor>(stub_value, 0, descriptor, | 5720 instr = New<HCallWithDescriptor>(stub_value, 0, descriptor, |
5721 ArrayVector(values)); | 5721 ArrayVector(values)); |
5722 } else { | 5722 } else { |
5723 Add<HPushArguments>(shared_info_value); | 5723 Add<HPushArguments>(shared_info_value); |
5724 Runtime::FunctionId function_id = | 5724 Runtime::FunctionId function_id = |
(...skipping 2946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8671 return false; | 8671 return false; |
8672 } | 8672 } |
8673 } | 8673 } |
8674 | 8674 |
8675 // Generate the deoptimization data for the unoptimized version of | 8675 // Generate the deoptimization data for the unoptimized version of |
8676 // the target function if we don't already have it. | 8676 // the target function if we don't already have it. |
8677 if (!Compiler::EnsureDeoptimizationSupport(&target_info)) { | 8677 if (!Compiler::EnsureDeoptimizationSupport(&target_info)) { |
8678 TraceInline(target, caller, "could not generate deoptimization info"); | 8678 TraceInline(target, caller, "could not generate deoptimization info"); |
8679 return false; | 8679 return false; |
8680 } | 8680 } |
| 8681 |
8681 // Remember that we inlined this function. This needs to be called right | 8682 // Remember that we inlined this function. This needs to be called right |
8682 // after the EnsureDeoptimizationSupport call so that the code flusher | 8683 // after the EnsureDeoptimizationSupport call so that the code flusher |
8683 // does not remove the code with the deoptimization support. | 8684 // does not remove the code with the deoptimization support. |
8684 top_info()->AddInlinedFunction(target_info.shared_info()); | 8685 top_info()->AddInlinedFunction(target_info.shared_info()); |
8685 | 8686 |
8686 // ---------------------------------------------------------------- | 8687 // ---------------------------------------------------------------- |
8687 // After this point, we've made a decision to inline this function (so | 8688 // After this point, we've made a decision to inline this function (so |
8688 // TryInline should always return true). | 8689 // TryInline should always return true). |
8689 | 8690 |
| 8691 // If target was lazily compiled, it's literals array may not yet be set up. |
| 8692 JSFunction::EnsureLiterals(target); |
| 8693 |
8690 // Type-check the inlined function. | 8694 // Type-check the inlined function. |
8691 DCHECK(target_shared->has_deoptimization_support()); | 8695 DCHECK(target_shared->has_deoptimization_support()); |
8692 AstTyper(target_info.isolate(), target_info.zone(), target_info.closure(), | 8696 AstTyper(target_info.isolate(), target_info.zone(), target_info.closure(), |
8693 target_info.scope(), target_info.osr_ast_id(), target_info.literal()) | 8697 target_info.scope(), target_info.osr_ast_id(), target_info.literal()) |
8694 .Run(); | 8698 .Run(); |
8695 | 8699 |
8696 int inlining_id = 0; | 8700 int inlining_id = 0; |
8697 if (top_info()->is_tracking_positions()) { | 8701 if (top_info()->is_tracking_positions()) { |
8698 inlining_id = TraceInlinedFunction(target_shared, source_position(), | 8702 inlining_id = TraceInlinedFunction(target_shared, source_position(), |
8699 function_state()->inlining_id()); | 8703 function_state()->inlining_id()); |
(...skipping 5069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13769 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 13773 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
13770 } | 13774 } |
13771 | 13775 |
13772 #ifdef DEBUG | 13776 #ifdef DEBUG |
13773 graph_->Verify(false); // No full verify. | 13777 graph_->Verify(false); // No full verify. |
13774 #endif | 13778 #endif |
13775 } | 13779 } |
13776 | 13780 |
13777 } // namespace internal | 13781 } // namespace internal |
13778 } // namespace v8 | 13782 } // namespace v8 |
OLD | NEW |