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
45 APInt Lower, Upper;
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(APInt Lower, APInt Upper);
121 /// Return the upper value for this range.
122 const APInt &getUpper() const { return Upper; }
150 if (Upper == Lower + 1)
158 if (Lower == Upper + 1)
159 return &Upper;
189 return Lower == CR.Lower && Upper == CR.Upper;