[PATCH] D133017: [LV] Use SCEV to check if the trip count <= VF * UF.
Ayal Zaks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 2 07:52:52 PDT 2022
Ayal added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp:469
+ if (ExitCount->isZero() ||
+ !SE.isKnownPredicate(CmpInst::ICMP_ULE, ExitCount, C))
return;
----------------
Could this be simplified using SE.getSmallConstantMaxTripCount(L)? Or a caching thereof.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133017/new/
https://reviews.llvm.org/D133017
More information about the llvm-commits
mailing list