Lines Matching refs:ICmpInst
184 ISD::CondCode llvm::getICmpCondCode(ICmpInst::Predicate Pred) { in getICmpCondCode()
186 case ICmpInst::ICMP_EQ: return ISD::SETEQ; in getICmpCondCode()
187 case ICmpInst::ICMP_NE: return ISD::SETNE; in getICmpCondCode()
188 case ICmpInst::ICMP_SLE: return ISD::SETLE; in getICmpCondCode()
189 case ICmpInst::ICMP_ULE: return ISD::SETULE; in getICmpCondCode()
190 case ICmpInst::ICMP_SGE: return ISD::SETGE; in getICmpCondCode()
191 case ICmpInst::ICMP_UGE: return ISD::SETUGE; in getICmpCondCode()
192 case ICmpInst::ICMP_SLT: return ISD::SETLT; in getICmpCondCode()
193 case ICmpInst::ICMP_ULT: return ISD::SETULT; in getICmpCondCode()
194 case ICmpInst::ICMP_SGT: return ISD::SETGT; in getICmpCondCode()
195 case ICmpInst::ICMP_UGT: return ISD::SETUGT; in getICmpCondCode()