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

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 5678     Pred = ICmpInst::ICMP_EQ;
 5682     Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT;
 5686     Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE;
 5690     Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT;
 5694     Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE;
 5698     Pred = ICmpInst::ICMP_NE;
 5719       if (Pred == ICmpInst::ICMP_NE  || Pred == ICmpInst::ICMP_SLT ||
 5719       if (Pred == ICmpInst::ICMP_NE  || Pred == ICmpInst::ICMP_SLT ||
 5720           Pred == ICmpInst::ICMP_SLE)
 5731       if (Pred == ICmpInst::ICMP_NE  || Pred == ICmpInst::ICMP_ULT ||
 5731       if (Pred == ICmpInst::ICMP_NE  || Pred == ICmpInst::ICMP_ULT ||
 5732           Pred == ICmpInst::ICMP_ULE)
 5744       if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT ||
 5744       if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_SGT ||
 5745           Pred == ICmpInst::ICMP_SGE)
 5755       if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_UGT ||
 5755       if (Pred == ICmpInst::ICMP_NE || Pred == ICmpInst::ICMP_UGT ||
 5756           Pred == ICmpInst::ICMP_UGE)
 5777       switch (Pred) {
 5793           Pred = ICmpInst::ICMP_SLT;
 5800         Pred = ICmpInst::ICMP_ULE;
 5806           Pred = ICmpInst::ICMP_SLE;
 5818           Pred = ICmpInst::ICMP_SGE;
 5825         Pred = ICmpInst::ICMP_UGT;
 5831           Pred = ICmpInst::ICMP_SGT;
 5839   return new ICmpInst(Pred, LHSI->getOperand(0), RHSInt);