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

References

lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
 3652   if (CCCode == ISD::SETEQ || CCCode == ISD::SETNE) {
 3652   if (CCCode == ISD::SETEQ || CCCode == ISD::SETNE) {
 3675     if ((CCCode == ISD::SETLT && CST->isNullValue()) ||     // X < 0
 3676         (CCCode == ISD::SETGT && CST->isAllOnesValue())) {  // X > -1
 3684   switch (CCCode) {
 3715                               RHSHi, CCCode, false, DagCombineInfo, dl);
 3719                     LHSHi, RHSHi, DAG.getCondCode(CCCode));
 3724   bool EqAllowed = (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
 3724   bool EqAllowed = (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
 3725                     CCCode == ISD::SETUGE || CCCode == ISD::SETULE);
 3725                     CCCode == ISD::SETUGE || CCCode == ISD::SETULE);
 3755     switch (CCCode) {
 3756     case ISD::SETGT:  CCCode = ISD::SETLT;  FlipOperands = true; break;
 3757     case ISD::SETUGT: CCCode = ISD::SETULT; FlipOperands = true; break;
 3758     case ISD::SETLE:  CCCode = ISD::SETGE;  FlipOperands = true; break;
 3759     case ISD::SETULE: CCCode = ISD::SETUGE; FlipOperands = true; break;
 3775                               DAG.getCondCode(CCCode));