Home | History | Annotate | Download | only in optimizing

Lines Matching refs:GetLeft

833   if (GetLeft()->IsIntConstant() && GetRight()->IsIntConstant()) {
834 int32_t value = Evaluate(GetLeft()->AsIntConstant()->GetValue(),
837 } else if (GetLeft()->IsLongConstant() && GetRight()->IsLongConstant()) {
838 int64_t value = Evaluate(GetLeft()->AsLongConstant()->GetValue(),
853 } else if (IsCommutative() && GetLeft()->IsConstant()) {
854 return GetLeft()->AsConstant();
866 } else if (most_constant_right == GetLeft()) {
869 return GetLeft();