Lines Matching refs:comparison
635 HInstruction* comparison = nullptr; in TestComparison() local
641 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
645 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
649 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
653 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
657 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
661 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
665 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
669 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
673 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
677 comparison = new (GetAllocator()) HAboveOrEqual(op1, op2); in TestComparison()
681 block->AddInstruction(comparison); in TestComparison()
682 block->AddInstruction(new (GetAllocator()) HReturn(comparison)); in TestComparison()