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

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 1978       if (Pred == ICmpInst::ICMP_ULT)
 1979         Pred = ICmpInst::ICMP_ULE;
 1980       else if (Pred == ICmpInst::ICMP_UGE)
 1981         Pred = ICmpInst::ICMP_UGT;
 1988       if (Pred == ICmpInst::ICMP_UGE)
 1989         Pred = ICmpInst::ICMP_EQ;
 1990       else if (Pred == ICmpInst::ICMP_ULT)
 1991         Pred = ICmpInst::ICMP_NE;
 1993     return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, CLog2));
 1998       if (Pred == ICmpInst::ICMP_SLE)
 2002       if (Pred == ICmpInst::ICMP_SGT)
 2007       if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
 2007       if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SLE)
 2012       if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE)
 2012       if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE)
 2016     return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, C.logBase2()));