Searched refs:left_low (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_arm_vixl.cc | 1325 const vixl32::Register left_low = LowRegisterFrom(left); in GenerateLongTestConstant() local 1340 __ Orrs(temps.Acquire(), left_low, left_high); in GenerateLongTestConstant() 1351 __ Cmp(left_low, left_low); in GenerateLongTestConstant() 1373 if (!left_low.IsLow() || !IsUint<8>(value_low)) { in GenerateLongTestConstant() 1384 __ cmp(eq, left_low, operand_low); in GenerateLongTestConstant() 1392 __ Cmp(left_low, left_low); in GenerateLongTestConstant() 1412 __ Cmp(left_low, Low32Bits(value)); in GenerateLongTestConstant() 1562 vixl32::Register left_low = LowRegisterFrom(left); in GenerateEqualLong() local 1576 std::swap(left_low, left_high); in GenerateEqualLong() 1580 __ Sub(out, left_low, right_low); in GenerateEqualLong() [all …]
|
D | code_generator_x86.cc | 1541 Register left_low = left.AsRegisterPairLow<Register>(); in GenerateLongComparesAndJumps() local 1594 codegen_->Compare32BitValue(left_low, val_low); in GenerateLongComparesAndJumps() 1609 __ cmpl(left_low, right_low); in GenerateLongComparesAndJumps() 1622 __ cmpl(left_low, Address(ESP, right.GetStackIndex())); in GenerateLongComparesAndJumps() 4878 Register left_low = left.AsRegisterPairLow<Register>(); in VisitCompare() local 4903 __ cmpl(left_low, right.AsRegisterPairLow<Register>()); in VisitCompare() 4905 __ cmpl(left_low, Address(ESP, right.GetStackIndex())); in VisitCompare() 4908 codegen_->Compare32BitValue(left_low, val_low); in VisitCompare()
|