Home
last modified time | relevance | path

Searched refs:countMinLeadingOnes (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h240 unsigned countMinLeadingOnes() const { return One.countl_one(); } in countMinLeadingOnes() function
248 return countMinLeadingOnes(); in countMinSignBits()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp689 std::max(LHS.countMinLeadingOnes(), RHS.countMinLeadingOnes()); in computeForSatAddSub()
692 std::max(LHS.countMinLeadingZeros(), RHS.countMinLeadingOnes()); in computeForSatAddSub()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp1068 if (Known.countMinLeadingOnes() < 32) in rewriteIntrinsicWithAddressSpace()
H A DSIISelLowering.cpp13988 bool S0IsSigned = Known0.countMinLeadingOnes() > 0; in checkDot4MulSignedness()
13991 bool S1IsSigned = Known1.countMinLeadingOnes() > 0; in checkDot4MulSignedness()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp3829 unsigned LeadingKnownOnes = Known.countMinLeadingOnes(); in visitSwitchInst()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1454 Known.One.setHighBits(Known2.countMinLeadingOnes()); in computeKnownBitsFromOperator()