Lines Matching refs:op2
625 HInstruction* op2; in TestComparison() local
628 op2 = graph->GetIntConstant(j); in TestComparison()
632 op2 = graph->GetLongConstant(j); in TestComparison()
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()