| 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 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(rax, deopt_handler, -1, JS_FUNCTION_STUB_MODE); | 64 descriptor->Initialize(rax, 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 | 75 |
| 88 void HydrogenCodeStub::GenerateLightweightMiss(MacroAssembler* masm, | 76 void HydrogenCodeStub::GenerateLightweightMiss(MacroAssembler* masm, |
| (...skipping 5362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5451 kStackUnwindSpace, nullptr, return_value_operand, | 5439 kStackUnwindSpace, nullptr, return_value_operand, |
| 5452 NULL); | 5440 NULL); |
| 5453 } | 5441 } |
| 5454 | 5442 |
| 5455 #undef __ | 5443 #undef __ |
| 5456 | 5444 |
| 5457 } // namespace internal | 5445 } // namespace internal |
| 5458 } // namespace v8 | 5446 } // namespace v8 |
| 5459 | 5447 |
| 5460 #endif // V8_TARGET_ARCH_X64 | 5448 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |