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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 void FastCloneShallowObjectDescriptor::Initialize( | 94 void FastCloneShallowObjectDescriptor::Initialize( |
95 CallInterfaceDescriptorData* data) { | 95 CallInterfaceDescriptorData* data) { |
96 Register registers[] = {rsi, rax, rbx, rcx, rdx}; | 96 Register registers[] = {rsi, rax, rbx, rcx, rdx}; |
97 data->Initialize(arraysize(registers), registers, NULL); | 97 data->Initialize(arraysize(registers), registers, NULL); |
98 } | 98 } |
99 | 99 |
100 | 100 |
101 void CreateAllocationSiteDescriptor::Initialize( | 101 void CreateAllocationSiteDescriptor::Initialize( |
102 CallInterfaceDescriptorData* data) { | 102 CallInterfaceDescriptorData* data) { |
103 Register registers[] = {rsi, rbx, rdx}; | 103 Register registers[] = {rsi, rbx, rdx}; |
104 Representation representations[] = {Representation::Tagged(), | 104 data->Initialize(arraysize(registers), registers, NULL); |
105 Representation::Tagged(), | |
106 Representation::Smi()}; | |
107 data->Initialize(arraysize(registers), registers, representations); | |
108 } | 105 } |
109 | 106 |
110 | 107 |
111 void CreateWeakCellDescriptor::Initialize(CallInterfaceDescriptorData* data) { | |
112 Register registers[] = {rsi, rbx, rdx, rdi}; | |
113 Representation representations[] = { | |
114 Representation::Tagged(), Representation::Tagged(), Representation::Smi(), | |
115 Representation::Tagged()}; | |
116 data->Initialize(arraysize(registers), registers, representations); | |
117 } | |
118 | |
119 | |
120 void StoreArrayLiteralElementDescriptor::Initialize( | 108 void StoreArrayLiteralElementDescriptor::Initialize( |
121 CallInterfaceDescriptorData* data) { | 109 CallInterfaceDescriptorData* data) { |
122 Register registers[] = {rsi, rcx, rax}; | 110 Register registers[] = {rsi, rcx, rax}; |
123 data->Initialize(arraysize(registers), registers, NULL); | 111 data->Initialize(arraysize(registers), registers, NULL); |
124 } | 112 } |
125 | 113 |
126 | 114 |
127 void CallFunctionDescriptor::Initialize(CallInterfaceDescriptorData* data) { | 115 void CallFunctionDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
128 Register registers[] = {rsi, rdi}; | 116 Register registers[] = {rsi, rdi}; |
129 data->Initialize(arraysize(registers), registers, NULL); | 117 data->Initialize(arraysize(registers), registers, NULL); |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 Representation::Tagged(), // call_data | 339 Representation::Tagged(), // call_data |
352 Representation::Tagged(), // holder | 340 Representation::Tagged(), // holder |
353 Representation::External(), // api_function_address | 341 Representation::External(), // api_function_address |
354 }; | 342 }; |
355 data->Initialize(arraysize(registers), registers, representations); | 343 data->Initialize(arraysize(registers), registers, representations); |
356 } | 344 } |
357 } | 345 } |
358 } // namespace v8::internal | 346 } // namespace v8::internal |
359 | 347 |
360 #endif // V8_TARGET_ARCH_X64 | 348 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |