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

References

lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
  799   if (match(CondV, m_ICmp(P, m_Value(C), m_Zero())) ||
  800       match(CondV, m_ICmp(P, m_Zero(), m_Value(C)))) {
  801     if (P != CmpInst::ICMP_EQ && P != CmpInst::ICMP_NE)
  801     if (P != CmpInst::ICMP_EQ && P != CmpInst::ICMP_NE)
  805     TrueIfZero = (P == CmpInst::ICMP_EQ);
  806   } else if (match(CondV, m_ICmp(P, m_Value(C), m_One())) ||
  807              match(CondV, m_ICmp(P, m_One(), m_Value(C)))) {
  808     if (P != CmpInst::ICMP_EQ && P != CmpInst::ICMP_NE)
  808     if (P != CmpInst::ICMP_EQ && P != CmpInst::ICMP_NE)
  812     TrueIfZero = (P == CmpInst::ICMP_NE);