Index: src/x87/interface-descriptors-x87.cc |
diff --git a/src/x87/interface-descriptors-x87.cc b/src/x87/interface-descriptors-x87.cc |
index 45a12794408abaa2514fbfa848820e7d2a7f5554..c9ef8d1183a0db2bda977d249918e6a6dd8104cd 100644 |
--- a/src/x87/interface-descriptors-x87.cc |
+++ b/src/x87/interface-descriptors-x87.cc |
@@ -101,7 +101,19 @@ void FastCloneShallowObjectDescriptor::Initialize( |
void CreateAllocationSiteDescriptor::Initialize( |
CallInterfaceDescriptorData* data) { |
Register registers[] = {esi, ebx, edx}; |
- 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[] = {esi, ebx, edx, edi}; |
+ Representation representations[] = { |
+ Representation::Tagged(), Representation::Tagged(), Representation::Smi(), |
+ Representation::Tagged()}; |
+ data->Initialize(arraysize(registers), registers, representations); |
} |