Searched refs:IsTaken (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | induction_var_analysis.h | 217 bool IsTaken(InductionInfo* lower_expr, InductionInfo* upper_expr, IfCondition cmp);
|
D | induction_var_analysis.cc | 957 if (cmp == kCondNE && ((stride_value == +1 && IsTaken(lower_expr, upper_expr, kCondLE)) || in VisitCondition() 958 (stride_value == -1 && IsTaken(lower_expr, upper_expr, kCondGE)))) { in VisitCondition() 1011 const bool is_taken = IsTaken(lower_expr, upper_expr, cmp); in VisitTripCount() 1053 bool HInductionVarAnalysis::IsTaken(InductionInfo* lower_expr, in IsTaken() function in art::HInductionVarAnalysis 1162 if (!IsTaken(LookupInfo(loop, index)->op_b, LookupInfo(loop, upper), cmp) && in RewriteBreakLoop()
|