void MoveEmitterMIPS::emitFloat32Move(const MoveOperand &from, const MoveOperand &to) { // Ensure that we can use ScratchFloatReg in memory move. MOZ_ASSERT_IF(from.isFloatReg(), from.floatReg() != ScratchFloatReg); MOZ_ASSERT_IF(to.isFloatReg(), to.floatReg() != ScratchFloatReg); if (from.isFloatReg()) { if (to.isFloatReg()) { masm.moveFloat32(from.floatReg(), to.floatReg()); } else if (to.isGeneralReg()) { // This should only be used when passing float parameter in a1,a2,a3 MOZ_ASSERT(to.reg() == a1 || to.reg() == a2 || to.reg() == a3); masm.as_mfc1(to.reg(), from.floatReg()); } else { MOZ_ASSERT(to.isMemory()); masm.storeFloat32(from.floatReg(), getAdjustedAddress(to)); } } else if (to.isFloatReg()) { MOZ_ASSERT(from.isMemory()); masm.loadFloat32(getAdjustedAddress(from), to.floatReg()); } else if (to.isGeneralReg()) { MOZ_ASSERT(from.isMemory()); // This should only be used when passing float parameter in a1,a2,a3 MOZ_ASSERT(to.reg() == a1 || to.reg() == a2 || to.reg() == a3); masm.loadPtr(getAdjustedAddress(from), to.reg()); } else { MOZ_ASSERT(from.isMemory()); MOZ_ASSERT(to.isMemory()); masm.loadFloat32(getAdjustedAddress(from), ScratchFloatReg); masm.storeFloat32(ScratchFloatReg, getAdjustedAddress(to)); } }
void MoveEmitterARM::emitFloat32Move(const MoveOperand& from, const MoveOperand& to) { // Register pairs are used to store Double values during calls. MOZ_ASSERT(!from.isGeneralRegPair()); MOZ_ASSERT(!to.isGeneralRegPair()); if (from.isFloatReg()) { if (to.isFloatReg()) masm.ma_vmov_f32(from.floatReg(), to.floatReg()); else if (to.isGeneralReg()) masm.ma_vxfer(from.floatReg(), to.reg()); else masm.ma_vstr(VFPRegister(from.floatReg()).singleOverlay(), toAddress(to)); } else if (from.isGeneralReg()) { if (to.isFloatReg()) masm.ma_vxfer(from.reg(), to.floatReg()); else if (to.isGeneralReg()) masm.ma_mov(from.reg(), to.reg()); else masm.ma_str(from.reg(), toAddress(to)); } else if (to.isFloatReg()) { masm.ma_vldr(toAddress(from), VFPRegister(to.floatReg()).singleOverlay()); } else if (to.isGeneralReg()) { masm.ma_ldr(toAddress(from), to.reg()); } else { // Memory to memory move. MOZ_ASSERT(from.isMemory()); FloatRegister reg = ScratchFloat32Reg; masm.ma_vldr(toAddress(from), VFPRegister(reg).singleOverlay()); masm.ma_vstr(VFPRegister(reg).singleOverlay(), toAddress(to)); } }
void MoveEmitterMIPS::emitMove(const MoveOperand &from, const MoveOperand &to) { if (from.isGeneralReg()) { // Second scratch register should not be moved by MoveEmitter. MOZ_ASSERT(from.reg() != spilledReg_); if (to.isGeneralReg()) masm.movePtr(from.reg(), to.reg()); else if (to.isMemory()) masm.storePtr(from.reg(), getAdjustedAddress(to)); else MOZ_ASSUME_UNREACHABLE("Invalid emitMove arguments."); } else if (from.isMemory()) { if (to.isGeneralReg()) { masm.loadPtr(getAdjustedAddress(from), to.reg()); } else if (to.isMemory()) { masm.loadPtr(getAdjustedAddress(from), tempReg()); masm.storePtr(tempReg(), getAdjustedAddress(to)); } else { MOZ_ASSUME_UNREACHABLE("Invalid emitMove arguments."); } } else if (from.isEffectiveAddress()) { if (to.isGeneralReg()) { masm.computeEffectiveAddress(getAdjustedAddress(from), to.reg()); } else if (to.isMemory()) { masm.computeEffectiveAddress(getAdjustedAddress(from), tempReg()); masm.storePtr(tempReg(), getAdjustedAddress(to)); } else { MOZ_ASSUME_UNREACHABLE("Invalid emitMove arguments."); } } else { MOZ_ASSUME_UNREACHABLE("Invalid emitMove arguments."); } }
void MoveEmitterMIPS::emitDoubleMove(const MoveOperand& from, const MoveOperand& to) { // Ensure that we can use ScratchDoubleReg in memory move. MOZ_ASSERT_IF(from.isFloatReg(), from.floatReg() != ScratchDoubleReg); MOZ_ASSERT_IF(to.isFloatReg(), to.floatReg() != ScratchDoubleReg); if (from.isFloatReg()) { if (to.isFloatReg()) { masm.moveDouble(from.floatReg(), to.floatReg()); } else if (to.isGeneralReg()) { // Used for passing double parameter in a2,a3 register pair. // Two moves are added for one double parameter by // MacroAssemblerMIPSCompat::passABIArg if(to.reg() == a2) masm.moveFromDoubleLo(from.floatReg(), a2); else if(to.reg() == a3) masm.moveFromDoubleHi(from.floatReg(), a3); else MOZ_CRASH("Invalid emitDoubleMove arguments."); } else { MOZ_ASSERT(to.isMemory()); masm.storeDouble(from.floatReg(), getAdjustedAddress(to)); } } else if (to.isFloatReg()) { MOZ_ASSERT(from.isMemory()); masm.loadDouble(getAdjustedAddress(from), to.floatReg()); } else if (to.isGeneralReg()) { // Used for passing double parameter in a2,a3 register pair. // Two moves are added for one double parameter by // MacroAssemblerMIPSCompat::passABIArg if (from.isMemory()) { if(to.reg() == a2) masm.loadPtr(getAdjustedAddress(from), a2); else if(to.reg() == a3) masm.loadPtr(Address(from.base(), getAdjustedOffset(from) + sizeof(uint32_t)), a3); else MOZ_CRASH("Invalid emitDoubleMove arguments."); } else { // Used for moving a double parameter from the same source. See Bug 1123874. if(to.reg() == a2 || to.reg() == a3) masm.ma_move(to.reg(), from.reg()); else MOZ_CRASH("Invalid emitDoubleMove arguments."); } } else { MOZ_ASSERT(from.isMemory()); MOZ_ASSERT(to.isMemory()); masm.loadDouble(getAdjustedAddress(from), ScratchDoubleReg); masm.storeDouble(ScratchDoubleReg, getAdjustedAddress(to)); } }
void MoveEmitterARM::emitDoubleMove(const MoveOperand& from, const MoveOperand& to) { // Registers are used to store pointers / int32 / float32 values. MOZ_ASSERT(!from.isGeneralReg()); MOZ_ASSERT(!to.isGeneralReg()); if (from.isFloatReg()) { if (to.isFloatReg()) masm.ma_vmov(from.floatReg(), to.floatReg()); else if (to.isGeneralRegPair()) masm.ma_vxfer(from.floatReg(), to.evenReg(), to.oddReg()); else masm.ma_vstr(from.floatReg(), toAddress(to)); } else if (from.isGeneralRegPair()) { if (to.isFloatReg()) masm.ma_vxfer(from.evenReg(), from.oddReg(), to.floatReg()); else if (to.isGeneralRegPair()) { MOZ_ASSERT(!from.aliases(to)); masm.ma_mov(from.evenReg(), to.evenReg()); masm.ma_mov(from.oddReg(), to.oddReg()); } else { FloatRegister reg = ScratchDoubleReg; masm.ma_vxfer(from.evenReg(), from.oddReg(), reg); masm.ma_vstr(reg, toAddress(to)); } } else if (to.isFloatReg()) { masm.ma_vldr(toAddress(from), to.floatReg()); } else if (to.isGeneralRegPair()) { MOZ_ASSERT(from.isMemory()); Address src = toAddress(from); // Note: We can safely use the MoveOperand's displacement here, // even if the base is SP: MoveEmitter::toOperand adjusts // SP-relative operands by the difference between the current // stack usage and stackAdjust, which emitter.finish() resets to // 0. // // Warning: if the offset isn't within [-255,+255] then this // will assert-fail (or, if non-debug, load the wrong words). // Nothing uses such an offset at the time of this writing. masm.ma_ldrd(EDtrAddr(src.base, EDtrOffImm(src.offset)), to.evenReg(), to.oddReg()); } else { // Memory to memory move. MOZ_ASSERT(from.isMemory()); ScratchDoubleScope scratch(masm); masm.ma_vldr(toAddress(from), scratch); masm.ma_vstr(scratch, toAddress(to)); } }
void MacroAssemblerX64::passABIArg(const MoveOperand &from) { MoveOperand to; if (from.isDouble()) { FloatRegister dest; if (GetFloatArgReg(passedIntArgs_, passedFloatArgs_++, &dest)) { if (from.isFloatReg() && from.floatReg() == dest) { // Nothing to do; the value is in the right register already return; } to = MoveOperand(dest); } else { to = MoveOperand(StackPointer, stackForCall_); stackForCall_ += sizeof(double); } enoughMemory_ = moveResolver_.addMove(from, to, Move::DOUBLE); } else { Register dest; if (GetIntArgReg(passedIntArgs_++, passedFloatArgs_, &dest)) { if (from.isGeneralReg() && from.reg() == dest) { // Nothing to do; the value is in the right register already return; } to = MoveOperand(dest); } else { to = MoveOperand(StackPointer, stackForCall_); stackForCall_ += sizeof(int64_t); } enoughMemory_ = moveResolver_.addMove(from, to, Move::GENERAL); } }
void MoveEmitterARM::emitMove(const MoveOperand &from, const MoveOperand &to) { if (to.isGeneralReg() && to.reg() == spilledReg_) { // If the destination is the spilled register, make sure we // don't re-clobber its value. spilledReg_ = InvalidReg; } if (from.isGeneralReg()) { if (from.reg() == spilledReg_) { // If the source is a register that has been spilled, make sure // to load the source back into that register. masm.ma_ldr(spillSlot(), spilledReg_); spilledReg_ = InvalidReg; } switch (toOperand(to, false).getTag()) { case Operand::OP2: // secretly must be a register masm.ma_mov(from.reg(), to.reg()); break; case Operand::MEM: masm.ma_str(from.reg(), toOperand(to, false)); break; default: MOZ_ASSUME_UNREACHABLE("strange move!"); } } else if (to.isGeneralReg()) { JS_ASSERT(from.isMemory() || from.isEffectiveAddress()); if (from.isMemory()) masm.ma_ldr(toOperand(from, false), to.reg()); else masm.ma_add(from.base(), Imm32(from.disp()), to.reg()); } else { // Memory to memory gpr move. Register reg = tempReg(); JS_ASSERT(from.isMemory() || from.isEffectiveAddress()); if (from.isMemory()) masm.ma_ldr(toOperand(from, false), reg); else masm.ma_add(from.base(), Imm32(from.disp()), reg); JS_ASSERT(to.base() != reg); masm.ma_str(reg, toOperand(to, false)); } }
void MoveEmitterMIPS::emitDoubleMove(const MoveOperand &from, const MoveOperand &to) { // Ensure that we can use ScratchFloatReg in memory move. MOZ_ASSERT_IF(from.isFloatReg(), from.floatReg() != ScratchFloatReg); MOZ_ASSERT_IF(to.isFloatReg(), to.floatReg() != ScratchFloatReg); if (from.isFloatReg()) { if (to.isFloatReg()) { masm.moveDouble(from.floatReg(), to.floatReg()); } else if (to.isGeneralReg()) { // Used for passing double parameter in a2,a3 register pair. // Two moves are added for one double parameter by // MacroAssemblerMIPSCompat::passABIArg if(to.reg() == a2) masm.as_mfc1(a2, from.floatReg()); else if(to.reg() == a3) masm.as_mfc1_Odd(a3, from.floatReg()); else MOZ_ASSUME_UNREACHABLE("Invalid emitDoubleMove arguments."); } else { MOZ_ASSERT(to.isMemory()); masm.storeDouble(from.floatReg(), getAdjustedAddress(to)); } } else if (to.isFloatReg()) { MOZ_ASSERT(from.isMemory()); masm.loadDouble(getAdjustedAddress(from), to.floatReg()); } else if (to.isGeneralReg()) { MOZ_ASSERT(from.isMemory()); // Used for passing double parameter in a2,a3 register pair. // Two moves are added for one double parameter by // MacroAssemblerMIPSCompat::passABIArg if(to.reg() == a2) masm.loadPtr(getAdjustedAddress(from), a2); else if(to.reg() == a3) masm.loadPtr(Address(from.base(), getAdjustedOffset(from) + sizeof(uint32_t)), a3); else MOZ_ASSUME_UNREACHABLE("Invalid emitDoubleMove arguments."); } else { MOZ_ASSERT(from.isMemory()); MOZ_ASSERT(to.isMemory()); masm.loadDouble(getAdjustedAddress(from), ScratchFloatReg); masm.storeDouble(ScratchFloatReg, getAdjustedAddress(to)); } }
void MoveEmitterARM::emitMove(const MoveOperand& from, const MoveOperand& to) { // Register pairs are used to store Double values during calls. MOZ_ASSERT(!from.isGeneralRegPair()); MOZ_ASSERT(!to.isGeneralRegPair()); if (to.isGeneralReg() && to.reg() == spilledReg_) { // If the destination is the spilled register, make sure we // don't re-clobber its value. spilledReg_ = InvalidReg; } if (from.isGeneralReg()) { if (from.reg() == spilledReg_) { // If the source is a register that has been spilled, make sure // to load the source back into that register. masm.ma_ldr(spillSlot(), spilledReg_); spilledReg_ = InvalidReg; } if (to.isMemoryOrEffectiveAddress()) masm.ma_str(from.reg(), toAddress(to)); else masm.ma_mov(from.reg(), to.reg()); } else if (to.isGeneralReg()) { MOZ_ASSERT(from.isMemoryOrEffectiveAddress()); if (from.isMemory()) masm.ma_ldr(toAddress(from), to.reg()); else masm.ma_add(from.base(), Imm32(from.disp()), to.reg()); } else { // Memory to memory gpr move. Register reg = tempReg(); MOZ_ASSERT(from.isMemoryOrEffectiveAddress()); if (from.isMemory()) masm.ma_ldr(toAddress(from), reg); else masm.ma_add(from.base(), Imm32(from.disp()), reg); MOZ_ASSERT(to.base() != reg); masm.ma_str(reg, toAddress(to)); } }
// Warning, do not use the resulting operand with pop instructions, since they // compute the effective destination address after altering the stack pointer. // Use toPopOperand if an Operand is needed for a pop. Operand MoveEmitterMIPS::toOperand(const MoveOperand &operand) const { if (operand.isMemory() || operand.isEffectiveAddress() || operand.isFloatAddress()) return Operand(toAddress(operand)); if (operand.isGeneralReg()) return Operand(operand.reg()); JS_ASSERT(operand.isFloatReg()); return Operand(operand.floatReg()); }
// Warning, do not use the resulting operand with pop instructions, since they // compute the effective destination address after altering the stack pointer. // Use toPopOperand if an Operand is needed for a pop. Operand MoveEmitterX86::toOperand(const MoveOperand& operand) const { if (operand.isMemoryOrEffectiveAddress()) return Operand(toAddress(operand)); if (operand.isGeneralReg()) return Operand(operand.reg()); MOZ_ASSERT(operand.isFloatReg()); return Operand(operand.floatReg()); }
void MoveEmitterARM64::emitInt32Move(const MoveOperand& from, const MoveOperand& to) { if (from.isGeneralReg()) { if (to.isGeneralReg()) { masm.Mov(toARMReg32(to), toARMReg32(from)); } else { masm.Str(toARMReg32(from), toMemOperand(to)); } return; } if (to.isGeneralReg()) { masm.Ldr(toARMReg32(to), toMemOperand(from)); return; } vixl::UseScratchRegisterScope temps(&masm.asVIXL()); const ARMRegister scratch32 = temps.AcquireW(); masm.Ldr(scratch32, toMemOperand(from)); masm.Str(scratch32, toMemOperand(to)); }
void MoveEmitterARM64::emitGeneralMove(const MoveOperand& from, const MoveOperand& to) { if (from.isGeneralReg()) { MOZ_ASSERT(to.isGeneralReg() || to.isMemory()); if (to.isGeneralReg()) { masm.Mov(toARMReg64(to), toARMReg64(from)); } else { masm.Str(toARMReg64(from), toMemOperand(to)); } return; } // {Memory OR EffectiveAddress} -> Register move. if (to.isGeneralReg()) { MOZ_ASSERT(from.isMemoryOrEffectiveAddress()); if (from.isMemory()) { masm.Ldr(toARMReg64(to), toMemOperand(from)); } else { masm.Add(toARMReg64(to), toARMReg64(from), Operand(from.disp())); } return; } vixl::UseScratchRegisterScope temps(&masm.asVIXL()); const ARMRegister scratch64 = temps.AcquireX(); // Memory -> Memory move. if (from.isMemory()) { MOZ_ASSERT(to.isMemory()); masm.Ldr(scratch64, toMemOperand(from)); masm.Str(scratch64, toMemOperand(to)); return; } // EffectiveAddress -> Memory move. MOZ_ASSERT(from.isEffectiveAddress()); MOZ_ASSERT(to.isMemory()); masm.Add(scratch64, toARMReg64(from), Operand(from.disp())); masm.Str(scratch64, toMemOperand(to)); }
void MoveEmitterX86::emitGeneralMove(const MoveOperand &from, const MoveOperand &to) { if (from.isGeneralReg()) { masm.mov(from.reg(), toOperand(to)); } else if (to.isGeneralReg()) { JS_ASSERT(from.isMemoryOrEffectiveAddress()); if (from.isMemory()) masm.loadPtr(toAddress(from), to.reg()); else masm.lea(toOperand(from), to.reg()); } else if (from.isMemory()) { // Memory to memory gpr move. #ifdef JS_CODEGEN_X64 // x64 has a ScratchReg. Use it. masm.loadPtr(toAddress(from), ScratchReg); masm.mov(ScratchReg, toOperand(to)); #else // No ScratchReg; bounce it off the stack. masm.Push(toOperand(from)); masm.Pop(toPopOperand(to)); #endif } else { // Effective address to memory move. JS_ASSERT(from.isEffectiveAddress()); #ifdef JS_CODEGEN_X64 // x64 has a ScratchReg. Use it. masm.lea(toOperand(from), ScratchReg); masm.mov(ScratchReg, toOperand(to)); #else // This is tricky without a ScratchReg. We can't do an lea. Bounce the // base register off the stack, then add the offset in place. Note that // this clobbers FLAGS! masm.Push(from.base()); masm.Pop(toPopOperand(to)); masm.addPtr(Imm32(from.disp()), toOperand(to)); #endif } }
void MoveEmitterX86::emitInt32Move(const MoveOperand &from, const MoveOperand &to) { if (from.isGeneralReg()) { masm.move32(from.reg(), toOperand(to)); } else if (to.isGeneralReg()) { JS_ASSERT(from.isMemory()); masm.load32(toAddress(from), to.reg()); } else { // Memory to memory gpr move. JS_ASSERT(from.isMemory()); #ifdef JS_CODEGEN_X64 // x64 has a ScratchReg. Use it. masm.load32(toAddress(from), ScratchReg); masm.move32(ScratchReg, toOperand(to)); #else // No ScratchReg; bounce it off the stack. masm.Push(toOperand(from)); masm.Pop(toPopOperand(to)); #endif } }
void MoveEmitterX86::emitInt32Move(const MoveOperand& from, const MoveOperand& to) { if (from.isGeneralReg()) { masm.move32(from.reg(), toOperand(to)); } else if (to.isGeneralReg()) { MOZ_ASSERT(from.isMemory()); masm.load32(toAddress(from), to.reg()); } else { // Memory to memory gpr move. MOZ_ASSERT(from.isMemory()); if (hasScratchRegister()) { Register reg = scratchRegister(); masm.load32(toAddress(from), reg); masm.move32(reg, toOperand(to)); } else { // No scratch register available; bounce it off the stack. masm.Push(toOperand(from)); masm.Pop(toPopOperand(to)); } } }
void MoveEmitterX86::emitGeneralMove(const MoveOperand& from, const MoveOperand& to) { if (from.isGeneralReg()) { masm.mov(from.reg(), toOperand(to)); } else if (to.isGeneralReg()) { MOZ_ASSERT(from.isMemoryOrEffectiveAddress()); if (from.isMemory()) masm.loadPtr(toAddress(from), to.reg()); else masm.lea(toOperand(from), to.reg()); } else if (from.isMemory()) { // Memory to memory gpr move. if (hasScratchRegister()) { Register reg = scratchRegister(); masm.loadPtr(toAddress(from), reg); masm.mov(reg, toOperand(to)); } else { // No scratch register available; bounce it off the stack. masm.Push(toOperand(from)); masm.Pop(toPopOperand(to)); } } else { // Effective address to memory move. MOZ_ASSERT(from.isEffectiveAddress()); if (hasScratchRegister()) { Register reg = scratchRegister(); masm.lea(toOperand(from), reg); masm.mov(reg, toOperand(to)); } else { // This is tricky without a scratch reg. We can't do an lea. Bounce the // base register off the stack, then add the offset in place. Note that // this clobbers FLAGS! masm.Push(from.base()); masm.Pop(toPopOperand(to)); masm.addPtr(Imm32(from.disp()), toOperand(to)); } } }
void MoveEmitterMIPS::emitMove(const MoveOperand &from, const MoveOperand &to) { if (to.isGeneralReg() && to.reg() == spilledReg_) { // If the destination is the spilled register, make sure we // don't re-clobber its value. spilledReg_ = InvalidReg; } if (from.isGeneralReg()) { if (from.reg() == spilledReg_) { // If the source is a register that has been spilled, make sure // to load the source back into that register. masm.mov(spillSlot(), spilledReg_); spilledReg_ = InvalidReg; } masm.mov(from.reg(), toOperand(to)); } else if (to.isGeneralReg()) { JS_ASSERT(from.isMemory() || from.isEffectiveAddress()); if (from.isMemory()) masm.mov(toOperand(from), to.reg()); else masm.lea(toOperand(from), to.reg()); } else { // Memory to memory gpr move. Register reg = tempReg(); // Reload its previous value from the stack. if (reg == from.base()) masm.mov(spillSlot(), from.base()); JS_ASSERT(from.isMemory() || from.isEffectiveAddress()); if (from.isMemory()) masm.mov(toOperand(from), reg); else masm.lea(toOperand(from), reg); JS_ASSERT(to.base() != reg); masm.mov(reg, toOperand(to)); } }
void MacroAssemblerX64::passABIArg(const MoveOperand& from, MoveOp::Type type) { MoveOperand to; switch (type) { case MoveOp::FLOAT32: case MoveOp::DOUBLE: { FloatRegister dest; if (GetFloatArgReg(passedIntArgs_, passedFloatArgs_++, &dest)) { // Convert to the right type of register. if (type == MoveOp::FLOAT32) dest = dest.asSingle(); if (from.isFloatReg() && from.floatReg() == dest) { // Nothing to do; the value is in the right register already return; } to = MoveOperand(dest); } else { to = MoveOperand(StackPointer, stackForCall_); switch (type) { case MoveOp::FLOAT32: stackForCall_ += sizeof(float); break; case MoveOp::DOUBLE: stackForCall_ += sizeof(double); break; default: MOZ_CRASH("Unexpected float register class argument type"); } } break; } case MoveOp::GENERAL: { Register dest; if (GetIntArgReg(passedIntArgs_++, passedFloatArgs_, &dest)) { if (from.isGeneralReg() && from.reg() == dest) { // Nothing to do; the value is in the right register already return; } to = MoveOperand(dest); } else { to = MoveOperand(StackPointer, stackForCall_); stackForCall_ += sizeof(int64_t); } break; } default: MOZ_CRASH("Unexpected argument type"); } enoughMemory_ = moveResolver_.addMove(from, to, type); }
// Warning, do not use the resulting operand with pop instructions, since they // compute the effective destination address after altering the stack pointer. // Use toPopOperand if an Operand is needed for a pop. Operand MoveEmitterX86::toOperand(const MoveOperand &operand) const { if (operand.isMemory() || operand.isEffectiveAddress() || operand.isFloatAddress()) { if (operand.base() != StackPointer) return Operand(operand.base(), operand.disp()); JS_ASSERT(operand.disp() >= 0); // Otherwise, the stack offset may need to be adjusted. return Operand(StackPointer, operand.disp() + (masm.framePushed() - pushedAtStart_)); } if (operand.isGeneralReg()) return Operand(operand.reg()); JS_ASSERT(operand.isFloatReg()); return Operand(operand.floatReg()); }
// This is the same as toOperand except that it computes an Operand suitable for // use in a pop. Operand MoveEmitterX86::toPopOperand(const MoveOperand& operand) const { if (operand.isMemory()) { if (operand.base() != StackPointer) return Operand(operand.base(), operand.disp()); MOZ_ASSERT(operand.disp() >= 0); // Otherwise, the stack offset may need to be adjusted. // Note the adjustment by the stack slot here, to offset for the fact that pop // computes its effective address after incrementing the stack pointer. return Operand(StackPointer, operand.disp() + (masm.framePushed() - sizeof(void*) - pushedAtStart_)); } if (operand.isGeneralReg()) return Operand(operand.reg()); MOZ_ASSERT(operand.isFloatReg()); return Operand(operand.floatReg()); }
void MoveEmitterARM::completeCycle(const MoveOperand& from, const MoveOperand& to, MoveOp::Type type, uint32_t slotId) { // There is some pattern: // (A -> B) // (B -> A) // // This case handles (B -> A), which we reach last. We emit a move from the // saved value of B, to A. switch (type) { case MoveOp::FLOAT32: MOZ_ASSERT(!to.isGeneralRegPair()); if (to.isMemory()) { ScratchFloat32Scope scratch(masm); masm.ma_vldr(cycleSlot(slotId, 0), scratch); masm.ma_vstr(scratch, toAddress(to)); } else if (to.isGeneralReg()) { MOZ_ASSERT(type == MoveOp::FLOAT32); masm.ma_ldr(toAddress(from), to.reg()); } else { uint32_t offset = 0; if ((!from.isMemory()) && from.floatReg().numAlignedAliased() == 1) offset = sizeof(float); masm.ma_vldr(cycleSlot(slotId, offset), to.floatReg()); } break; case MoveOp::DOUBLE: MOZ_ASSERT(!to.isGeneralReg()); if (to.isMemory()) { ScratchDoubleScope scratch(masm); masm.ma_vldr(cycleSlot(slotId, 0), scratch); masm.ma_vstr(scratch, toAddress(to)); } else if (to.isGeneralRegPair()) { MOZ_ASSERT(type == MoveOp::DOUBLE); ScratchDoubleScope scratch(masm); masm.ma_vldr(toAddress(from), scratch); masm.ma_vxfer(scratch, to.evenReg(), to.oddReg()); } else { uint32_t offset = 0; if ((!from.isMemory()) && from.floatReg().numAlignedAliased() == 1) offset = sizeof(float); masm.ma_vldr(cycleSlot(slotId, offset), to.floatReg()); } break; case MoveOp::INT32: case MoveOp::GENERAL: MOZ_ASSERT(slotId == 0); if (to.isMemory()) { Register temp = tempReg(); masm.ma_ldr(cycleSlot(slotId, 0), temp); masm.ma_str(temp, toAddress(to)); } else { if (to.reg() == spilledReg_) { // Make sure we don't re-clobber the spilled register later. spilledReg_ = InvalidReg; } masm.ma_ldr(cycleSlot(slotId, 0), to.reg()); } break; default: MOZ_CRASH("Unexpected move type"); } }
void MoveEmitterARM::breakCycle(const MoveOperand& from, const MoveOperand& to, MoveOp::Type type, uint32_t slotId) { // There is some pattern: // (A -> B) // (B -> A) // // This case handles (A -> B), which we reach first. We save B, then allow // the original move to continue. switch (type) { case MoveOp::FLOAT32: if (to.isMemory()) { VFPRegister temp = ScratchFloat32Reg; masm.ma_vldr(toAddress(to), temp); // Since it is uncertain if the load will be aligned or not // just fill both of them with the same value. masm.ma_vstr(temp, cycleSlot(slotId, 0)); masm.ma_vstr(temp, cycleSlot(slotId, 4)); } else if (to.isGeneralReg()) { // Since it is uncertain if the load will be aligned or not // just fill both of them with the same value. masm.ma_str(to.reg(), cycleSlot(slotId, 0)); masm.ma_str(to.reg(), cycleSlot(slotId, 4)); } else { FloatRegister src = to.floatReg(); // Just always store the largest possible size. Currently, this is // a double. When SIMD is added, two doubles will need to be stored. masm.ma_vstr(src.doubleOverlay(), cycleSlot(slotId, 0)); } break; case MoveOp::DOUBLE: if (to.isMemory()) { ScratchDoubleScope scratch(masm); masm.ma_vldr(toAddress(to), scratch); masm.ma_vstr(scratch, cycleSlot(slotId, 0)); } else if (to.isGeneralRegPair()) { ScratchDoubleScope scratch(masm); masm.ma_vxfer(to.evenReg(), to.oddReg(), scratch); masm.ma_vstr(scratch, cycleSlot(slotId, 0)); } else { masm.ma_vstr(to.floatReg().doubleOverlay(), cycleSlot(slotId, 0)); } break; case MoveOp::INT32: case MoveOp::GENERAL: // an non-vfp value if (to.isMemory()) { Register temp = tempReg(); masm.ma_ldr(toAddress(to), temp); masm.ma_str(temp, cycleSlot(0,0)); } else { if (to.reg() == spilledReg_) { // If the destination was spilled, restore it first. masm.ma_ldr(spillSlot(), spilledReg_); spilledReg_ = InvalidReg; } masm.ma_str(to.reg(), cycleSlot(0,0)); } break; default: MOZ_CRASH("Unexpected move type"); } }