Home | History | Annotate | Download | only in src

Lines Matching refs:binary_operation

18   HBinaryOperation* binary_operation = HBinaryOperation::cast(index);
19 if (binary_operation->left()->IsConstant() && index->IsAdd()) {
20 subexpression = binary_operation->right();
21 constant = HConstant::cast(binary_operation->left());
22 } else if (binary_operation->right()->IsConstant()) {
23 subexpression = binary_operation->left();
24 constant = HConstant::cast(binary_operation->right());
30 int32_t sign = binary_operation->IsSub() ? -1 : 1;
47 if (binary_operation->HasNoUses()) {
48 binary_operation->DeleteAndReplaceWith(NULL);