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

References

lib/Target/ARM/ARMISelLowering.cpp
 6216         Opc = ARMCC::NE; break;
 6221     case ISD::SETEQ:  Opc = ARMCC::EQ; break;
 6225     case ISD::SETGT:  Opc = ARMCC::GT; break;
 6229     case ISD::SETGE: Opc = ARMCC::GE; break;
 6231     case ISD::SETULE: Invert = true; Opc = ARMCC::GT; break;
 6233     case ISD::SETULT: Invert = true; Opc = ARMCC::GE; break;
 6265         Opc = ARMCC::NE; break;
 6269     case ISD::SETEQ:  Opc = ARMCC::EQ; break;
 6271     case ISD::SETGT:  Opc = ARMCC::GT; break;
 6273     case ISD::SETGE:  Opc = ARMCC::GE; break;
 6275     case ISD::SETUGT: Opc = ARMCC::HI; break;
 6277     case ISD::SETUGE: Opc = ARMCC::HS; break;
 6281     if (ST->hasNEON() && Opc == ARMCC::EQ) {
 6312     if (Opc == ARMCC::GE)
 6313       Opc = ARMCC::LE;
 6314     else if (Opc == ARMCC::GT)
 6315       Opc = ARMCC::LT;
 6322                          DAG.getConstant(Opc, dl, MVT::i32));
 6325                          DAG.getConstant(Opc, dl, MVT::i32));