Home | History | Annotate | Download | only in IR

Lines Matching refs:BitWidth

34 ConstantRange::ConstantRange(uint32_t BitWidth, bool Full) {
36 Lower = Upper = APInt::getMaxValue(BitWidth);
38 Lower = Upper = APInt::getMinValue(BitWidth);
152 unsigned BitWidth = C.getBitWidth();
155 return ConstantRange(BitWidth, false);
159 return ConstantRange(BitWidth);
161 ConstantRange Result(BitWidth);
165 ConstantRange(APInt::getNullValue(BitWidth), -C));
170 Result, ConstantRange(APInt::getSignedMinValue(BitWidth),
171 APInt::getSignedMinValue(BitWidth) - C));
174 Result, ConstantRange(APInt::getSignedMinValue(BitWidth) - C,
175 APInt::getSignedMinValue(BitWidth)));
201 /// its bitwidth, for example: i8 [120, 140).
560 // Chop off the most significant bits that are past the destination bitwidth.