| 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_ARM | 5 #if V8_TARGET_ARCH_ARM |
| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 __ Push(info->scope()->GetScopeInfo(info->isolate())); | 177 __ Push(info->scope()->GetScopeInfo(info->isolate())); |
| 178 __ CallRuntime(Runtime::kNewScriptContext); | 178 __ CallRuntime(Runtime::kNewScriptContext); |
| 179 PrepareForBailoutForId(BailoutId::ScriptContext(), | 179 PrepareForBailoutForId(BailoutId::ScriptContext(), |
| 180 BailoutState::TOS_REGISTER); | 180 BailoutState::TOS_REGISTER); |
| 181 // The new target value is not used, clobbering is safe. | 181 // The new target value is not used, clobbering is safe. |
| 182 DCHECK_NULL(info->scope()->new_target_var()); | 182 DCHECK_NULL(info->scope()->new_target_var()); |
| 183 } else { | 183 } else { |
| 184 if (info->scope()->new_target_var() != nullptr) { | 184 if (info->scope()->new_target_var() != nullptr) { |
| 185 __ push(r3); // Preserve new target. | 185 __ push(r3); // Preserve new target. |
| 186 } | 186 } |
| 187 if (slots <= FastNewContextStub::kMaximumSlots) { | 187 if (slots <= FastNewFunctionContextStub::kMaximumSlots) { |
| 188 FastNewContextStub stub(isolate(), slots); | 188 FastNewFunctionContextStub stub(isolate(), slots); |
| 189 __ CallStub(&stub); | 189 __ CallStub(&stub); |
| 190 // Result of FastNewContextStub is always in new space. | 190 // Result of FastNewFunctionContextStub is always in new space. |
| 191 need_write_barrier = false; | 191 need_write_barrier = false; |
| 192 } else { | 192 } else { |
| 193 __ push(r1); | 193 __ push(r1); |
| 194 __ CallRuntime(Runtime::kNewFunctionContext); | 194 __ CallRuntime(Runtime::kNewFunctionContext); |
| 195 } | 195 } |
| 196 if (info->scope()->new_target_var() != nullptr) { | 196 if (info->scope()->new_target_var() != nullptr) { |
| 197 __ pop(r3); // Preserve new target. | 197 __ pop(r3); // Preserve new target. |
| 198 } | 198 } |
| 199 } | 199 } |
| 200 function_in_register_r1 = false; | 200 function_in_register_r1 = false; |
| (...skipping 3638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3839 DCHECK(interrupt_address == | 3839 DCHECK(interrupt_address == |
| 3840 isolate->builtins()->OnStackReplacement()->entry()); | 3840 isolate->builtins()->OnStackReplacement()->entry()); |
| 3841 return ON_STACK_REPLACEMENT; | 3841 return ON_STACK_REPLACEMENT; |
| 3842 } | 3842 } |
| 3843 | 3843 |
| 3844 | 3844 |
| 3845 } // namespace internal | 3845 } // namespace internal |
| 3846 } // namespace v8 | 3846 } // namespace v8 |
| 3847 | 3847 |
| 3848 #endif // V8_TARGET_ARCH_ARM | 3848 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |