Index: src/ppc/interface-descriptors-ppc.cc |
diff --git a/src/ppc/interface-descriptors-ppc.cc b/src/ppc/interface-descriptors-ppc.cc |
index f42da49202a988cbca7f372a7ee678b5412a5597..2bfea40caae13bfe21ee73754faa045a6c0bc2a8 100644 |
--- a/src/ppc/interface-descriptors-ppc.cc |
+++ b/src/ppc/interface-descriptors-ppc.cc |
@@ -369,6 +369,21 @@ void ApiAccessorDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
}; |
data->Initialize(arraysize(registers), registers, representations); |
} |
+ |
+ |
+void MathRoundVariantDescriptor::Initialize(CallInterfaceDescriptorData* data) { |
+ Register registers[] = { |
+ cp, // context |
+ r4, // math rounding function |
+ r6, // vector slot id |
+ }; |
+ Representation representations[] = { |
+ Representation::Tagged(), // |
+ Representation::Tagged(), // |
+ Representation::Tagged(), // |
+ }; |
+ data->Initialize(arraysize(registers), registers, representations); |
+} |
} |
} // namespace v8::internal |