Home | History | Annotate | Download | only in IR

Lines Matching defs:Upper

11 // for an integral value.  This keeps track of a lower and upper bound for the
13 // keeps track of a [lower, upper) bound, which specifies an interval just like
48 APInt Lower, Upper;
58 /// Lower==Upper and Lower != Min or Max value for its type. It will also
60 ConstantRange(APInt Lower, APInt Upper);
128 /// Return the upper value for this range.
129 const APInt &getUpper() const { return Upper; }
157 if (Upper == Lower + 1)
165 if (Lower == Upper + 1)
166 return &Upper;
196 return Lower == CR.Lower && Upper == CR.Upper;