Lines Matching defs:Predicate
330 ARMLegalizerInfo::getFCmpLibcalls(CmpInst::Predicate Predicate,
332 assert(CmpInst::isFPPredicate(Predicate) && "Unsupported FCmp predicate");
334 return FCmp32Libcalls[Predicate];
336 return FCmp64Libcalls[Predicate];
383 auto Predicate =
384 static_cast<CmpInst::Predicate>(MI.getOperand(1).getPredicate());
385 auto Libcalls = getFCmpLibcalls(Predicate, OpSize);
388 assert((Predicate == CmpInst::FCMP_TRUE ||
389 Predicate == CmpInst::FCMP_FALSE) &&
390 "Predicate needs libcalls, but none specified");
392 Predicate == CmpInst::FCMP_TRUE ? 1 : 0);
421 CmpInst::Predicate ResultPred = Libcall.Predicate;