Home | History | Annotate | Download | only in CodeGen

Lines Matching full:bitwidth

55     static EVT getFloatingPointVT(unsigned BitWidth) {
56 return MVT::getFloatingPointVT(BitWidth);
61 static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth) {
62 MVT M = MVT::getIntegerVT(BitWidth);
65 return getExtendedIntegerVT(Context, BitWidth);
79 /// integer type with the same bitwidth.
84 unsigned BitWidth = EltTy.getSizeInBits();
85 MVT IntTy = MVT::getIntegerVT(BitWidth);
278 unsigned BitWidth = getSizeInBits();
279 if (BitWidth <= 8)
281 return getIntegerVT(Context, 1 << Log2_32_Ceil(BitWidth));
365 static EVT getExtendedIntegerVT(LLVMContext &C, unsigned BitWidth);