Home | History | Annotate | Download | only in src

Lines Matching refs:binary_operation

40   HBinaryOperation* binary_operation = HBinaryOperation::cast(index);
41 if (binary_operation->left()->IsConstant() && index->IsAdd()) {
42 subexpression = binary_operation->right();
43 constant = HConstant::cast(binary_operation->left());
44 } else if (binary_operation->right()->IsConstant()) {
45 subexpression = binary_operation->left();
46 constant = HConstant::cast(binary_operation->right());
52 int32_t sign = binary_operation->IsSub() ? -1 : 1;
58 if (binary_operation->HasNoUses()) {
59 binary_operation->DeleteAndReplaceWith(NULL);