Home | History | Annotate | Download | only in CodeGen

Lines Matching full:bitwidth

1208     unsigned Bitwidth = LTy->getScalarSizeInBits();
1214 assert(NumBits <= Bitwidth);
1215 End = llvm::APInt(Bitwidth, 1) << (NumBits - 1);
1218 assert(NumPositiveBits <= Bitwidth);
1219 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
1220 Min = llvm::APInt(Bitwidth, 0);