Lines Matching refs:Pred
133 auto Pred = I.getPredicate(); in convertFCmp() local
152 if ((Pred & CmpInst::FCMP_OGE) != CmpInst::FCMP_OGE && in convertFCmp()
153 (Pred & CmpInst::FCMP_OGE) != 0) in convertFCmp()
158 if ((Pred & CmpInst::FCMP_OLE) != CmpInst::FCMP_OLE && in convertFCmp()
159 (Pred & CmpInst::FCMP_OLE) != 0) in convertFCmp()
213 if (Pred & CmpInst::FCMP_OEQ) in convertFCmp()
215 if (Pred & CmpInst::FCMP_OGT) in convertFCmp()
217 if (Pred & CmpInst::FCMP_OLT) in convertFCmp()
219 if (Pred & CmpInst::FCMP_UNO) in convertFCmp()
243 auto Pred = I.getPredicate(); in convertICmp() local
255 if (Pred == CmpInst::ICMP_SLT && Const->isZero()) { in convertICmp()
258 } else if (Pred == CmpInst::ICMP_SGT && Const->isMinusOne()) { in convertICmp()
281 if (Pred == CmpInst::ICMP_NE) { in convertICmp()
283 } else if (Pred == CmpInst::ICMP_EQ) { in convertICmp()