Lines Matching refs:src_low
1495 Register src_low, Register src_high, in ShlPair() argument
1510 sllv(dst_high, src_low, kScratchReg); in ShlPair()
1515 mov(dst_high, src_low); in ShlPair()
1524 sllv(dst_low, src_low, shift); in ShlPair()
1525 srlv(kScratchReg, src_low, kScratchReg); in ShlPair()
1530 mov(dst_low, src_low); in ShlPair()
1536 Register src_low, Register src_high, in ShlPair() argument
1542 mov(dst_low, src_low); in ShlPair()
1546 sll(dst_low, src_low, shift); in ShlPair()
1548 srl(kScratchReg, src_low, shift); in ShlPair()
1554 mov(dst_high, src_low); in ShlPair()
1558 sll(dst_high, src_low, shift); in ShlPair()
1564 Register src_low, Register src_high, in ShrPair() argument
1593 srlv(dst_low, src_low, shift); in ShrPair()
1599 mov(dst_low, src_low); in ShrPair()
1605 Register src_low, Register src_high, in ShrPair() argument
1611 mov(dst_low, src_low); in ShrPair()
1615 srl(dst_low, src_low, shift); in ShrPair()
1633 Register src_low, Register src_high, in SarPair() argument
1667 srlv(dst_low, src_low, shift); in SarPair()
1673 mov(dst_low, src_low); in SarPair()
1679 Register src_low, Register src_high, in SarPair() argument
1685 mov(dst_low, src_low); in SarPair()
1689 srl(dst_low, src_low, shift); in SarPair()
2245 void MacroAssembler::FmoveLow(FPURegister dst, Register src_low) { in FmoveLow() argument
2247 mtc1(src_low, dst); in FmoveLow()
2251 DCHECK(!src_low.is(at)); in FmoveLow()
2253 mtc1(src_low, dst); in FmoveLow()