| 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 190001228c091c620fd501dc63800ff9745efeb3..6d338e5d37de3fba92ecfc4bcf4e1e8b0f1d23cd 100644
|
| --- a/src/compiler/mips64/code-generator-mips64.cc
|
| +++ b/src/compiler/mips64/code-generator-mips64.cc
|
| @@ -685,6 +685,24 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
|
| __ Trunc_uw_d(i.InputDoubleRegister(0), i.OutputRegister(), scratch);
|
| break;
|
| }
|
| + case kMips64FmoveLowUwD:
|
| + __ FmoveLow(i.OutputRegister(), i.InputDoubleRegister(0));
|
| + // remove sign.
|
| + __ li(at, Operand(32));
|
| + __ dsllv(i.OutputRegister(), i.OutputRegister(), at);
|
| + __ dsrlv(i.OutputRegister(), i.OutputRegister(), at);
|
| + break;
|
| + case kMips64FmoveLowDUw:
|
| + __ mfhc1(at, i.OutputDoubleRegister());
|
| + __ FmoveLow(i.OutputDoubleRegister(), i.InputRegister(1));
|
| + __ mthc1(at, i.OutputDoubleRegister());
|
| + break;
|
| + case kMips64FmoveHighUwD:
|
| + __ FmoveHigh(i.OutputRegister(), i.InputDoubleRegister(0));
|
| + break;
|
| + case kMips64FmoveHighDUw:
|
| + __ FmoveHigh(i.OutputDoubleRegister(), i.InputRegister(1));
|
| + break;
|
| // ... more basic instructions ...
|
|
|
| case kMips64Lbu:
|
|
|