Home
last modified time | relevance | path

Searched refs:countMaxActiveBits (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DKnownBits.h305 unsigned countMaxActiveBits() const { in countMaxActiveBits() function
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp97 computeKnownBits(LHS, *DL).countMaxActiveBits() <= 8) && in matchVPDPBUSDPattern()
H A DX86ISelLowering.cpp7198 DAG.computeKnownBits(LHS).countMaxActiveBits() <= EltSizeInBits && in getPack()
7199 DAG.computeKnownBits(RHS).countMaxActiveBits() <= EltSizeInBits) in getPack()
44115 DAG.computeKnownBits(Op0).countMaxActiveBits() <= 8) && in detectExtMul()
50178 unsigned MaxActiveBits = DAG->computeKnownBits(V).countMaxActiveBits(); in detectAVGPattern()
51681 return DAG.computeKnownBits(V).countMaxActiveBits() <= 16; in combinePMULH()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp449 return computeKnownBits(Op, *DL, 0, AC).countMaxActiveBits(); in numBitsUnsigned()
H A DAMDGPUISelLowering.cpp49 return DAG.computeKnownBits(Op).countMaxActiveBits(); in numBitsUnsigned()
4675 unsigned LHSValBits = LHSKnown.countMaxActiveBits(); in computeKnownBitsForTargetNode()
4676 unsigned RHSValBits = RHSKnown.countMaxActiveBits(); in computeKnownBitsForTargetNode()
4738 unsigned Src1ValBits = Src1Known.countMaxActiveBits(); in computeKnownBitsForTargetNode()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1497 const unsigned EffWidthY = YKnown.countMaxActiveBits(); in simplifyLShrInst()
2217 const unsigned EffWidthY = YKnown.countMaxActiveBits(); in simplifyAndInst()
2220 const unsigned EffWidthX = XKnown.countMaxActiveBits(); in simplifyAndInst()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1796 DAG.computeKnownBits(OpL).countMaxActiveBits(); in PromoteSetCCOperands()
1798 DAG.computeKnownBits(OpR).countMaxActiveBits(); in PromoteSetCCOperands()
H A DDAGCombiner.cpp13849 if (Known.countMaxActiveBits() <= Log2_32(Size)) { in visitTRUNCATE()