| 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_X87 | 5 #if V8_TARGET_ARCH_X87 |
| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 CallInterfaceDescriptorData* data) { | 348 CallInterfaceDescriptorData* data) { |
| 349 Register registers[] = { | 349 Register registers[] = { |
| 350 edi, // JSFunction | 350 edi, // JSFunction |
| 351 edx, // the new target | 351 edx, // the new target |
| 352 eax, // actual number of arguments | 352 eax, // actual number of arguments |
| 353 ebx, // expected number of arguments | 353 ebx, // expected number of arguments |
| 354 }; | 354 }; |
| 355 data->InitializePlatformSpecific(arraysize(registers), registers); | 355 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 356 } | 356 } |
| 357 | 357 |
| 358 void ApiCallbackDescriptorBase::InitializePlatformSpecific( | 358 void ApiCallbackDescriptor::InitializePlatformSpecific( |
| 359 CallInterfaceDescriptorData* data) { | 359 CallInterfaceDescriptorData* data) { |
| 360 Register registers[] = { | 360 Register registers[] = { |
| 361 edi, // callee | 361 edi, // callee |
| 362 ebx, // call_data | 362 ebx, // call_data |
| 363 ecx, // holder | 363 ecx, // holder |
| 364 edx, // api_function_address | 364 edx, // api_function_address |
| 365 }; | 365 }; |
| 366 data->InitializePlatformSpecific(arraysize(registers), registers); | 366 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 367 } | 367 } |
| 368 | 368 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ebx, // the JSGeneratorObject to resume | 424 ebx, // the JSGeneratorObject to resume |
| 425 edx // the resume mode (tagged) | 425 edx // the resume mode (tagged) |
| 426 }; | 426 }; |
| 427 data->InitializePlatformSpecific(arraysize(registers), registers); | 427 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 428 } | 428 } |
| 429 | 429 |
| 430 } // namespace internal | 430 } // namespace internal |
| 431 } // namespace v8 | 431 } // namespace v8 |
| 432 | 432 |
| 433 #endif // V8_TARGET_ARCH_X87 | 433 #endif // V8_TARGET_ARCH_X87 |
| OLD | NEW |