Home | History | Annotate | Download | only in optimizing

Lines Matching refs:HBinaryOperation

897 class HBinaryOperation : public HExpression<2> {
899 HBinaryOperation(Primitive::Type result_type,
913 DISALLOW_COPY_AND_ASSIGN(HBinaryOperation);
916 class HCondition : public HBinaryOperation {
919 : HBinaryOperation(Primitive::kPrimBoolean, first, second) {}
1026 class HCompare : public HBinaryOperation {
1029 : HBinaryOperation(Primitive::kPrimInt, first, second) {
1208 class HAdd : public HBinaryOperation {
1211 : HBinaryOperation(result_type, left, right) {}
1221 class HSub : public HBinaryOperation {
1224 : HBinaryOperation(result_type, left, right) {}