Home | History | Annotate | Download | only in crankshaft

Lines Matching defs:binary_operation

20   HBinaryOperation* binary_operation = HBinaryOperation::cast(index);
21 if (binary_operation->left()->IsConstant() && index->IsAdd()) {
22 subexpression = binary_operation->right();
23 constant = HConstant::cast(binary_operation->left());
24 } else if (binary_operation->right()->IsConstant()) {
25 subexpression = binary_operation->left();
26 constant = HConstant::cast(binary_operation->right());
34 int32_t sign = binary_operation->IsSub() ? -1 : 1;
50 if (binary_operation->HasNoUses()) {
51 binary_operation->DeleteAndReplaceWith(NULL);