Home
last modified time | relevance | path

Searched refs:ComputeMaxSignificantBits (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombiner.h495 unsigned ComputeMaxSignificantBits(const Value *Op, unsigned Depth = 0,
497 return llvm::ComputeMaxSignificantBits(Op, DL, Depth, &AC, CxtI, &DT);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp98 (IsFreeTruncation(RHS) && ComputeMaxSignificantBits(RHS, *DL) <= 8)) in matchVPDPBUSDPattern()
H A DX86ISelLowering.cpp4516 if (DAG.ComputeMaxSignificantBits(LHS) <= EltSizeInBits && in getPack()
4517 DAG.ComputeMaxSignificantBits(RHS) <= EltSizeInBits) in getPack()
22554 if (DAG.ComputeMaxSignificantBits(Op0.getOperand(0)) <= 16) in EmitCmp()
22557 if (DAG.ComputeMaxSignificantBits(Op1.getOperand(0)) <= 16) in EmitCmp()
43182 (IsFreeTruncation(Op1) && DAG.ComputeMaxSignificantBits(Op1) <= 8)) in detectExtMul()
46644 if (DAG.ComputeMaxSignificantBits(N1) > 16 || in combineMulToPMADDWD()
46645 DAG.ComputeMaxSignificantBits(N0) > 16) in combineMulToPMADDWD()
51197 return DAG.ComputeMaxSignificantBits(V) <= 16; in combinePMULH()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h189 unsigned ComputeMaxSignificantBits(const Value *Op, const DataLayout &DL,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h2069 unsigned ComputeMaxSignificantBits(SDValue Op, unsigned Depth = 0) const;
2075 unsigned ComputeMaxSignificantBits(SDValue Op, const APInt &DemandedElts,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1180 if (ComputeMaxSignificantBits(AddSub->getOperand(0), 0, AddSub) > in matchSAddSubSat()
1182 ComputeMaxSignificantBits(AddSub->getOperand(1), 0, AddSub) > NewBitWidth) in matchSAddSubSat()
H A DInstCombineCompares.cpp1096 if (IC.ComputeMaxSignificantBits(A, 0, &I) > NewWidth || in processUGT_ADDCST_ADD()
1097 IC.ComputeMaxSignificantBits(B, 0, &I) > NewWidth) in processUGT_ADDCST_ADD()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp597 return ComputeMaxSignificantBits(Op, *DL, 0, AC); in numBitsSigned()
H A DAMDGPUISelLowering.cpp56 return DAG.ComputeMaxSignificantBits(Op); in numBitsSigned()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp2831 return ComputeMaxSignificantBits(V, DL, /*Depth=*/0, &AC, CtxI, &DT); in getNumSignificantBits()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1962 unsigned OpLEffectiveBits = DAG.ComputeMaxSignificantBits(OpL); in PromoteSetCCOperands()
1963 unsigned OpREffectiveBits = DAG.ComputeMaxSignificantBits(OpR); in PromoteSetCCOperands()
H A DTargetLowering.cpp2326 TLO.DAG.ComputeMaxSignificantBits(Op0, DemandedElts, Depth + 1); in SimplifyDemandedBits()
7471 DAG.ComputeMaxSignificantBits(LHS) <= InnerBitSize && in expandMUL_LOHI()
7472 DAG.ComputeMaxSignificantBits(RHS) <= InnerBitSize) { in expandMUL_LOHI()
H A DSelectionDAG.cpp4899 unsigned SelectionDAG::ComputeMaxSignificantBits(SDValue Op, in ComputeMaxSignificantBits() function in SelectionDAG
4905 unsigned SelectionDAG::ComputeMaxSignificantBits(SDValue Op, in ComputeMaxSignificantBits() function in SelectionDAG
H A DDAGCombiner.cpp14428 if (ExtVTBits >= DAG.ComputeMaxSignificantBits(N0)) in visitSIGN_EXTEND_INREG()
14445 DAG.ComputeMaxSignificantBits(N00) <= ExtVTBits) && in visitSIGN_EXTEND_INREG()
14462 DAG.ComputeMaxSignificantBits(N00) <= ExtVTBits))) && in visitSIGN_EXTEND_INREG()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5587 ComputeMaxSignificantBits(Cond, DL, 0, AC, SI); in eliminateDeadSwitchCases()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp344 unsigned llvm::ComputeMaxSignificantBits(const Value *V, const DataLayout &DL, in ComputeMaxSignificantBits() function in llvm
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp13260 if (DAG.ComputeMaxSignificantBits(Op) <= NarrowSize) in fillUpExtensionSupport()