Lines Matching defs:Predicate
327 ARMLegalizerInfo::getFCmpLibcalls(CmpInst::Predicate Predicate,
329 assert(CmpInst::isFPPredicate(Predicate) && "Unsupported FCmp predicate");
331 return FCmp32Libcalls[Predicate];
333 return FCmp64Libcalls[Predicate];
380 auto Predicate =
381 static_cast<CmpInst::Predicate>(MI.getOperand(1).getPredicate());
382 auto Libcalls = getFCmpLibcalls(Predicate, OpSize);
385 assert((Predicate == CmpInst::FCMP_TRUE ||
386 Predicate == CmpInst::FCMP_FALSE) &&
387 "Predicate needs libcalls, but none specified");
389 Predicate == CmpInst::FCMP_TRUE ? 1 : 0);
418 CmpInst::Predicate ResultPred = Libcall.Predicate;