reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 1187     Shift = AP1.countLeadingOnes() - AP2.countLeadingOnes();
 1189     Shift = AP1.countLeadingZeros() - AP2.countLeadingZeros();
 1191   if (Shift > 0) {
 1192     if (IsAShr && AP1 == AP2.ashr(Shift)) {
 1196         return getICmp(I.ICMP_UGE, A, ConstantInt::get(A->getType(), Shift));
 1197       return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));
 1198     } else if (AP1 == AP2.lshr(Shift)) {
 1199       return getICmp(I.ICMP_EQ, A, ConstantInt::get(A->getType(), Shift));