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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 CallInterfaceDescriptorData* data) { | 380 CallInterfaceDescriptorData* data) { |
381 Register registers[] = { | 381 Register registers[] = { |
382 edi, // JSFunction | 382 edi, // JSFunction |
383 edx, // the new target | 383 edx, // the new target |
384 eax, // actual number of arguments | 384 eax, // actual number of arguments |
385 ebx, // expected number of arguments | 385 ebx, // expected number of arguments |
386 }; | 386 }; |
387 data->InitializePlatformSpecific(arraysize(registers), registers); | 387 data->InitializePlatformSpecific(arraysize(registers), registers); |
388 } | 388 } |
389 | 389 |
390 void ApiCallbackDescriptorBase::InitializePlatformSpecific( | 390 |
| 391 void ApiFunctionDescriptor::InitializePlatformSpecific( |
| 392 CallInterfaceDescriptorData* data) { |
| 393 Register registers[] = { |
| 394 edi, // callee |
| 395 ebx, // call_data |
| 396 ecx, // holder |
| 397 edx, // api_function_address |
| 398 eax, // actual number of arguments |
| 399 }; |
| 400 data->InitializePlatformSpecific(arraysize(registers), registers); |
| 401 } |
| 402 |
| 403 |
| 404 void ApiAccessorDescriptor::InitializePlatformSpecific( |
391 CallInterfaceDescriptorData* data) { | 405 CallInterfaceDescriptorData* data) { |
392 Register registers[] = { | 406 Register registers[] = { |
393 edi, // callee | 407 edi, // callee |
394 ebx, // call_data | 408 ebx, // call_data |
395 ecx, // holder | 409 ecx, // holder |
396 edx, // api_function_address | 410 edx, // api_function_address |
397 }; | 411 }; |
398 data->InitializePlatformSpecific(arraysize(registers), registers); | 412 data->InitializePlatformSpecific(arraysize(registers), registers); |
399 } | 413 } |
400 | 414 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 ecx, // address of first argument (argv) | 448 ecx, // address of first argument (argv) |
435 ebx // the runtime function to call | 449 ebx // the runtime function to call |
436 }; | 450 }; |
437 data->InitializePlatformSpecific(arraysize(registers), registers); | 451 data->InitializePlatformSpecific(arraysize(registers), registers); |
438 } | 452 } |
439 | 453 |
440 } // namespace internal | 454 } // namespace internal |
441 } // namespace v8 | 455 } // namespace v8 |
442 | 456 |
443 #endif // V8_TARGET_ARCH_X87 | 457 #endif // V8_TARGET_ARCH_X87 |
OLD | NEW |