Lines Matching refs:info1
781 InductionVarRange::Value InductionVarRange::GetMul(HInductionVarAnalysis::InductionInfo* info1, in GetMul() argument
788 if (IsConstant(info1, kExact, &value)) { in GetMul()
791 return MulRangeAndConstant(value, info1, trip, in_body, is_min); in GetMul()
794 Value v1_min = GetVal(info1, trip, in_body, /* is_min= */ true); in GetMul()
795 Value v1_max = GetVal(info1, trip, in_body, /* is_min= */ false); in GetMul()
817 InductionVarRange::Value InductionVarRange::GetDiv(HInductionVarAnalysis::InductionInfo* info1, in GetDiv() argument
825 return DivRangeAndConstant(value, info1, trip, in_body, is_min); in GetDiv()
828 Value v1_min = GetVal(info1, trip, in_body, /* is_min= */ true); in GetDiv()
829 Value v1_max = GetVal(info1, trip, in_body, /* is_min= */ false); in GetDiv()
852 HInductionVarAnalysis::InductionInfo* info1, in GetRem() argument
857 if (IsConstant(info1, kExact, &v1) && IsConstant(info2, kExact, &v2) && v2 != 0) { in GetRem()
867 HInductionVarAnalysis::InductionInfo* info1, in GetXor() argument
872 if (IsConstant(info1, kExact, &v1) && IsConstant(info2, kExact, &v2)) { in GetXor()