Searched refs:v_max (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dinduction_var_range.cc242 Value v_max = GetVal(info, nullptr, in_body, /* is_min */ false); local
245 if (IsConstantValue(v_min) && IsConstantValue(v_max) && v_min.b_constant <= v_max.b_constant) {
246 if ((request == kExact && v_min.b_constant == v_max.b_constant) || request == kAtMost) {
247 *value = v_max.b_constant;
254 } while (RefineOuter(&v_min, &v_max));
507 Value v_max,
510 return is_min == (c.b_constant >= 0) ? MulValue(v_min, c) : MulValue(v_max, c);
514 Value v_max,
517 return is_min == (c.b_constant >= 0) ? DivValue(v_min, c) : DivValue(v_max,
506 MulRangeAndConstant(Value v_min, Value v_max, Value c, bool is_min) const argument
513 DivRangeAndConstant(Value v_min, Value v_max, Value c, bool is_min) const argument
[all...]

Completed in 23 milliseconds