| 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 #include "src/crankshaft/arm/lithium-codegen-arm.h" | 5 #include "src/crankshaft/arm/lithium-codegen-arm.h" |
| 6 | 6 |
| 7 #include "src/base/bits.h" | 7 #include "src/base/bits.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/crankshaft/arm/lithium-gap-resolver-arm.h" | 10 #include "src/crankshaft/arm/lithium-gap-resolver-arm.h" |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 Comment(";;; Allocate local context"); | 159 Comment(";;; Allocate local context"); |
| 160 bool need_write_barrier = true; | 160 bool need_write_barrier = true; |
| 161 // Argument to NewContext is the function, which is in r1. | 161 // Argument to NewContext is the function, which is in r1. |
| 162 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; | 162 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; |
| 163 Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt; | 163 Safepoint::DeoptMode deopt_mode = Safepoint::kNoLazyDeopt; |
| 164 if (info()->scope()->is_script_scope()) { | 164 if (info()->scope()->is_script_scope()) { |
| 165 __ push(r1); | 165 __ push(r1); |
| 166 __ Push(info()->scope()->GetScopeInfo(info()->isolate())); | 166 __ Push(info()->scope()->GetScopeInfo(info()->isolate())); |
| 167 __ CallRuntime(Runtime::kNewScriptContext); | 167 __ CallRuntime(Runtime::kNewScriptContext); |
| 168 deopt_mode = Safepoint::kLazyDeopt; | 168 deopt_mode = Safepoint::kLazyDeopt; |
| 169 } else if (slots <= FastNewContextStub::kMaximumSlots) { | 169 } else if (slots <= FastNewFunctionContextStub::kMaximumSlots) { |
| 170 FastNewContextStub stub(isolate(), slots); | 170 FastNewFunctionContextStub stub(isolate(), slots); |
| 171 __ CallStub(&stub); | 171 __ CallStub(&stub); |
| 172 // Result of FastNewContextStub is always in new space. | 172 // Result of FastNewFunctionContextStub is always in new space. |
| 173 need_write_barrier = false; | 173 need_write_barrier = false; |
| 174 } else { | 174 } else { |
| 175 __ push(r1); | 175 __ push(r1); |
| 176 __ CallRuntime(Runtime::kNewFunctionContext); | 176 __ CallRuntime(Runtime::kNewFunctionContext); |
| 177 } | 177 } |
| 178 RecordSafepoint(deopt_mode); | 178 RecordSafepoint(deopt_mode); |
| 179 | 179 |
| 180 // Context is returned in both r0 and cp. It replaces the context | 180 // Context is returned in both r0 and cp. It replaces the context |
| 181 // passed to us. It's saved in the stack and kept live in cp. | 181 // passed to us. It's saved in the stack and kept live in cp. |
| 182 __ mov(cp, r0); | 182 __ mov(cp, r0); |
| (...skipping 5349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5532 __ ldr(result, FieldMemOperand(scratch, | 5532 __ ldr(result, FieldMemOperand(scratch, |
| 5533 FixedArray::kHeaderSize - kPointerSize)); | 5533 FixedArray::kHeaderSize - kPointerSize)); |
| 5534 __ bind(deferred->exit()); | 5534 __ bind(deferred->exit()); |
| 5535 __ bind(&done); | 5535 __ bind(&done); |
| 5536 } | 5536 } |
| 5537 | 5537 |
| 5538 #undef __ | 5538 #undef __ |
| 5539 | 5539 |
| 5540 } // namespace internal | 5540 } // namespace internal |
| 5541 } // namespace v8 | 5541 } // namespace v8 |
| OLD | NEW |