| 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_X64 | 5 #if V8_TARGET_ARCH_X64 |
| 6 | 6 |
| 7 #include "src/interface-descriptors.h" | 7 #include "src/interface-descriptors.h" |
| 8 | 8 |
| 9 namespace v8 { | 9 namespace v8 { |
| 10 namespace internal { | 10 namespace internal { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 void ToNumberDescriptor::InitializePlatformSpecific( | 101 void ToNumberDescriptor::InitializePlatformSpecific( |
| 102 CallInterfaceDescriptorData* data) { | 102 CallInterfaceDescriptorData* data) { |
| 103 // ToNumberStub invokes a function, and therefore needs a context. | 103 // ToNumberStub invokes a function, and therefore needs a context. |
| 104 Register registers[] = {rax}; | 104 Register registers[] = {rax}; |
| 105 data->InitializePlatformSpecific(arraysize(registers), registers); | 105 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 106 } | 106 } |
| 107 | 107 |
| 108 | 108 |
| 109 // static | 109 // static |
| 110 const Register ToStringDescriptor::ReceiverRegister() { return rax; } |
| 111 |
| 112 |
| 113 // static |
| 110 const Register ToObjectDescriptor::ReceiverRegister() { return rax; } | 114 const Register ToObjectDescriptor::ReceiverRegister() { return rax; } |
| 111 | 115 |
| 112 | 116 |
| 113 void NumberToStringDescriptor::InitializePlatformSpecific( | 117 void NumberToStringDescriptor::InitializePlatformSpecific( |
| 114 CallInterfaceDescriptorData* data) { | 118 CallInterfaceDescriptorData* data) { |
| 115 Register registers[] = {rax}; | 119 Register registers[] = {rax}; |
| 116 data->InitializePlatformSpecific(arraysize(registers), registers); | 120 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 117 } | 121 } |
| 118 | 122 |
| 119 | 123 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 rdi, // math rounding function | 369 rdi, // math rounding function |
| 366 rdx, // vector slot id | 370 rdx, // vector slot id |
| 367 rbx // type vector | 371 rbx // type vector |
| 368 }; | 372 }; |
| 369 data->InitializePlatformSpecific(arraysize(registers), registers); | 373 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 370 } | 374 } |
| 371 } // namespace internal | 375 } // namespace internal |
| 372 } // namespace v8 | 376 } // namespace v8 |
| 373 | 377 |
| 374 #endif // V8_TARGET_ARCH_X64 | 378 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |