Searched defs:min_c (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dbounds_check_elimination.cc1171 int32_t min_c, int32_t max_c) {
1174 // Construct deoptimization on single or double bounds on range [base-min_c,base+max_c],
1181 DCHECK_GE(min_c, 0);
1184 HAdd(Primitive::kPrimInt, base, GetGraph()->GetIntConstant(min_c));
1211 int32_t min_c = base == nullptr ? 0 : value.GetConstant(); local
1241 min_c = std::min(min_c, other_c);
1255 if (min_c <= other_c && other_c <= max_c) {
1260 // where the distance min_c:max_c range gets close to the maximum possible array length,
1264 uint32_t distance = static_cast<uint32_t>(max_c) - static_cast<uint32_t>(min_c);
1168 AddCompareWithDeoptimization(HBasicBlock* block, HInstruction* array_length, HInstruction* base, int32_t min_c, int32_t max_c) argument
[all...]

Completed in 87 milliseconds