Index: src/ia32/interface-descriptors-ia32.cc |
diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc |
index 2c7c0ddabe0823a674e1694a734fb2db375b9d94..bb4cb2bb4a46d64c0cab2dfd270428922a7ef5cb 100644 |
--- a/src/ia32/interface-descriptors-ia32.cc |
+++ b/src/ia32/interface-descriptors-ia32.cc |
@@ -370,6 +370,21 @@ void ApiAccessorDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
}; |
data->Initialize(arraysize(registers), registers, representations); |
} |
+ |
+ |
+void MathRoundVariantDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
+ Register registers[] = { |
+ esi, // context |
+ edi, // math rounding function |
+ edx, // vector slot id |
+ }; |
+ Representation representations[] = { |
+ Representation::Tagged(), // |
+ Representation::Tagged(), // |
+ Representation::Tagged(), // |
+ }; |
+ data->Initialize(arraysize(registers), registers, representations); |
+} |
} |
} // namespace v8::internal |