OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_X64 | 5 #if V8_TARGET_ARCH_X64 |
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(rax, deopt_handler, constant_stack_parameter_count, | 50 descriptor->Initialize(rax, 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 5509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5581 kStackUnwindSpace, nullptr, return_value_operand, | 5575 kStackUnwindSpace, nullptr, return_value_operand, |
5582 NULL); | 5576 NULL); |
5583 } | 5577 } |
5584 | 5578 |
5585 #undef __ | 5579 #undef __ |
5586 | 5580 |
5587 } // namespace internal | 5581 } // namespace internal |
5588 } // namespace v8 | 5582 } // namespace v8 |
5589 | 5583 |
5590 #endif // V8_TARGET_ARCH_X64 | 5584 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |