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 ArraySingleArgumentConstructorStub::InitializeDescriptor( | |
57 CodeStubDescriptor* descriptor) { | |
58 InitializeArrayConstructorDescriptor(isolate(), descriptor, 1); | |
59 } | |
60 | |
61 | |
62 void ArrayNArgumentsConstructorStub::InitializeDescriptor( | 56 void ArrayNArgumentsConstructorStub::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 FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { | 62 void FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { |
69 Address deopt_handler = Runtime::FunctionForId(Runtime::kArrayPush)->entry; | 63 Address deopt_handler = Runtime::FunctionForId(Runtime::kArrayPush)->entry; |
70 descriptor->Initialize(a0, deopt_handler, -1, JS_FUNCTION_STUB_MODE); | 64 descriptor->Initialize(a0, deopt_handler, -1, JS_FUNCTION_STUB_MODE); |
71 } | 65 } |
72 | 66 |
73 void InternalArraySingleArgumentConstructorStub::InitializeDescriptor( | |
74 CodeStubDescriptor* descriptor) { | |
75 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, 1); | |
76 } | |
77 | |
78 | |
79 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor( | 67 void InternalArrayNArgumentsConstructorStub::InitializeDescriptor( |
80 CodeStubDescriptor* descriptor) { | 68 CodeStubDescriptor* descriptor) { |
81 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1); | 69 InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1); |
82 } | 70 } |
83 | 71 |
84 | 72 |
85 #define __ ACCESS_MASM(masm) | 73 #define __ ACCESS_MASM(masm) |
86 | 74 |
87 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, | 75 static void EmitIdenticalObjectComparison(MacroAssembler* masm, Label* slow, |
88 Condition cc); | 76 Condition cc); |
(...skipping 5569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5658 kStackUnwindSpace, kInvalidStackOffset, | 5646 kStackUnwindSpace, kInvalidStackOffset, |
5659 return_value_operand, NULL); | 5647 return_value_operand, NULL); |
5660 } | 5648 } |
5661 | 5649 |
5662 #undef __ | 5650 #undef __ |
5663 | 5651 |
5664 } // namespace internal | 5652 } // namespace internal |
5665 } // namespace v8 | 5653 } // namespace v8 |
5666 | 5654 |
5667 #endif // V8_TARGET_ARCH_MIPS64 | 5655 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |