Home | History | Annotate | Download | only in optimizing

Lines Matching defs:right

168   // right inputs perform the same operation.
176 HInstruction* right = mul->GetRight();
177 if ((right->IsAdd() || right->IsSub()) &&
178 TrySimpleMultiplyAccumulatePatterns(mul, right->AsBinaryOperation(), left)) {
182 TrySimpleMultiplyAccumulatePatterns(mul, left->AsBinaryOperation(), right)) {
192 HInstruction* right = op->GetRight();
196 if (left->IsNot() ^ right->IsNot()) {
197 HInstruction* hnot = (left->IsNot() ? left : right);
198 HInstruction* hother = (left->IsNot() ? right : left);