| Index: src/compiler/mips64/code-generator-mips64.cc
|
| diff --git a/src/compiler/mips64/code-generator-mips64.cc b/src/compiler/mips64/code-generator-mips64.cc
|
| index 10950e26e4a66066b07cb7c7f50def9df2089e0d..6be13daba74b5e738e189ade36b87dc2295a8847 100644
|
| --- a/src/compiler/mips64/code-generator-mips64.cc
|
| +++ b/src/compiler/mips64/code-generator-mips64.cc
|
| @@ -756,9 +756,15 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kIeee754Float64Atan2:
|
| ASSEMBLE_IEEE754_BINOP(atan2);
|
| break;
|
| + case kIeee754Float64Atanh:
|
| + ASSEMBLE_IEEE754_UNOP(atanh);
|
| + break;
|
| case kIeee754Float64Exp:
|
| ASSEMBLE_IEEE754_UNOP(exp);
|
| break;
|
| + case kIeee754Float64Expm1:
|
| + ASSEMBLE_IEEE754_UNOP(expm1);
|
| + break;
|
| case kIeee754Float64Log:
|
| ASSEMBLE_IEEE754_UNOP(log);
|
| break;
|
| @@ -771,6 +777,9 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
|
| case kIeee754Float64Log10:
|
| ASSEMBLE_IEEE754_UNOP(log10);
|
| break;
|
| + case kIeee754Float64Cbrt:
|
| + ASSEMBLE_IEEE754_UNOP(cbrt);
|
| + break;
|
| case kMips64Add:
|
| __ Addu(i.OutputRegister(), i.InputRegister(0), i.InputOperand(1));
|
| break;
|
|
|