| Index: src/mips/interface-descriptors-mips.cc
|
| diff --git a/src/mips/interface-descriptors-mips.cc b/src/mips/interface-descriptors-mips.cc
|
| index fdb43f325cab342877aefd6e4de6ac3653a5de0c..c7ee0f7418e98684d9e6fb41a7664a2692aed4b2 100644
|
| --- a/src/mips/interface-descriptors-mips.cc
|
| +++ b/src/mips/interface-descriptors-mips.cc
|
| @@ -435,6 +435,18 @@ void InterpreterPushArgsAndCallDescriptor::InitializePlatformSpecific(
|
| data->InitializePlatformSpecific(arraysize(registers), registers);
|
| }
|
|
|
| +void InterpreterPushArgsAndCallICDescriptor::InitializePlatformSpecific(
|
| + CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {
|
| + a0, // argument count (not including receiver)
|
| + t0, // address of first argument
|
| + a1, // the target callable to be call
|
| + a3, // feedback vector slot id
|
| + a2 // type feedback vector
|
| + };
|
| + data->InitializePlatformSpecific(arraysize(registers), registers);
|
| +}
|
| +
|
| void InterpreterPushArgsAndConstructDescriptor::InitializePlatformSpecific(
|
| CallInterfaceDescriptorData* data) {
|
| Register registers[] = {
|
|
|