Searched refs:LeadZ (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp277 unsigned LeadZ = local
284 Known.Zero.setHighBits(std::min(LeadZ, BitWidth));
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h525 unsigned LeadZ = countLeadingZerosSlowCase(); local
526 return (Ones + LeadZ + countTrailingZeros()) == BitWidth;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp451 unsigned LeadZ = std::max(Known.countMinLeadingZeros() + local
454 LeadZ = std::min(LeadZ, BitWidth);
518 Known.Zero.setHighBits(LeadZ);
1200 unsigned LeadZ = Known2.countMinLeadingZeros(); local
1206 LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
1208 Known.Zero.setHighBits(LeadZ);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2840 unsigned LeadZ = std::max(Known.countMinLeadingZeros() +
2846 Known.Zero.setHighBits(std::min(LeadZ, BitWidth));
2854 unsigned LeadZ = Known2.countMinLeadingZeros();
2859 LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
2861 Known.Zero.setHighBits(LeadZ);

Completed in 209 milliseconds