[llvm] [AArch64] Add flag to control unrolling for small multi-exit loops (PR #131998)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 15:12:34 PDT 2025
================
@@ -68,6 +68,11 @@ static cl::opt<bool> EnableOrLikeSelectOpt("enable-aarch64-or-like-select",
static cl::opt<bool> EnableLSRCostOpt("enable-aarch64-lsr-cost-opt",
cl::init(true), cl::Hidden);
+static cl::opt<unsigned> SmallMultiExitLoopUF(
+ "small-multi-exit-loop-unroll-factor", cl::init(0), cl::Hidden,
----------------
fhahn wrote:
The name makes it sounds like a generally applicable flag, but it is something specific for the AArch64 cost model. I think ideally we would set things correctly per sub-target directly, which sounds like you are planning anyways, instead of adding this option first..
https://github.com/llvm/llvm-project/pull/131998
More information about the llvm-commits
mailing list