Searched defs:max_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],
1179 HInstruction* upper = GetGraph()->GetIntConstant(max_c);
1212 int32_t max_c = value.GetConstant(); local
1242 max_c = std::max(max_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);
1268 AddCompareWithDeoptimization(block, array_length, base, min_c, max_c);
1168 AddCompareWithDeoptimization(HBasicBlock* block, HInstruction* array_length, HInstruction* base, int32_t min_c, int32_t max_c) argument
[all...]

Completed in 27 milliseconds