| Index: src/arm64/interface-descriptors-arm64.cc
|
| diff --git a/src/arm64/interface-descriptors-arm64.cc b/src/arm64/interface-descriptors-arm64.cc
|
| index 7dff69c85a07c6e34af8c2f8b258738655c33310..59ea5d422d61686cbe187ccd896b442d6f78eff2 100644
|
| --- a/src/arm64/interface-descriptors-arm64.cc
|
| +++ b/src/arm64/interface-descriptors-arm64.cc
|
| @@ -438,6 +438,21 @@ void ApiAccessorDescriptor::Initialize(CallInterfaceDescriptorData* data) {
|
| data->Initialize(arraysize(registers), registers, representations,
|
| &default_descriptor);
|
| }
|
| +
|
| +
|
| +void MathRoundVariantDescriptor::Initialize(CallInterfaceDescriptorData* data) {
|
| + Register registers[] = {
|
| + x1, // context
|
| + x2, // math rounding function
|
| + x3, // vector slot id
|
| + };
|
| + Representation representations[] = {
|
| + Representation::Tagged(), //
|
| + Representation::Tagged(), //
|
| + Representation::Tagged(), //
|
| + };
|
| + data->Initialize(arraysize(registers), registers, representations);
|
| +}
|
| }
|
| } // namespace v8::internal
|
|
|
|
|