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
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);
125 /// Return the lower value for this range.
126 const APInt &getLower() const { return Lower; }
132 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
157 if (Upper == Lower + 1)
158 return &Lower;
165 if (Lower == Upper + 1)
196 return Lower == CR.Lower && Upper == CR.Upper;