| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 1e2934e09004b09136d4b351f992c2e76b4d0a0d..3146408ac6672f29b78353de541d0cb930db5315 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -1868,6 +1868,20 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) {
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoDoubleBits(HDoubleBits* instr) {
|
| + HValue* value = instr->value();
|
| + ASSERT(value->representation().IsDouble());
|
| + return DefineAsRegister(new(zone()) LDoubleBits(UseRegister(value)));
|
| +}
|
| +
|
| +
|
| +LInstruction* LChunkBuilder::DoConstructDouble(HConstructDouble* instr) {
|
| + LOperand* lo = UseRegister(instr->lo());
|
| + LOperand* hi = UseRegister(instr->hi());
|
| + return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoReturn(HReturn* instr) {
|
| LOperand* context = info()->IsStub()
|
| ? UseFixed(instr->context(), cp)
|
|
|