Lines Matching refs:op2
627 HInstruction* op2; in TestComparison() local
630 op2 = graph->GetIntConstant(j); in TestComparison()
634 op2 = graph->GetLongConstant(j); in TestComparison()
643 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
647 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
651 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
655 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
659 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
663 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
667 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
671 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
675 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
679 comparison = new (GetAllocator()) HAboveOrEqual(op1, op2); in TestComparison()