Lines Matching refs:high
1245 // Must be equal high, so compare the lows.
1260 // Must be equal high, so compare the lows.
1273 // Must be equal high, so compare the lows.
3032 Immediate high(high_value);
3034 __ movl(eax, high);
3768 Register high = loc.AsRegisterPairHigh<Register>();
3772 __ adcl(high, high);
3774 // Shift by 32 is easy. High gets low, and low gets 0.
3783 // Low part becomes 0. High part is low part << (shift-32).
3784 __ movl(high, low);
3785 __ shll(high, Immediate(shift - 32));
3789 __ shld(high, low, Immediate(shift));
3807 Register high = loc.AsRegisterPairHigh<Register>();
3810 DCHECK_NE(low, high);
3811 __ movl(low, high);
3812 __ sarl(high, Immediate(31));
3814 DCHECK_NE(low, high);
3815 // High part becomes sign. Low part is shifted by shift - 32.
3816 __ movl(low, high);
3817 __ sarl(high, Immediate(31));
3821 __ shrd(low, high, Immediate(shift));
3822 __ sarl(high, Immediate(shift));
3839 Register high = loc.AsRegisterPairHigh<Register>();
3841 // Shift by 32 is easy. Low gets high, and high gets 0.
3850 // Low part is high >> (shift - 32). High part becomes 0.
3851 __ movl(low, high);
3853 __ xorl(high, high);
3856 __ shrd(low, high, Immediate(shift));
3857 __ shrl(high, Immediate(shift));
3942 // Shift right into low, feeding bits from high.
3945 // Shift right into high, feeding bits from the original low.
5735 Immediate high(high_value);
5738 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
5741 __ movl(destination.AsRegisterPairHigh<Register>(), high);
5750 Immediate high(high_value);
5757 __ pushl(high);
5765 __ movl(Address(ESP, destination.GetHighStackIndex(kX86WordSize)), high);
5842 // Load the double into the high doubleword.
5848 // Move the high double to the low double.
5854 // Load the double into the high doubleword.
5860 // Move the high double to the low double.
6682 Immediate high(high_value);
6694 __ andl(first_high, high);
6701 __ orl(first_high, high);
6709 __ xorl(first_high, high);
6893 // the high-bits of rb_state, which are expected to be all zeroes