Lines Matching refs:out_high
3866 Register out_high = locations->Out().AsRegisterPairHigh<Register>(); in DivRemOneOrMinusOne() local
3872 __ Move(out_high, ZERO); in DivRemOneOrMinusOne()
3878 __ Subu(out_high, ZERO, in_high); in DivRemOneOrMinusOne()
3879 __ Subu(out_high, out_high, AT); in DivRemOneOrMinusOne()
3882 __ Move(out_high, in_high); in DivRemOneOrMinusOne()
3943 Register out_high = locations->Out().AsRegisterPairHigh<Register>(); in DivRemByPowerOfTwo() local
3961 __ Addu(out_high, in_high, TMP); in DivRemByPowerOfTwo()
3964 __ Ins(out_low, out_high, 32 - ctz_imm, ctz_imm); in DivRemByPowerOfTwo()
3965 __ Sra(out_high, out_high, ctz_imm); in DivRemByPowerOfTwo()
3967 __ Sll(AT, out_high, 32 - ctz_imm); in DivRemByPowerOfTwo()
3968 __ Sra(out_high, out_high, ctz_imm); in DivRemByPowerOfTwo()
3974 __ Subu(out_high, ZERO, out_high); in DivRemByPowerOfTwo()
3975 __ Subu(out_high, out_high, AT); in DivRemByPowerOfTwo()
3986 __ Subu(out_high, TMP, AT); in DivRemByPowerOfTwo()
3988 __ Sra(out_high, out_low, 31); in DivRemByPowerOfTwo()
4001 __ Sra(out_high, out_low, 31); in DivRemByPowerOfTwo()
4012 __ Move(out_high, ZERO); in DivRemByPowerOfTwo()
4019 __ Sra(out_high, TMP, 31); in DivRemByPowerOfTwo()
4020 __ Or(out_low, out_high, AT); in DivRemByPowerOfTwo()
4032 __ Selnez(out_high, AT, out_low); in DivRemByPowerOfTwo()
4035 __ Move(out_high, AT); in DivRemByPowerOfTwo()
4038 __ Ins(out_low, out_high, ctz_imm, 32 - ctz_imm); in DivRemByPowerOfTwo()
4040 __ Sll(AT, out_high, ctz_imm); in DivRemByPowerOfTwo()
4047 __ Selnez(out_high, AT, out_low); in DivRemByPowerOfTwo()
4050 __ Move(out_high, AT); in DivRemByPowerOfTwo()
4056 __ Andi(out_high, in_high, (1 << (ctz_imm - 32)) - 1); in DivRemByPowerOfTwo()
4058 __ Ext(out_high, in_high, 0, ctz_imm - 32); in DivRemByPowerOfTwo()
4060 __ Sll(out_high, in_high, 64 - ctz_imm); in DivRemByPowerOfTwo()
4061 __ Srl(out_high, out_high, 64 - ctz_imm); in DivRemByPowerOfTwo()
4064 __ Or(TMP, TMP, out_high); in DivRemByPowerOfTwo()
4071 __ Ins(out_high, AT, ctz_imm - 32, 64 - ctz_imm); in DivRemByPowerOfTwo()
4074 __ Or(out_high, out_high, AT); in DivRemByPowerOfTwo()
4087 __ Xor(out_high, in_high, AT); in DivRemByPowerOfTwo()