Home | History | Annotate | Download | only in optimizing

Lines Matching defs:c1

1020             int32_t c1 = lower.GetConstant();
1022 // (array.length + c0 - v) where v is in [c1, array.length + c2]
1023 // gets [c0 - c2, array.length + c0 - c1] as its value range.
1025 !ValueBound::WouldAddOverflowOrUnderflow(c0, -c1)) {
1026 if ((c0 - c1) <= 0) {
1027 // array.length + (c0 - c1) won't overflow/underflow.