Lines Matching refs:cond

629                                               IfCondition cond,  in HandleIfBetweenTwoMonotonicValueRanges()  argument
649 if (cond == kCondLT) { in HandleIfBetweenTwoMonotonicValueRanges()
653 } else if (cond == kCondLE) { in HandleIfBetweenTwoMonotonicValueRanges()
655 } else if (cond == kCondGT) { in HandleIfBetweenTwoMonotonicValueRanges()
657 } else if (cond == kCondGE) { in HandleIfBetweenTwoMonotonicValueRanges()
692 void HandleIf(HIf* instruction, HInstruction* left, HInstruction* right, IfCondition cond) { in HandleIf() argument
730 HandleIfBetweenTwoMonotonicValueRanges(instruction, left, right, cond, in HandleIf()
745 if (cond == kCondLT || cond == kCondLE) { in HandleIf()
747 int32_t compensation = (cond == kCondLT) ? -1 : 0; // upper bound is inclusive in HandleIf()
759 int32_t compensation = (cond == kCondLE) ? 1 : 0; // lower bound is inclusive in HandleIf()
768 } else if (cond == kCondGT || cond == kCondGE) { in HandleIf()
771 int32_t compensation = (cond == kCondGT) ? 1 : 0; // lower bound is inclusive in HandleIf()
782 int32_t compensation = (cond == kCondGE) ? -1 : 0; // upper bound is inclusive in HandleIf()
791 } else if (cond == kCondNE || cond == kCondEQ) { in HandleIf()
800 left, block, cond == kCondEQ ? true_successor : false_successor, new_range); in HandleIf()
809 left, block, cond == kCondEQ ? false_successor : true_successor, new_range); in HandleIf()
818 left, block, cond == kCondEQ ? true_successor : false_successor, new_range); in HandleIf()
999 HCondition* cond = instruction->InputAt(0)->AsCondition(); in VisitIf() local
1000 HandleIf(instruction, cond->GetLeft(), cond->GetRight(), cond->GetCondition()); in VisitIf()
1738 HInstruction* cond = in CanHandleNullCheck() local
1740 InsertDeoptInLoop(loop, block, cond, /* is_null_check= */ true); in CanHandleNullCheck()