Lines Matching refs:comparison
632 HInstruction* comparison = nullptr; in TestComparison() local
638 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
642 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
646 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
650 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
654 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
658 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
662 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
666 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
670 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
674 comparison = new (GetAllocator()) HAboveOrEqual(op1, op2); in TestComparison()
678 block->AddInstruction(comparison); in TestComparison()
679 block->AddInstruction(new (GetAllocator()) HReturn(comparison)); in TestComparison()