Home | History | Annotate | Download | only in optimizing

Lines Matching refs:left

165   // We prefer not applying the following transformations if the left and
173 HInstruction* left = mul->GetLeft();
176 TrySimpleMultiplyAccumulatePatterns(mul, right->AsBinaryOperation(), left)) {
179 if ((left->IsAdd() || left->IsSub()) &&
180 TrySimpleMultiplyAccumulatePatterns(mul, left->AsBinaryOperation(), right)) {
189 HInstruction* left = op->GetLeft();
194 if (left->IsNot() ^ right->IsNot()) {
195 HInstruction* hnot = (left->IsNot() ? left : right);
196 HInstruction* hother = (left->IsNot() ? right : left);