| Index: src/ia32/interface-descriptors-ia32.cc
|
| diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
|
| index a2dedc2dc4836451477ad1866351168505177c35..ab21e89864d5450700324ad572a962b4fdf51994 100644
|
| --- a/src/ia32/interface-descriptors-ia32.cc
|
| +++ b/src/ia32/interface-descriptors-ia32.cc
|
| @@ -433,6 +433,18 @@ void InterpreterPushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| data->InitializePlatformSpecific(arraysize(registers), registers);
|
| }
|
|
|
| +void InterpreterPushArgsAndCallICDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {
|
| + eax, // argument count (not including receiver)
|
| + ebx, // address of first argument
|
| + edi, // the target callable to be call
|
| + edx, // feedback vector slot id
|
| + ecx // type feedback vector
|
| + };
|
| + data->InitializePlatformSpecific(arraysize(registers), registers);
|
| +}
|
| +
|
| void InterpreterPushArgsAndConstructDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
| Register registers[] = {
|
|
|