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
44 APInt Lower, Upper;
59 /// Lower==Upper and Lower != Min or Max value for its type. It will also
61 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
126 /// Return the upper value for this range.
128 const APInt &getUpper() const { return Upper; }
164 if (Upper == Lower + 1)
196 return Lower == CR.Lower && Upper == CR.Upper;