| 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_IA32 | 5 #if V8_TARGET_ARCH_IA32 |
| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 154 |
| 155 void CallFunctionWithFeedbackDescriptor::InitializePlatformSpecific( | 155 void CallFunctionWithFeedbackDescriptor::InitializePlatformSpecific( |
| 156 CallInterfaceDescriptorData* data) { | 156 CallInterfaceDescriptorData* data) { |
| 157 Register registers[] = {edi, edx}; | 157 Register registers[] = {edi, edx}; |
| 158 data->InitializePlatformSpecific(arraysize(registers), registers); | 158 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 159 } | 159 } |
| 160 | 160 |
| 161 | 161 |
| 162 void CallFunctionWithFeedbackAndVectorDescriptor::InitializePlatformSpecific( | 162 void CallFunctionWithFeedbackAndVectorDescriptor::InitializePlatformSpecific( |
| 163 CallInterfaceDescriptorData* data) { | 163 CallInterfaceDescriptorData* data) { |
| 164 Register registers[] = {edi, edx, ebx}; | 164 Register registers[] = {edi, eax, edx, ebx}; |
| 165 data->InitializePlatformSpecific(arraysize(registers), registers); | 165 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 166 } | 166 } |
| 167 | 167 |
| 168 | 168 |
| 169 void CallConstructDescriptor::InitializePlatformSpecific( | 169 void CallConstructDescriptor::InitializePlatformSpecific( |
| 170 CallInterfaceDescriptorData* data) { | 170 CallInterfaceDescriptorData* data) { |
| 171 // eax : number of arguments | 171 // eax : number of arguments |
| 172 // ebx : feedback vector | 172 // ebx : feedback vector |
| 173 // ecx : new target (for IsSuperConstructorCall) | 173 // ecx : new target (for IsSuperConstructorCall) |
| 174 // edx : slot in feedback vector (Smi, for RecordCallTarget) | 174 // edx : slot in feedback vector (Smi, for RecordCallTarget) |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 ebx, // the JSGeneratorObject to resume | 426 ebx, // the JSGeneratorObject to resume |
| 427 edx // the resume mode (tagged) | 427 edx // the resume mode (tagged) |
| 428 }; | 428 }; |
| 429 data->InitializePlatformSpecific(arraysize(registers), registers); | 429 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 430 } | 430 } |
| 431 | 431 |
| 432 } // namespace internal | 432 } // namespace internal |
| 433 } // namespace v8 | 433 } // namespace v8 |
| 434 | 434 |
| 435 #endif // V8_TARGET_ARCH_IA32 | 435 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |