| Index: src/ia32/interface-descriptors-ia32.cc
|
| diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
|
| index 50c6a13200cc1dbcf8945ae4a64fbc7c03926ae2..22d85d8cc3dc86bbf75e5b32edcc4e027237a530 100644
|
| --- a/src/ia32/interface-descriptors-ia32.cc
|
| +++ b/src/ia32/interface-descriptors-ia32.cc
|
| @@ -400,27 +400,16 @@
|
| }
|
|
|
|
|
| -void InterpreterPushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| - CallInterfaceDescriptorData* data) {
|
| - Register registers[] = {
|
| - eax, // argument count (not including receiver)
|
| +void PushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {
|
| + eax, // argument count (including receiver)
|
| ebx, // address of first argument
|
| edi // the target callable to be call
|
| };
|
| data->InitializePlatformSpecific(arraysize(registers), registers);
|
| }
|
|
|
| -
|
| -void InterpreterCEntryDescriptor::InitializePlatformSpecific(
|
| - CallInterfaceDescriptorData* data) {
|
| - Register registers[] = {
|
| - eax, // argument count (argc)
|
| - ecx, // address of first argument (argv)
|
| - ebx // the runtime function to call
|
| - };
|
| - data->InitializePlatformSpecific(arraysize(registers), registers);
|
| -}
|
| -
|
| } // namespace internal
|
| } // namespace v8
|
|
|
|
|