reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 2037   if (ShiftAmt->uge(TypeBits))
 2103         APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt->getZExtValue()));
 2103         APInt::getLowBitsSet(TypeBits, TypeBits - ShiftAmt->getZExtValue()));
 2115         APInt::getOneBitSet(TypeBits, TypeBits - ShiftAmt->getZExtValue() - 1));
 2115         APInt::getOneBitSet(TypeBits, TypeBits - ShiftAmt->getZExtValue() - 1));
 2148   unsigned Amt = ShiftAmt->getLimitedValue(TypeBits - 1);
 2150       DL.isLegalInteger(TypeBits - Amt)) {
 2151     Type *TruncTy = IntegerType::get(Cmp.getContext(), TypeBits - Amt);
 2155         ConstantInt::get(TruncTy, C.ashr(*ShiftAmt).trunc(TypeBits - Amt));