Lines Matching refs:op1
629 HInstruction* op1; in TestComparison() local
632 op1 = graph->GetIntConstant(i); in TestComparison()
636 op1 = graph->GetLongConstant(i); in TestComparison()
646 comparison = new (GetAllocator()) HEqual(op1, op2); in TestComparison()
650 comparison = new (GetAllocator()) HNotEqual(op1, op2); in TestComparison()
654 comparison = new (GetAllocator()) HLessThan(op1, op2); in TestComparison()
658 comparison = new (GetAllocator()) HLessThanOrEqual(op1, op2); in TestComparison()
662 comparison = new (GetAllocator()) HGreaterThan(op1, op2); in TestComparison()
666 comparison = new (GetAllocator()) HGreaterThanOrEqual(op1, op2); in TestComparison()
670 comparison = new (GetAllocator()) HBelow(op1, op2); in TestComparison()
674 comparison = new (GetAllocator()) HBelowOrEqual(op1, op2); in TestComparison()
678 comparison = new (GetAllocator()) HAbove(op1, op2); in TestComparison()
682 comparison = new (GetAllocator()) HAboveOrEqual(op1, op2); in TestComparison()