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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
8 | 8 |
9 #include "src/interface-descriptors.h" | 9 #include "src/interface-descriptors.h" |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 const Register MathPowTaggedDescriptor::exponent() { return rdx; } | 51 const Register MathPowTaggedDescriptor::exponent() { return rdx; } |
52 | 52 |
53 | 53 |
54 const Register MathPowIntegerDescriptor::exponent() { | 54 const Register MathPowIntegerDescriptor::exponent() { |
55 return MathPowTaggedDescriptor::exponent(); | 55 return MathPowTaggedDescriptor::exponent(); |
56 } | 56 } |
57 | 57 |
58 | 58 |
59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return rax; } | 59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return rax; } |
60 const Register GrowArrayElementsDescriptor::KeyRegister() { return rbx; } | 60 const Register GrowArrayElementsDescriptor::KeyRegister() { return rbx; } |
61 const Register GrowArrayElementsDescriptor::CapacityRegister() { return rcx; } | |
62 | 61 |
63 | 62 |
64 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 63 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
65 Register registers[] = {rsi, rbx}; | 64 Register registers[] = {rsi, rbx}; |
66 data->Initialize(arraysize(registers), registers, NULL); | 65 data->Initialize(arraysize(registers), registers, NULL); |
67 } | 66 } |
68 | 67 |
69 | 68 |
70 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 69 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
71 Register registers[] = {rsi, rdi}; | 70 Register registers[] = {rsi, rdi}; |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 Representation::Tagged(), // call_data | 361 Representation::Tagged(), // call_data |
363 Representation::Tagged(), // holder | 362 Representation::Tagged(), // holder |
364 Representation::External(), // api_function_address | 363 Representation::External(), // api_function_address |
365 }; | 364 }; |
366 data->Initialize(arraysize(registers), registers, representations); | 365 data->Initialize(arraysize(registers), registers, representations); |
367 } | 366 } |
368 } | 367 } |
369 } // namespace v8::internal | 368 } // namespace v8::internal |
370 | 369 |
371 #endif // V8_TARGET_ARCH_X64 | 370 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |