Searched refs:DestBitSize (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp121 const uint32_t DestBitSize = DstTy->getScalarSizeInBits(); local
122 if (Demanded.countLeadingZeros() >= (DestBitSize - SrcBitSize)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1173 uint32_t DestBitSize = DestTy->getScalarSizeInBits(); local
1178 APInt::getHighBitsSet(DestBitSize,
1179 DestBitSize-SrcBitsKept),
1185 APInt::getLowBitsSet(DestBitSize, SrcBitsKept));
1442 uint32_t DestBitSize = DestTy->getScalarSizeInBits(); local
1446 if (ComputeNumSignBits(Res, 0, &CI) > DestBitSize - SrcBitSize)
1450 Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize);
1461 unsigned DestBitSize = DestTy->getScalarSizeInBits(); local
1462 Constant *ShAmt = ConstantInt::get(DestTy, DestBitSize - SrcBitSize);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp2649 unsigned DestBitSize = DestTy->getScalarSizeInBits(); local
2655 Assert(SrcBitSize > DestBitSize, "DestTy too big for Trunc", &I);
2671 unsigned DestBitSize = DestTy->getScalarSizeInBits(); local
2673 Assert(SrcBitSize < DestBitSize, "Type too small for ZExt", &I);
2685 unsigned DestBitSize = DestTy->getScalarSizeInBits(); local
2691 Assert(SrcBitSize < DestBitSize, "Type too small for SExt", &I);
2702 unsigned DestBitSize = DestTy->getScalarSizeInBits(); local
2708 Assert(SrcBitSize > DestBitSize, "DestTy too big for FPTrunc", &I);
2720 unsigned DestBitSize = DestTy->getScalarSizeInBits(); local
2726 Assert(SrcBitSize < DestBitSize, "DestT
[all...]

Completed in 138 milliseconds