Lines Matching refs:Predicate
330 ARMLegalizerInfo::getFCmpLibcalls(CmpInst::Predicate Predicate, in getFCmpLibcalls() argument
332 assert(CmpInst::isFPPredicate(Predicate) && "Unsupported FCmp predicate"); in getFCmpLibcalls()
334 return FCmp32Libcalls[Predicate]; in getFCmpLibcalls()
336 return FCmp64Libcalls[Predicate]; in getFCmpLibcalls()
390 auto Predicate = in legalizeCustom() local
391 static_cast<CmpInst::Predicate>(MI.getOperand(1).getPredicate()); in legalizeCustom()
392 auto Libcalls = getFCmpLibcalls(Predicate, OpSize); in legalizeCustom()
395 assert((Predicate == CmpInst::FCMP_TRUE || in legalizeCustom()
396 Predicate == CmpInst::FCMP_FALSE) && in legalizeCustom()
399 Predicate == CmpInst::FCMP_TRUE ? 1 : 0); in legalizeCustom()
427 CmpInst::Predicate ResultPred = Libcall.Predicate; in legalizeCustom()