| 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 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
| 8 #include "src/api-arguments.h" | 8 #include "src/api-arguments.h" |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 if (constant_stack_parameter_count == 0) { | 47 if (constant_stack_parameter_count == 0) { |
| 48 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, | 48 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, |
| 49 JS_FUNCTION_STUB_MODE); | 49 JS_FUNCTION_STUB_MODE); |
| 50 } else { | 50 } else { |
| 51 descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count, | 51 descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count, |
| 52 JS_FUNCTION_STUB_MODE); | 52 JS_FUNCTION_STUB_MODE); |
| 53 } | 53 } |
| 54 } | 54 } |
| 55 | 55 |
| 56 | 56 |
| 57 void ArraySingleArgumentConstructorStub::InitializeDescriptor( | |
| 58 CodeStubDescriptor* descriptor) { | |
| 59 InitializeArrayConstructorDescriptor(isolate(), descriptor, 1); | |
| 60 } | |
| 61 | |
| 62 | |
| 63 void ArrayNArgumentsConstructorStub::InitializeDescriptor( | 57 void ArrayNArgumentsConstructorStub::InitializeDescriptor( |
| 64 CodeStubDescriptor* descriptor) { | 58 CodeStubDescriptor* descriptor) { |
| 65 InitializeArrayConstructorDescriptor(isolate(), descriptor, -1); | 59 InitializeArrayConstructorDescriptor(isolate(), descriptor, -1); |
| 66 } | 60 } |
| 67 | 61 |
| 68 | 62 |
| 69 void FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { | 63 void FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { |
| 70 Address deopt_handler = Runtime::FunctionForId(Runtime::kArrayPush)->entry; | 64 Address deopt_handler = Runtime::FunctionForId(Runtime::kArrayPush)->entry; |
| 71 descriptor->Initialize(a0, deopt_handler, -1, JS_FUNCTION_STUB_MODE); | 65 descriptor->Initialize(a0, deopt_handler, -1, JS_FUNCTION_STUB_MODE); |
| 72 } | 66 } |
| 73 | 67 |
| 74 void InternalArraySingleArgumentConstructorStub::InitializeDescriptor( | |
| 75 CodeStubDescriptor* descriptor) { | |
| 76 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, 1); | |
| 77 } | |
| 78 | |
| 79 | |
| 80 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor( | 68 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor( |
| 81 CodeStubDescriptor* descriptor) { | 69 CodeStubDescriptor* descriptor) { |
| 82 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1); | 70 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1); |
| 83 } | 71 } |
| 84 | 72 |
| 85 | 73 |
| 86 #define __ ACCESS_MASM(masm) | 74 #define __ ACCESS_MASM(masm) |
| 87 | 75 |
| 88 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, | 76 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, |
| 89 Condition cc); | 77 Condition cc); |
| (...skipping 5536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5626 kStackUnwindSpace, kInvalidStackOffset, | 5614 kStackUnwindSpace, kInvalidStackOffset, |
| 5627 return_value_operand, NULL); | 5615 return_value_operand, NULL); |
| 5628 } | 5616 } |
| 5629 | 5617 |
| 5630 #undef __ | 5618 #undef __ |
| 5631 | 5619 |
| 5632 } // namespace internal | 5620 } // namespace internal |
| 5633 } // namespace v8 | 5621 } // namespace v8 |
| 5634 | 5622 |
| 5635 #endif // V8_TARGET_ARCH_MIPS | 5623 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |