Home
last modified time | relevance | path

Searched refs:RHSMaxLeadingZeros (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/llvm/lib/Support/
DKnownBits.cpp379 unsigned RHSMaxLeadingZeros = RHS.countMaxLeadingZeros(); in udiv() local
381 if (RHSMaxLeadingZeros != BitWidth) in udiv()
382 LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1); in udiv()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueTracking.cpp1118 unsigned RHSMaxLeadingZeros = Known2.countMaxLeadingZeros(); in computeKnownBitsFromOperator() local
1119 if (RHSMaxLeadingZeros != BitWidth) in computeKnownBitsFromOperator()
1120 LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1); in computeKnownBitsFromOperator()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2815 unsigned RHSMaxLeadingZeros = Known2.countMaxLeadingZeros(); in computeKnownBits() local
2816 if (RHSMaxLeadingZeros != BitWidth) in computeKnownBits()
2817 LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1); in computeKnownBits()