Lines Matching defs:dest
1782 void TurboAssembler::InsertBits(Register dest, Register source, Register pos,
1799 and_(dest, mask, dest);
1801 or_(dest, dest, source_);
2019 // in mantissa, the result is the same as src, so move src to dest (to avoid
2112 // in mantissa, the result is the same as src, so move src to dest (to avoid
2502 // dest <- (condition != 0 ? zero : dest)
2503 void TurboAssembler::LoadZeroIfConditionNotZero(Register dest,
2508 // neg + and may be more efficient than mul(dest, dest, scratch)
2510 and_(dest, dest, scratch);
2513 // dest <- (condition == 0 ? 0 : dest)
2514 void TurboAssembler::LoadZeroIfConditionZero(Register dest,
2519 // neg + and may be more efficient than mul(dest, dest, scratch);
2521 and_(dest, dest, scratch);
3738 Register src = a6, dest = a7;
3743 Move(dest, sp);
3747 Sd(t1, MemOperand(dest, 0));
3750 Add64(dest, dest, Operand(kSystemPointerSize));