[llvm] [AArch64] Add flag to control unrolling for small multi-exit loops (PR #131998)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 06:19:13 PDT 2025
================
@@ -4237,6 +4242,81 @@ getFalkorUnrollingPreferences(Loop *L, ScalarEvolution &SE,
}
}
+static bool shouldUnrollLoopWithInstruction(Instruction &I,
+ AArch64TTIImpl &TTI) {
+ // Don't unroll vectorised loop.
+ if (I.getType()->isVectorTy())
+ return false;
+
+ if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
----------------
david-arm wrote:
Hmm, it's a good suggestion but I checked and it seems `CallBrInst` also derives from `CallBase`. I'm not sure if I should implicitly add support for that by permitting all instances of `CallBase`. If you don't mind I'll leave this as it is for now?
https://github.com/llvm/llvm-project/pull/131998
More information about the llvm-commits
mailing list