| 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_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
| 6 | 6 |
| 7 // Note on Mips implementation: | 7 // Note on Mips implementation: |
| 8 // | 8 // |
| 9 // The result_register() for mips is the 'v0' register, which is defined | 9 // The result_register() for mips is the 'v0' register, which is defined |
| 10 // by the ABI to contain function return values. However, the first | 10 // by the ABI to contain function return values. However, the first |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 a0, TypeFeedbackVector::kInvocationCountIndex * kPointerSize + | 146 a0, TypeFeedbackVector::kInvocationCountIndex * kPointerSize + |
| 147 TypeFeedbackVector::kHeaderSize)); | 147 TypeFeedbackVector::kHeaderSize)); |
| 148 __ Addu(t0, t0, Operand(Smi::FromInt(1))); | 148 __ Addu(t0, t0, Operand(Smi::FromInt(1))); |
| 149 __ sw(t0, FieldMemOperand( | 149 __ sw(t0, FieldMemOperand( |
| 150 a0, TypeFeedbackVector::kInvocationCountIndex * kPointerSize + | 150 a0, TypeFeedbackVector::kInvocationCountIndex * kPointerSize + |
| 151 TypeFeedbackVector::kHeaderSize)); | 151 TypeFeedbackVector::kHeaderSize)); |
| 152 } | 152 } |
| 153 | 153 |
| 154 { Comment cmnt(masm_, "[ Allocate locals"); | 154 { Comment cmnt(masm_, "[ Allocate locals"); |
| 155 int locals_count = info->scope()->num_stack_slots(); | 155 int locals_count = info->scope()->num_stack_slots(); |
| 156 // Generators allocate locals, if any, in context slots. | |
| 157 DCHECK(!IsGeneratorFunction(info->literal()->kind()) || locals_count == 0); | |
| 158 OperandStackDepthIncrement(locals_count); | 156 OperandStackDepthIncrement(locals_count); |
| 159 if (locals_count > 0) { | 157 if (locals_count > 0) { |
| 160 if (locals_count >= 128) { | 158 if (locals_count >= 128) { |
| 161 Label ok; | 159 Label ok; |
| 162 __ Subu(t5, sp, Operand(locals_count * kPointerSize)); | 160 __ Subu(t5, sp, Operand(locals_count * kPointerSize)); |
| 163 __ LoadRoot(a2, Heap::kRealStackLimitRootIndex); | 161 __ LoadRoot(a2, Heap::kRealStackLimitRootIndex); |
| 164 __ Branch(&ok, hs, t5, Operand(a2)); | 162 __ Branch(&ok, hs, t5, Operand(a2)); |
| 165 __ CallRuntime(Runtime::kThrowStackOverflow); | 163 __ CallRuntime(Runtime::kThrowStackOverflow); |
| 166 __ bind(&ok); | 164 __ bind(&ok); |
| 167 } | 165 } |
| (...skipping 3428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3596 reinterpret_cast<uint32_t>( | 3594 reinterpret_cast<uint32_t>( |
| 3597 isolate->builtins()->OnStackReplacement()->entry())); | 3595 isolate->builtins()->OnStackReplacement()->entry())); |
| 3598 return ON_STACK_REPLACEMENT; | 3596 return ON_STACK_REPLACEMENT; |
| 3599 } | 3597 } |
| 3600 | 3598 |
| 3601 | 3599 |
| 3602 } // namespace internal | 3600 } // namespace internal |
| 3603 } // namespace v8 | 3601 } // namespace v8 |
| 3604 | 3602 |
| 3605 #endif // V8_TARGET_ARCH_MIPS | 3603 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |