Home | History | Annotate | Download | only in optimizing

Lines Matching refs:right

166   // right inputs perform the same operation.
174 HInstruction* right = mul->GetRight();
175 if ((right->IsAdd() || right->IsSub()) &&
176 TrySimpleMultiplyAccumulatePatterns(mul, right->AsBinaryOperation(), left)) {
180 TrySimpleMultiplyAccumulatePatterns(mul, left->AsBinaryOperation(), right)) {
190 HInstruction* right = op->GetRight();
194 if (left->IsNot() ^ right->IsNot()) {
195 HInstruction* hnot = (left->IsNot() ? left : right);
196 HInstruction* hother = (left->IsNot() ? right : left);