Home | History | Annotate | Download | only in optimizing

Lines Matching defs:op2

845   HInstruction* op2;
848 op2 = graph->GetIntConstant(j);
852 op2 = graph->GetLongConstant(j);
861 comparison = new (&allocator) HEqual(op1, op2);
865 comparison = new (&allocator) HNotEqual(op1, op2);
869 comparison = new (&allocator) HLessThan(op1, op2);
873 comparison = new (&allocator) HLessThanOrEqual(op1, op2);
877 comparison = new (&allocator) HGreaterThan(op1, op2);
881 comparison = new (&allocator) HGreaterThanOrEqual(op1, op2);
885 comparison = new (&allocator) HBelow(op1, op2);
889 comparison = new (&allocator) HBelowOrEqual(op1, op2);
893 comparison = new (&allocator) HAbove(op1, op2);
897 comparison = new (&allocator) HAboveOrEqual(op1, op2);