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_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
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/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 if (constant_stack_parameter_count == 0) { | 46 if (constant_stack_parameter_count == 0) { |
47 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, | 47 descriptor->Initialize(deopt_handler, constant_stack_parameter_count, |
48 JS_FUNCTION_STUB_MODE); | 48 JS_FUNCTION_STUB_MODE); |
49 } else { | 49 } else { |
50 descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count, | 50 descriptor->Initialize(a0, deopt_handler, constant_stack_parameter_count, |
51 JS_FUNCTION_STUB_MODE); | 51 JS_FUNCTION_STUB_MODE); |
52 } | 52 } |
53 } | 53 } |
54 | 54 |
55 | 55 |
56 void ArrayNoArgumentConstructorStub::InitializeDescriptor( | |
57 CodeStubDescriptor* descriptor) { | |
58 InitializeArrayConstructorDescriptor(isolate(), descriptor, 0); | |
59 } | |
60 | |
61 | |
62 void ArraySingleArgumentConstructorStub::InitializeDescriptor( | 56 void ArraySingleArgumentConstructorStub::InitializeDescriptor( |
63 CodeStubDescriptor* descriptor) { | 57 CodeStubDescriptor* descriptor) { |
64 InitializeArrayConstructorDescriptor(isolate(), descriptor, 1); | 58 InitializeArrayConstructorDescriptor(isolate(), descriptor, 1); |
65 } | 59 } |
66 | 60 |
67 | 61 |
68 void ArrayNArgumentsConstructorStub::InitializeDescriptor( | 62 void ArrayNArgumentsConstructorStub::InitializeDescriptor( |
69 CodeStubDescriptor* descriptor) { | 63 CodeStubDescriptor* descriptor) { |
70 InitializeArrayConstructorDescriptor(isolate(), descriptor, -1); | 64 InitializeArrayConstructorDescriptor(isolate(), descriptor, -1); |
71 } | 65 } |
(...skipping 5719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5791 kStackUnwindSpace, kInvalidStackOffset, | 5785 kStackUnwindSpace, kInvalidStackOffset, |
5792 return_value_operand, NULL); | 5786 return_value_operand, NULL); |
5793 } | 5787 } |
5794 | 5788 |
5795 #undef __ | 5789 #undef __ |
5796 | 5790 |
5797 } // namespace internal | 5791 } // namespace internal |
5798 } // namespace v8 | 5792 } // namespace v8 |
5799 | 5793 |
5800 #endif // V8_TARGET_ARCH_MIPS64 | 5794 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |