| Index: src/mips64/interface-descriptors-mips64.cc
|
| diff --git a/src/mips64/interface-descriptors-mips64.cc b/src/mips64/interface-descriptors-mips64.cc
|
| index d7f0fe5317766ef4f1bc00128ba494168461c618..8d1b9f29e0e075f8b2d2d4afe8ed528855e3b6b8 100644
|
| --- a/src/mips64/interface-descriptors-mips64.cc
|
| +++ b/src/mips64/interface-descriptors-mips64.cc
|
| @@ -98,7 +98,19 @@ void FastCloneShallowObjectDescriptor::Initialize(
|
| void CreateAllocationSiteDescriptor::Initialize(
|
| CallInterfaceDescriptorData* data) {
|
| Register registers[] = {cp, a2, a3};
|
| - data->Initialize(arraysize(registers), registers, NULL);
|
| + Representation representations[] = {Representation::Tagged(),
|
| + Representation::Tagged(),
|
| + Representation::Smi()};
|
| + data->Initialize(arraysize(registers), registers, representations);
|
| +}
|
| +
|
| +
|
| +void CreateWeakCellDescriptor::Initialize(CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {cp, a2, a3, a1};
|
| + Representation representations[] = {
|
| + Representation::Tagged(), Representation::Tagged(), Representation::Smi(),
|
| + Representation::Tagged()};
|
| + data->Initialize(arraysize(registers), registers, representations);
|
| }
|
|
|
|
|
|
|