OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #if V8_TARGET_ARCH_X64 | 5 #if V8_TARGET_ARCH_X64 |
6 | 6 |
7 #include "src/ast/scopes.h" | 7 #include "src/ast/scopes.h" |
8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 __ Push(info->scope()->GetScopeInfo(info->isolate())); | 167 __ Push(info->scope()->GetScopeInfo(info->isolate())); |
168 __ CallRuntime(Runtime::kNewScriptContext); | 168 __ CallRuntime(Runtime::kNewScriptContext); |
169 PrepareForBailoutForId(BailoutId::ScriptContext(), | 169 PrepareForBailoutForId(BailoutId::ScriptContext(), |
170 BailoutState::TOS_REGISTER); | 170 BailoutState::TOS_REGISTER); |
171 // The new target value is not used, clobbering is safe. | 171 // The new target value is not used, clobbering is safe. |
172 DCHECK_NULL(info->scope()->new_target_var()); | 172 DCHECK_NULL(info->scope()->new_target_var()); |
173 } else { | 173 } else { |
174 if (info->scope()->new_target_var() != nullptr) { | 174 if (info->scope()->new_target_var() != nullptr) { |
175 __ Push(rdx); // Preserve new target. | 175 __ Push(rdx); // Preserve new target. |
176 } | 176 } |
177 if (slots <= FastNewContextStub::kMaximumSlots) { | 177 if (slots <= FastNewFunctionContextStub::kMaximumSlots) { |
178 FastNewContextStub stub(isolate(), slots); | 178 FastNewFunctionContextStub stub(isolate(), slots); |
179 __ CallStub(&stub); | 179 __ CallStub(&stub); |
180 // Result of FastNewContextStub is always in new space. | 180 // Result of FastNewFunctionContextStub is always in new space. |
181 need_write_barrier = false; | 181 need_write_barrier = false; |
182 } else { | 182 } else { |
183 __ Push(rdi); | 183 __ Push(rdi); |
184 __ CallRuntime(Runtime::kNewFunctionContext); | 184 __ CallRuntime(Runtime::kNewFunctionContext); |
185 } | 185 } |
186 if (info->scope()->new_target_var() != nullptr) { | 186 if (info->scope()->new_target_var() != nullptr) { |
187 __ Pop(rdx); // Restore new target. | 187 __ Pop(rdx); // Restore new target. |
188 } | 188 } |
189 } | 189 } |
190 function_in_register = false; | 190 function_in_register = false; |
(...skipping 3467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3658 DCHECK_EQ( | 3658 DCHECK_EQ( |
3659 isolate->builtins()->OnStackReplacement()->entry(), | 3659 isolate->builtins()->OnStackReplacement()->entry(), |
3660 Assembler::target_address_at(call_target_address, unoptimized_code)); | 3660 Assembler::target_address_at(call_target_address, unoptimized_code)); |
3661 return ON_STACK_REPLACEMENT; | 3661 return ON_STACK_REPLACEMENT; |
3662 } | 3662 } |
3663 | 3663 |
3664 } // namespace internal | 3664 } // namespace internal |
3665 } // namespace v8 | 3665 } // namespace v8 |
3666 | 3666 |
3667 #endif // V8_TARGET_ARCH_X64 | 3667 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |