Lines Matching refs:ICmpInst

887         case ICmpInst::ICMP_EQ:  Out << "EQ"; break;  in printConstant()
888 case ICmpInst::ICMP_NE: Out << "NE"; break; in printConstant()
889 case ICmpInst::ICMP_SLT: Out << "SLT"; break; in printConstant()
890 case ICmpInst::ICMP_ULT: Out << "ULT"; break; in printConstant()
891 case ICmpInst::ICMP_SGT: Out << "SGT"; break; in printConstant()
892 case ICmpInst::ICMP_UGT: Out << "UGT"; break; in printConstant()
893 case ICmpInst::ICMP_SLE: Out << "SLE"; break; in printConstant()
894 case ICmpInst::ICMP_ULE: Out << "ULE"; break; in printConstant()
895 case ICmpInst::ICMP_SGE: Out << "SGE"; break; in printConstant()
896 case ICmpInst::ICMP_UGE: Out << "UGE"; break; in printConstant()
1290 switch (cast<ICmpInst>(I)->getPredicate()) { in printInstruction()
1291 case ICmpInst::ICMP_EQ: Out << "ICmpInst::ICMP_EQ"; break; in printInstruction()
1292 case ICmpInst::ICMP_NE: Out << "ICmpInst::ICMP_NE"; break; in printInstruction()
1293 case ICmpInst::ICMP_ULE: Out << "ICmpInst::ICMP_ULE"; break; in printInstruction()
1294 case ICmpInst::ICMP_SLE: Out << "ICmpInst::ICMP_SLE"; break; in printInstruction()
1295 case ICmpInst::ICMP_UGE: Out << "ICmpInst::ICMP_UGE"; break; in printInstruction()
1296 case ICmpInst::ICMP_SGE: Out << "ICmpInst::ICMP_SGE"; break; in printInstruction()
1297 case ICmpInst::ICMP_ULT: Out << "ICmpInst::ICMP_ULT"; break; in printInstruction()
1298 case ICmpInst::ICMP_SLT: Out << "ICmpInst::ICMP_SLT"; break; in printInstruction()
1299 case ICmpInst::ICMP_UGT: Out << "ICmpInst::ICMP_UGT"; break; in printInstruction()
1300 case ICmpInst::ICMP_SGT: Out << "ICmpInst::ICMP_SGT"; break; in printInstruction()