Home
last modified time | relevance | path

Searched refs:IsSignedPredicate (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopConstrainer.cpp248 bool IsSignedPredicate; in parseLoopStructure() local
309 IsSignedPredicate = ICmpInst::isSigned(Pred); in parseLoopStructure()
310 if (!IsSignedPredicate && !AllowUnsignedLatchCond) { in parseLoopStructure()
372 IsSignedPredicate = in parseLoopStructure()
375 if (!IsSignedPredicate && !AllowUnsignedLatchCond) { in parseLoopStructure()
424 Result.IsSignedPredicate = IsSignedPredicate; in parseLoopStructure()
603 bool IsSignedPredicate = LS.IsSignedPredicate; in changeIterationSpaceEnd() local
609 return IsSignedPredicate ? B.CreateSExt(V, RangeTy, "wide." + V->getName()) in changeIterationSpaceEnd()
617 ? (IsSignedPredicate ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT) in changeIterationSpaceEnd()
618 : (IsSignedPredicate ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT); in changeIterationSpaceEnd()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp594 bool IsSignedPredicate = MainLoopStructure.IsSignedPredicate; in calculateSubRanges() local
599 RTy, SE, IsSignedPredicate); in calculateSubRanges()
601 SE, IsSignedPredicate); in calculateSubRanges()
638 auto Clamp = [&SE, Smallest, Greatest, IsSignedPredicate](const SCEV *S) { in calculateSubRanges()
639 return IsSignedPredicate in calculateSubRanges()
646 IsSignedPredicate ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; in calculateSubRanges()
648 IsSignedPredicate ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; in calculateSubRanges()
1057 LS.IsSignedPredicate ? IntersectSignedRange : IntersectUnsignedRange; in run()
1061 LS.IsSignedPredicate); in run()
1065 assert(!MaybeSafeIterRange->isEmpty(SE, LS.IsSignedPredicate) && in run()