Home | History | Annotate | Download | only in IR

Lines Matching defs:Lower

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);
118 /// Return the lower value for this range.
119 const APInt &getLower() const { return Lower; }
125 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
150 if (Upper == Lower + 1)
151 return &Lower;
158 if (Lower == Upper + 1)
189 return Lower == CR.Lower && Upper == CR.Upper;