[llvm] [ValueTracking] ComputeNumSignBitsImpl - add basic handling of BITCAST nodes (PR #127218)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 23 23:51:50 PST 2025


================
@@ -3922,6 +3922,35 @@ static unsigned ComputeNumSignBitsImpl(const Value *V,
   if (auto *U = dyn_cast<Operator>(V)) {
     switch (Operator::getOpcode(V)) {
     default: break;
+    case Instruction::BitCast: {
+      Value *Src = U->getOperand(0);
+      Type *SrcTy = Src->getType();
+      Type *SrcScalarTy = SrcTy->getScalarType();
+
+      if (!SrcScalarTy->isIntegerTy() && !SrcScalarTy->isFloatingPointTy())
----------------
dtcxzyw wrote:

`ComputeNumSignBits` doesn't work for floating point types.


https://github.com/llvm/llvm-project/pull/127218


More information about the llvm-commits mailing list