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

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 4444     bool AndEqZero = IsAnd && CC1 == ISD::SETEQ && IsZero;
 4446     bool AndGtNeg1 = IsAnd && CC1 == ISD::SETGT && IsNeg1;
 4448     bool OrNeZero = !IsAnd && CC1 == ISD::SETNE && IsZero;
 4450     bool OrLtZero = !IsAnd && CC1 == ISD::SETLT && IsZero;
 4463     bool AndEqNeg1 = IsAnd && CC1 == ISD::SETEQ && IsNeg1;
 4465     bool AndLtZero = IsAnd && CC1 == ISD::SETLT && IsZero;
 4467     bool OrNeNeg1 = !IsAnd && CC1 == ISD::SETNE && IsNeg1;
 4469     bool OrGtNeg1 = !IsAnd && CC1 == ISD::SETGT && IsNeg1;
 4484   if (IsAnd && LL == RL && CC0 == CC1 && OpVT.getScalarSizeInBits() > 1 &&
 4501     if ((IsAnd && CC1 == ISD::SETEQ) || (!IsAnd && CC1 == ISD::SETNE)) {
 4501     if ((IsAnd && CC1 == ISD::SETEQ) || (!IsAnd && CC1 == ISD::SETNE)) {
 4511     if ((IsAnd && CC1 == ISD::SETNE) || (!IsAnd && CC1 == ISD::SETEQ)) {
 4511     if ((IsAnd && CC1 == ISD::SETNE) || (!IsAnd && CC1 == ISD::SETEQ)) {
 4546     ISD::CondCode NewCC = IsAnd ? ISD::getSetCCAndOperation(CC0, CC1, IsInteger)